Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2017-12-13 23:52:06 +01:00
commit a36d18caa4
3 changed files with 13 additions and 8 deletions

View File

@ -49,11 +49,12 @@
(defcustom org-babel-stan-cmdstan-directory nil (defcustom org-babel-stan-cmdstan-directory nil
"CmdStan source directory. "CmdStan source directory.
'make' will be called from this directory to compile the Stan Call \"make\" from this directory to compile the Stan block.
block. When nil, executing Stan blocks dumps the content to a When nil, executing Stan blocks dumps the content to a file."
plain text file."
:group 'org-babel :group 'org-babel
:type 'string) :type '(choice
(directory :tag "Compilation directory")
(const :tag "Dump to a file" nil)))
(defvar org-babel-default-header-args:stan (defvar org-babel-default-header-args:stan
'((:results . "file"))) '((:results . "file")))

View File

@ -4115,7 +4115,10 @@ A string will be inserted as-is in the header of the document."
(list :tag "options/package pair" (list :tag "options/package pair"
(string :tag "options") (string :tag "options")
(string :tag "package") (string :tag "package")
(boolean :tag "Snippet")) (boolean :tag "Snippet")
(choice
(const :tag "For all compilers" nil)
(repeat :tag "Allowed compiler" string)))
(string :tag "A line of LaTeX")))) (string :tag "A line of LaTeX"))))
(defcustom org-latex-packages-alist nil (defcustom org-latex-packages-alist nil

View File

@ -721,16 +721,17 @@ nil Ignore math snippets.
imagemagick to convert pdf files to png files. imagemagick to convert pdf files to png files.
`mathjax' Do MathJax preprocessing and arrange for MathJax.js to `mathjax' Do MathJax preprocessing and arrange for MathJax.js to
be loaded. be loaded.
t Synonym for `mathjax'."
Any other symbol is a synonym for `mathjax'."
:group 'org-export-odt :group 'org-export-odt
:version "24.4" :version "24.4"
:package-version '(Org . "8.0") :package-version '(Org . "8.0")
:type '(choice :type '(choice
(const :tag "Do not process math in any way" nil) (const :tag "Do not process math in any way" nil)
(const :tag "Leave math verbatim" verbatim)
(const :tag "Use dvipng to make images" dvipng) (const :tag "Use dvipng to make images" dvipng)
(const :tag "Use imagemagick to make images" imagemagick) (const :tag "Use imagemagick to make images" imagemagick)
(const :tag "Use MathJax to display math" mathjax) (other :tag "Use MathJax to display math" mathjax)))
(const :tag "Leave math verbatim" verbatim)))
;;;; Links ;;;; Links