Change default value for scientific notation related variables
[org-mode/org-tableheadings.git] / lisp / ox-latex.el
blob2e89ec700e3400ab17f3ea8138706adfb8b43075
1 ;;; ox-latex.el --- LaTeX Back-End for Org Export Engine -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; See Org manual for details.
27 ;;; Code:
29 (require 'cl-lib)
30 (require 'ox)
31 (require 'ox-publish)
33 (defvar org-latex-default-packages-alist)
34 (defvar org-latex-packages-alist)
35 (defvar orgtbl-exp-regexp)
39 ;;; Define Back-End
41 (org-export-define-backend 'latex
42 '((bold . org-latex-bold)
43 (center-block . org-latex-center-block)
44 (clock . org-latex-clock)
45 (code . org-latex-code)
46 (drawer . org-latex-drawer)
47 (dynamic-block . org-latex-dynamic-block)
48 (entity . org-latex-entity)
49 (example-block . org-latex-example-block)
50 (export-block . org-latex-export-block)
51 (export-snippet . org-latex-export-snippet)
52 (fixed-width . org-latex-fixed-width)
53 (footnote-definition . org-latex-footnote-definition)
54 (footnote-reference . org-latex-footnote-reference)
55 (headline . org-latex-headline)
56 (horizontal-rule . org-latex-horizontal-rule)
57 (inline-src-block . org-latex-inline-src-block)
58 (inlinetask . org-latex-inlinetask)
59 (italic . org-latex-italic)
60 (item . org-latex-item)
61 (keyword . org-latex-keyword)
62 (latex-environment . org-latex-latex-environment)
63 (latex-fragment . org-latex-latex-fragment)
64 (line-break . org-latex-line-break)
65 (link . org-latex-link)
66 (node-property . org-latex-node-property)
67 (paragraph . org-latex-paragraph)
68 (plain-list . org-latex-plain-list)
69 (plain-text . org-latex-plain-text)
70 (planning . org-latex-planning)
71 (property-drawer . org-latex-property-drawer)
72 (quote-block . org-latex-quote-block)
73 (radio-target . org-latex-radio-target)
74 (section . org-latex-section)
75 (special-block . org-latex-special-block)
76 (src-block . org-latex-src-block)
77 (statistics-cookie . org-latex-statistics-cookie)
78 (strike-through . org-latex-strike-through)
79 (subscript . org-latex-subscript)
80 (superscript . org-latex-superscript)
81 (table . org-latex-table)
82 (table-cell . org-latex-table-cell)
83 (table-row . org-latex-table-row)
84 (target . org-latex-target)
85 (template . org-latex-template)
86 (timestamp . org-latex-timestamp)
87 (underline . org-latex-underline)
88 (verbatim . org-latex-verbatim)
89 (verse-block . org-latex-verse-block)
90 ;; Pseudo objects and elements.
91 (latex-math-block . org-latex-math-block)
92 (latex-matrices . org-latex-matrices))
93 :menu-entry
94 '(?l "Export to LaTeX"
95 ((?L "As LaTeX buffer" org-latex-export-as-latex)
96 (?l "As LaTeX file" org-latex-export-to-latex)
97 (?p "As PDF file" org-latex-export-to-pdf)
98 (?o "As PDF file and open"
99 (lambda (a s v b)
100 (if a (org-latex-export-to-pdf t s v b)
101 (org-open-file (org-latex-export-to-pdf nil s v b)))))))
102 :filters-alist '((:filter-options . org-latex-math-block-options-filter)
103 (:filter-paragraph . org-latex-clean-invalid-line-breaks)
104 (:filter-parse-tree org-latex-math-block-tree-filter
105 org-latex-matrices-tree-filter
106 org-latex-image-link-filter)
107 (:filter-verse-block . org-latex-clean-invalid-line-breaks))
108 :options-alist
109 '((:latex-class "LATEX_CLASS" nil org-latex-default-class t)
110 (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
111 (:latex-header "LATEX_HEADER" nil nil newline)
112 (:latex-header-extra "LATEX_HEADER_EXTRA" nil nil newline)
113 (:description "DESCRIPTION" nil nil parse)
114 (:keywords "KEYWORDS" nil nil parse)
115 (:subtitle "SUBTITLE" nil nil parse)
116 ;; Other variables.
117 (:latex-active-timestamp-format nil nil org-latex-active-timestamp-format)
118 (:latex-caption-above nil nil org-latex-caption-above)
119 (:latex-classes nil nil org-latex-classes)
120 (:latex-default-figure-position nil nil org-latex-default-figure-position)
121 (:latex-default-table-environment nil nil org-latex-default-table-environment)
122 (:latex-default-table-mode nil nil org-latex-default-table-mode)
123 (:latex-diary-timestamp-format nil nil org-latex-diary-timestamp-format)
124 (:latex-footnote-defined-format nil nil org-latex-footnote-defined-format)
125 (:latex-footnote-separator nil nil org-latex-footnote-separator)
126 (:latex-format-drawer-function nil nil org-latex-format-drawer-function)
127 (:latex-format-headline-function nil nil org-latex-format-headline-function)
128 (:latex-format-inlinetask-function nil nil org-latex-format-inlinetask-function)
129 (:latex-hyperref-template nil nil org-latex-hyperref-template t)
130 (:latex-image-default-height nil nil org-latex-image-default-height)
131 (:latex-image-default-option nil nil org-latex-image-default-option)
132 (:latex-image-default-width nil nil org-latex-image-default-width)
133 (:latex-images-centered nil nil org-latex-images-centered)
134 (:latex-inactive-timestamp-format nil nil org-latex-inactive-timestamp-format)
135 (:latex-inline-image-rules nil nil org-latex-inline-image-rules)
136 (:latex-link-with-unknown-path-format nil nil org-latex-link-with-unknown-path-format)
137 (:latex-listings nil nil org-latex-listings)
138 (:latex-listings-langs nil nil org-latex-listings-langs)
139 (:latex-listings-options nil nil org-latex-listings-options)
140 (:latex-minted-langs nil nil org-latex-minted-langs)
141 (:latex-minted-options nil nil org-latex-minted-options)
142 (:latex-prefer-user-labels nil nil org-latex-prefer-user-labels)
143 (:latex-subtitle-format nil nil org-latex-subtitle-format)
144 (:latex-subtitle-separate nil nil org-latex-subtitle-separate)
145 (:latex-table-scientific-notation nil nil org-latex-table-scientific-notation)
146 (:latex-tables-booktabs nil nil org-latex-tables-booktabs)
147 (:latex-tables-centered nil nil org-latex-tables-centered)
148 (:latex-text-markup-alist nil nil org-latex-text-markup-alist)
149 (:latex-title-command nil nil org-latex-title-command)
150 (:latex-toc-command nil nil org-latex-toc-command)
151 (:latex-compiler "LATEX_COMPILER" nil org-latex-compiler)
152 ;; Redefine regular options.
153 (:date "DATE" nil "\\today" parse)))
157 ;;; Internal Variables
159 (defconst org-latex-babel-language-alist
160 '(("af" . "afrikaans")
161 ("bg" . "bulgarian")
162 ("bt-br" . "brazilian")
163 ("ca" . "catalan")
164 ("cs" . "czech")
165 ("cy" . "welsh")
166 ("da" . "danish")
167 ("de" . "germanb")
168 ("de-at" . "naustrian")
169 ("de-de" . "ngerman")
170 ("el" . "greek")
171 ("en" . "english")
172 ("en-au" . "australian")
173 ("en-ca" . "canadian")
174 ("en-gb" . "british")
175 ("en-ie" . "irish")
176 ("en-nz" . "newzealand")
177 ("en-us" . "american")
178 ("es" . "spanish")
179 ("et" . "estonian")
180 ("eu" . "basque")
181 ("fi" . "finnish")
182 ("fr" . "frenchb")
183 ("fr-ca" . "canadien")
184 ("gl" . "galician")
185 ("hr" . "croatian")
186 ("hu" . "hungarian")
187 ("id" . "indonesian")
188 ("is" . "icelandic")
189 ("it" . "italian")
190 ("la" . "latin")
191 ("ms" . "malay")
192 ("nl" . "dutch")
193 ("nb" . "norsk")
194 ("nn" . "nynorsk")
195 ("no" . "norsk")
196 ("pl" . "polish")
197 ("pt" . "portuguese")
198 ("ro" . "romanian")
199 ("ru" . "russian")
200 ("sa" . "sanskrit")
201 ("sb" . "uppersorbian")
202 ("sk" . "slovak")
203 ("sl" . "slovene")
204 ("sq" . "albanian")
205 ("sr" . "serbian")
206 ("sv" . "swedish")
207 ("ta" . "tamil")
208 ("tr" . "turkish")
209 ("uk" . "ukrainian"))
210 "Alist between language code and corresponding Babel option.")
212 (defconst org-latex-polyglossia-language-alist
213 '(("am" "amharic")
214 ("ast" "asturian")
215 ("ar" "arabic")
216 ("bo" "tibetan")
217 ("bn" "bengali")
218 ("bg" "bulgarian")
219 ("br" "breton")
220 ("bt-br" "brazilian")
221 ("ca" "catalan")
222 ("cop" "coptic")
223 ("cs" "czech")
224 ("cy" "welsh")
225 ("da" "danish")
226 ("de" "german" "german")
227 ("de-at" "german" "austrian")
228 ("de-de" "german" "german")
229 ("dv" "divehi")
230 ("el" "greek")
231 ("en" "english" "usmax")
232 ("en-au" "english" "australian")
233 ("en-gb" "english" "uk")
234 ("en-nz" "english" "newzealand")
235 ("en-us" "english" "usmax")
236 ("eo" "esperanto")
237 ("es" "spanish")
238 ("et" "estonian")
239 ("eu" "basque")
240 ("fa" "farsi")
241 ("fi" "finnish")
242 ("fr" "french")
243 ("fu" "friulan")
244 ("ga" "irish")
245 ("gd" "scottish")
246 ("gl" "galician")
247 ("he" "hebrew")
248 ("hi" "hindi")
249 ("hr" "croatian")
250 ("hu" "magyar")
251 ("hy" "armenian")
252 ("id" "bahasai")
253 ("ia" "interlingua")
254 ("is" "icelandic")
255 ("it" "italian")
256 ("kn" "kannada")
257 ("la" "latin" "modern")
258 ("la-modern" "latin" "modern")
259 ("la-classic" "latin" "classic")
260 ("la-medieval" "latin" "medieval")
261 ("lo" "lao")
262 ("lt" "lithuanian")
263 ("lv" "latvian")
264 ("mr" "maranthi")
265 ("ml" "malayalam")
266 ("nl" "dutch")
267 ("nb" "norsk")
268 ("nn" "nynorsk")
269 ("nko" "nko")
270 ("no" "norsk")
271 ("oc" "occitan")
272 ("pl" "polish")
273 ("pms" "piedmontese")
274 ("pt" "portuges")
275 ("rm" "romansh")
276 ("ro" "romanian")
277 ("ru" "russian")
278 ("sa" "sanskrit")
279 ("hsb" "usorbian")
280 ("dsb" "lsorbian")
281 ("sk" "slovak")
282 ("sl" "slovenian")
283 ("se" "samin")
284 ("sq" "albanian")
285 ("sr" "serbian")
286 ("sv" "swedish")
287 ("syr" "syriac")
288 ("ta" "tamil")
289 ("te" "telugu")
290 ("th" "thai")
291 ("tk" "turkmen")
292 ("tr" "turkish")
293 ("uk" "ukrainian")
294 ("ur" "urdu")
295 ("vi" "vietnamese"))
296 "Alist between language code and corresponding Polyglossia option")
300 (defconst org-latex-table-matrix-macros '(("bordermatrix" . "\\cr")
301 ("qbordermatrix" . "\\cr")
302 ("kbordermatrix" . "\\\\"))
303 "Alist between matrix macros and their row ending.")
305 (defconst org-latex-math-environments-re
306 (format
307 "\\`[ \t]*\\\\begin{%s\\*?}"
308 (regexp-opt
309 '("equation" "eqnarray" "math" "displaymath"
310 "align" "gather" "multline" "flalign" "alignat"
311 "xalignat" "xxalignat"
312 "subequations"
313 ;; breqn
314 "dmath" "dseries" "dgroup" "darray"
315 ;; empheq
316 "empheq")))
317 "Regexp of LaTeX math environments.")
320 ;;; User Configurable Variables
322 (defgroup org-export-latex nil
323 "Options for exporting Org mode files to LaTeX."
324 :tag "Org Export LaTeX"
325 :group 'org-export)
327 ;;;; Generic
329 (defcustom org-latex-caption-above '(table)
330 "When non-nil, place caption string at the beginning of elements.
331 Otherwise, place it near the end. When value is a list of
332 symbols, put caption above selected elements only. Allowed
333 symbols are: `image', `table', `src-block' and `special-block'."
334 :group 'org-export-latex
335 :version "26.1"
336 :package-version '(Org . "8.3")
337 :type '(choice
338 (const :tag "For all elements" t)
339 (const :tag "For no element" nil)
340 (set :tag "For the following elements only" :greedy t
341 (const :tag "Images" image)
342 (const :tag "Tables" table)
343 (const :tag "Source code" src-block)
344 (const :tag "Special blocks" special-block))))
346 (defcustom org-latex-prefer-user-labels nil
347 "Use user-provided labels instead of internal ones when non-nil.
349 When this variable is non-nil, Org will use the value of
350 CUSTOM_ID property, NAME keyword or Org target as the key for the
351 \\label commands generated.
353 By default, Org generates its own internal labels during LaTeX
354 export. This process ensures that the \\label keys are unique
355 and valid, but it means the keys are not available in advance of
356 the export process.
358 Setting this variable gives you control over how Org generates
359 labels during LaTeX export, so that you may know their keys in
360 advance. One reason to do this is that it allows you to refer to
361 various elements using a single label both in Org's link syntax
362 and in embedded LaTeX code.
364 For example, when this variable is non-nil, a headline like this:
366 ** Some section
367 :PROPERTIES:
368 :CUSTOM_ID: sec:foo
369 :END:
370 This is section [[#sec:foo]].
371 #+BEGIN_EXPORT latex
372 And this is still section \\ref{sec:foo}.
373 #+END_EXPORT
375 will be exported to LaTeX as:
377 \\subsection{Some section}
378 \\label{sec:foo}
379 This is section \\ref{sec:foo}.
380 And this is still section \\ref{sec:foo}.
382 Note, however, that setting this variable introduces a limitation
383 on the possible values for CUSTOM_ID and NAME. When this
384 variable is non-nil, Org passes their value to \\label unchanged.
385 You are responsible for ensuring that the value is a valid LaTeX
386 \\label key, and that no other \\label commands with the same key
387 appear elsewhere in your document. (Keys may contain letters,
388 numbers, and the following punctuation: '_' '.' '-' ':'.) There
389 are no such limitations on CUSTOM_ID and NAME when this variable
390 is nil.
392 For headlines that do not define the CUSTOM_ID property or
393 elements without a NAME, Org will continue to use its default
394 labeling scheme to generate labels and resolve links into proper
395 references."
396 :group 'org-export-latex
397 :type 'boolean
398 :version "26.1"
399 :package-version '(Org . "8.3"))
401 ;;;; Preamble
403 (defcustom org-latex-default-class "article"
404 "The default LaTeX class."
405 :group 'org-export-latex
406 :type '(string :tag "LaTeX class"))
408 (defcustom org-latex-classes
409 '(("article"
410 "\\documentclass[11pt]{article}"
411 ("\\section{%s}" . "\\section*{%s}")
412 ("\\subsection{%s}" . "\\subsection*{%s}")
413 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
414 ("\\paragraph{%s}" . "\\paragraph*{%s}")
415 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
416 ("report"
417 "\\documentclass[11pt]{report}"
418 ("\\part{%s}" . "\\part*{%s}")
419 ("\\chapter{%s}" . "\\chapter*{%s}")
420 ("\\section{%s}" . "\\section*{%s}")
421 ("\\subsection{%s}" . "\\subsection*{%s}")
422 ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
423 ("book"
424 "\\documentclass[11pt]{book}"
425 ("\\part{%s}" . "\\part*{%s}")
426 ("\\chapter{%s}" . "\\chapter*{%s}")
427 ("\\section{%s}" . "\\section*{%s}")
428 ("\\subsection{%s}" . "\\subsection*{%s}")
429 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
430 "Alist of LaTeX classes and associated header and structure.
431 If #+LATEX_CLASS is set in the buffer, use its value and the
432 associated information. Here is the structure of each cell:
434 (class-name
435 header-string
436 (numbered-section . unnumbered-section)
437 ...)
439 The header string
440 -----------------
442 The HEADER-STRING is the header that will be inserted into the
443 LaTeX file. It should contain the \\documentclass macro, and
444 anything else that is needed for this setup. To this header, the
445 following commands will be added:
447 - Calls to \\usepackage for all packages mentioned in the
448 variables `org-latex-default-packages-alist' and
449 `org-latex-packages-alist'. Thus, your header definitions
450 should avoid to also request these packages.
452 - Lines specified via \"#+LATEX_HEADER:\" and
453 \"#+LATEX_HEADER_EXTRA:\" keywords.
455 If you need more control about the sequence in which the header
456 is built up, or if you want to exclude one of these building
457 blocks for a particular class, you can use the following
458 macro-like placeholders.
460 [DEFAULT-PACKAGES] \\usepackage statements for default packages
461 [NO-DEFAULT-PACKAGES] do not include any of the default packages
462 [PACKAGES] \\usepackage statements for packages
463 [NO-PACKAGES] do not include the packages
464 [EXTRA] the stuff from #+LATEX_HEADER(_EXTRA)
465 [NO-EXTRA] do not include #+LATEX_HEADER(_EXTRA) stuff
467 So a header like
469 \\documentclass{article}
470 [NO-DEFAULT-PACKAGES]
471 [EXTRA]
472 \\providecommand{\\alert}[1]{\\textbf{#1}}
473 [PACKAGES]
475 will omit the default packages, and will include the
476 #+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
477 to \\providecommand, and then place \\usepackage commands based
478 on the content of `org-latex-packages-alist'.
480 If your header, `org-latex-default-packages-alist' or
481 `org-latex-packages-alist' inserts \"\\usepackage[AUTO]{inputenc}\",
482 AUTO will automatically be replaced with a coding system derived
483 from `buffer-file-coding-system'. See also the variable
484 `org-latex-inputenc-alist' for a way to influence this mechanism.
486 Likewise, if your header contains \"\\usepackage[AUTO]{babel}\"
487 or \"\\usepackage[AUTO]{polyglossia}\", AUTO will be replaced
488 with the language related to the language code specified by
489 `org-export-default-language'. Note that constructions such as
490 \"\\usepackage[french,AUTO,english]{babel}\" are permitted. For
491 Polyglossia the language will be set via the macros
492 \"\\setmainlanguage\" and \"\\setotherlanguage\". See also
493 `org-latex-guess-babel-language' and
494 `org-latex-guess-polyglossia-language'.
496 The sectioning structure
497 ------------------------
499 The sectioning structure of the class is given by the elements
500 following the header string. For each sectioning level, a number
501 of strings is specified. A %s formatter is mandatory in each
502 section string and will be replaced by the title of the section.
504 Instead of a cons cell (numbered . unnumbered), you can also
505 provide a list of 2 or 4 elements,
507 (numbered-open numbered-close)
511 (numbered-open numbered-close unnumbered-open unnumbered-close)
513 providing opening and closing strings for a LaTeX environment
514 that should represent the document section. The opening clause
515 should have a %s to represent the section title.
517 Instead of a list of sectioning commands, you can also specify
518 a function name. That function will be called with two
519 parameters, the (reduced) level of the headline, and a predicate
520 non-nil when the headline should be numbered. It must return
521 a format string in which the section title will be added."
522 :group 'org-export-latex
523 :type '(repeat
524 (list (string :tag "LaTeX class")
525 (string :tag "LaTeX header")
526 (repeat :tag "Levels" :inline t
527 (choice
528 (cons :tag "Heading"
529 (string :tag " numbered")
530 (string :tag "unnumbered"))
531 (list :tag "Environment"
532 (string :tag "Opening (numbered)")
533 (string :tag "Closing (numbered)")
534 (string :tag "Opening (unnumbered)")
535 (string :tag "Closing (unnumbered)"))
536 (function :tag "Hook computing sectioning"))))))
538 (defcustom org-latex-inputenc-alist nil
539 "Alist of inputenc coding system names, and what should really be used.
540 For example, adding an entry
542 (\"utf8\" . \"utf8x\")
544 will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
545 are written as utf8 files."
546 :group 'org-export-latex
547 :type '(repeat
548 (cons
549 (string :tag "Derived from buffer")
550 (string :tag "Use this instead"))))
552 (defcustom org-latex-title-command "\\maketitle"
553 "The command used to insert the title just after \\begin{document}.
555 This format string may contain these elements:
557 %a for AUTHOR keyword
558 %t for TITLE keyword
559 %s for SUBTITLE keyword
560 %k for KEYWORDS line
561 %d for DESCRIPTION line
562 %c for CREATOR line
563 %l for Language keyword
564 %L for capitalized language keyword
565 %D for DATE keyword
567 If you need to use a \"%\" character, you need to escape it
568 like that: \"%%\".
570 Setting :latex-title-command in publishing projects will take
571 precedence over this variable."
572 :group 'org-export-latex
573 :type '(string :tag "Format string"))
575 (defcustom org-latex-subtitle-format "\\\\\\medskip\n\\large %s"
576 "Format string used for transcoded subtitle.
577 The format string should have at most one \"%s\"-expression,
578 which is replaced with the subtitle."
579 :group 'org-export-latex
580 :version "26.1"
581 :package-version '(Org . "8.3")
582 :type '(string :tag "Format string"))
584 (defcustom org-latex-subtitle-separate nil
585 "Non-nil means the subtitle is not typeset as part of title."
586 :group 'org-export-latex
587 :version "26.1"
588 :package-version '(Org . "8.3")
589 :type 'boolean)
591 (defcustom org-latex-toc-command "\\tableofcontents\n\n"
592 "LaTeX command to set the table of contents, list of figures, etc.
593 This command only applies to the table of contents generated with
594 the toc:nil option, not to those generated with #+TOC keyword."
595 :group 'org-export-latex
596 :type 'string)
598 (defcustom org-latex-hyperref-template
599 "\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},
600 pdfsubject={%d},\n pdfcreator={%c}, \n pdflang={%L}}\n"
601 "Template for hyperref package options.
603 This format string may contain these elements:
605 %a for AUTHOR keyword
606 %t for TITLE keyword
607 %s for SUBTITLE keyword
608 %k for KEYWORDS line
609 %d for DESCRIPTION line
610 %c for CREATOR line
611 %l for Language keyword
612 %L for capitalized language keyword
613 %D for DATE keyword
615 If you need to use a \"%\" character, you need to escape it
616 like that: \"%%\".
618 As a special case, a nil value prevents template from being
619 inserted.
621 Setting :latex-hyperref-template in publishing projects will take
622 precedence over this variable."
623 :group 'org-export-latex
624 :version "26.1"
625 :package-version '(Org . "8.3")
626 :type '(choice (const :tag "No template" nil)
627 (string :tag "Format string")))
629 ;;;; Headline
631 (defcustom org-latex-format-headline-function
632 'org-latex-format-headline-default-function
633 "Function for formatting the headline's text.
635 This function will be called with six arguments:
636 TODO the todo keyword (string or nil)
637 TODO-TYPE the type of todo (symbol: `todo', `done', nil)
638 PRIORITY the priority of the headline (integer or nil)
639 TEXT the main headline text (string)
640 TAGS the tags (list of strings or nil)
641 INFO the export options (plist)
643 The function result will be used in the section format string."
644 :group 'org-export-latex
645 :version "24.4"
646 :package-version '(Org . "8.0")
647 :type 'function)
650 ;;;; Footnotes
652 (defcustom org-latex-footnote-separator "\\textsuperscript{,}\\,"
653 "Text used to separate footnotes."
654 :group 'org-export-latex
655 :type 'string)
657 (defcustom org-latex-footnote-defined-format "\\textsuperscript{\\ref{%s}}"
658 "Format string used to format reference to footnote already defined.
659 %s will be replaced by the label of the referred footnote."
660 :group 'org-export-latex
661 :type '(choice
662 (const :tag "Use plain superscript (default)" "\\textsuperscript{\\ref{%s}}")
663 (const :tag "Use Memoir/KOMA-Script footref" "\\footref{%s}")
664 (string :tag "Other format string"))
665 :version "26.1"
666 :package-version '(Org . "9.0"))
668 ;;;; Timestamps
670 (defcustom org-latex-active-timestamp-format "\\textit{%s}"
671 "A printf format string to be applied to active timestamps."
672 :group 'org-export-latex
673 :type 'string)
675 (defcustom org-latex-inactive-timestamp-format "\\textit{%s}"
676 "A printf format string to be applied to inactive timestamps."
677 :group 'org-export-latex
678 :type 'string)
680 (defcustom org-latex-diary-timestamp-format "\\textit{%s}"
681 "A printf format string to be applied to diary timestamps."
682 :group 'org-export-latex
683 :type 'string)
686 ;;;; Links
688 (defcustom org-latex-images-centered t
689 "When non-nil, images are centered."
690 :group 'org-export-latex
691 :version "26.1"
692 :package-version '(Org . "9.0")
693 :type 'boolean
694 :safe #'booleanp)
696 (defcustom org-latex-image-default-option ""
697 "Default option for images."
698 :group 'org-export-latex
699 :version "24.4"
700 :package-version '(Org . "8.0")
701 :type 'string)
703 (defcustom org-latex-image-default-width ".9\\linewidth"
704 "Default width for images.
705 This value will not be used if a height is provided."
706 :group 'org-export-latex
707 :version "24.4"
708 :package-version '(Org . "8.0")
709 :type 'string)
711 (defcustom org-latex-image-default-height ""
712 "Default height for images.
713 This value will not be used if a width is provided, or if the
714 image is wrapped within a \"figure\" or \"wrapfigure\"
715 environment."
716 :group 'org-export-latex
717 :version "24.4"
718 :package-version '(Org . "8.0")
719 :type 'string)
721 (defcustom org-latex-default-figure-position "htbp"
722 "Default position for LaTeX figures."
723 :group 'org-export-latex
724 :type 'string
725 :version "26.1"
726 :package-version '(Org . "9.0")
727 :safe #'stringp)
729 (defcustom org-latex-inline-image-rules
730 `(("file" . ,(regexp-opt
731 '("pdf" "jpeg" "jpg" "png" "ps" "eps" "tikz" "pgf" "svg"))))
732 "Rules characterizing image files that can be inlined into LaTeX.
734 A rule consists in an association whose key is the type of link
735 to consider, and value is a regexp that will be matched against
736 link's path.
738 Note that, by default, the image extension *actually* allowed
739 depend on the way the LaTeX file is processed. When used with
740 pdflatex, pdf, jpg and png images are OK. When processing
741 through dvi to Postscript, only ps and eps are allowed. The
742 default we use here encompasses both."
743 :group 'org-export-latex
744 :version "24.4"
745 :package-version '(Org . "8.0")
746 :type '(alist :key-type (string :tag "Type")
747 :value-type (regexp :tag "Path")))
749 (defcustom org-latex-link-with-unknown-path-format "\\texttt{%s}"
750 "Format string for links with unknown path type."
751 :group 'org-export-latex
752 :type 'string)
755 ;;;; Tables
757 (defcustom org-latex-default-table-environment "tabular"
758 "Default environment used to build tables."
759 :group 'org-export-latex
760 :version "24.4"
761 :package-version '(Org . "8.0")
762 :type 'string)
764 (defcustom org-latex-default-table-mode 'table
765 "Default mode for tables.
767 Value can be a symbol among:
769 `table' Regular LaTeX table.
771 `math' In this mode, every cell is considered as being in math
772 mode and the complete table will be wrapped within a math
773 environment. It is particularly useful to write matrices.
775 `inline-math' This mode is almost the same as `math', but the
776 math environment will be inlined.
778 `verbatim' The table is exported as it appears in the Org
779 buffer, within a verbatim environment.
781 This value can be overridden locally with, i.e. \":mode math\" in
782 LaTeX attributes.
784 When modifying this variable, it may be useful to change
785 `org-latex-default-table-environment' accordingly."
786 :group 'org-export-latex
787 :version "24.4"
788 :package-version '(Org . "8.0")
789 :type '(choice (const :tag "Table" table)
790 (const :tag "Matrix" math)
791 (const :tag "Inline matrix" inline-math)
792 (const :tag "Verbatim" verbatim))
793 :safe (lambda (s) (memq s '(table math inline-math verbatim))))
795 (defcustom org-latex-tables-centered t
796 "When non-nil, tables are exported in a center environment."
797 :group 'org-export-latex
798 :type 'boolean
799 :safe #'booleanp)
801 (defcustom org-latex-tables-booktabs nil
802 "When non-nil, display tables in a formal \"booktabs\" style.
803 This option assumes that the \"booktabs\" package is properly
804 loaded in the header of the document. This value can be ignored
805 locally with \":booktabs t\" and \":booktabs nil\" LaTeX
806 attributes."
807 :group 'org-export-latex
808 :version "24.4"
809 :package-version '(Org . "8.0")
810 :type 'boolean
811 :safe #'booleanp)
813 (defcustom org-latex-table-scientific-notation nil
814 "Format string to display numbers in scientific notation.
816 The format should have \"%s\" twice, for mantissa and exponent
817 \(i.e., \"%s\\\\times10^{%s}\").
819 When nil, no transformation is made."
820 :group 'org-export-latex
821 :version "24.4"
822 :package-version '(Org . "8.0")
823 :type '(choice
824 (string :tag "Format string")
825 (const :tag "No formatting" nil)))
827 ;;;; Text markup
829 (defcustom org-latex-text-markup-alist '((bold . "\\textbf{%s}")
830 (code . protectedtexttt)
831 (italic . "\\emph{%s}")
832 (strike-through . "\\sout{%s}")
833 (underline . "\\uline{%s}")
834 (verbatim . protectedtexttt))
835 "Alist of LaTeX expressions to convert text markup.
837 The key must be a symbol among `bold', `code', `italic',
838 `strike-through', `underline' and `verbatim'. The value is
839 a formatting string to wrap fontified text with.
841 Value can also be set to the following symbols: `verb' and
842 `protectedtexttt'. For the former, Org will use \"\\verb\" to
843 create a format string and select a delimiter character that
844 isn't in the string. For the latter, Org will use \"\\texttt\"
845 to typeset and try to protect special characters.
847 If no association can be found for a given markup, text will be
848 returned as-is."
849 :group 'org-export-latex
850 :version "26.1"
851 :package-version '(Org . "8.3")
852 :type 'alist
853 :options '(bold code italic strike-through underline verbatim))
856 ;;;; Drawers
858 (defcustom org-latex-format-drawer-function (lambda (_ contents) contents)
859 "Function called to format a drawer in LaTeX code.
861 The function must accept two parameters:
862 NAME the drawer name, like \"LOGBOOK\"
863 CONTENTS the contents of the drawer.
865 The function should return the string to be exported.
867 The default function simply returns the value of CONTENTS."
868 :group 'org-export-latex
869 :version "26.1"
870 :package-version '(Org . "8.3")
871 :type 'function)
874 ;;;; Inlinetasks
876 (defcustom org-latex-format-inlinetask-function
877 'org-latex-format-inlinetask-default-function
878 "Function called to format an inlinetask in LaTeX code.
880 The function must accept seven parameters:
881 TODO the todo keyword (string or nil)
882 TODO-TYPE the todo type (symbol: `todo', `done', nil)
883 PRIORITY the inlinetask priority (integer or nil)
884 NAME the inlinetask name (string)
885 TAGS the inlinetask tags (list of strings or nil)
886 CONTENTS the contents of the inlinetask (string or nil)
887 INFO the export options (plist)
889 The function should return the string to be exported."
890 :group 'org-export-latex
891 :type 'function
892 :version "26.1"
893 :package-version '(Org . "8.3"))
896 ;; Src blocks
898 (defcustom org-latex-listings nil
899 "Non-nil means export source code using the listings package.
901 This package will fontify source code, possibly even with color.
902 If you want to use this, you also need to make LaTeX use the
903 listings package, and if you want to have color, the color
904 package. Just add these to `org-latex-packages-alist', for
905 example using customize, or with something like:
907 (require \\='ox-latex)
908 (add-to-list \\='org-latex-packages-alist \\='(\"\" \"listings\"))
909 (add-to-list \\='org-latex-packages-alist \\='(\"\" \"color\"))
911 Alternatively,
913 (setq org-latex-listings \\='minted)
915 causes source code to be exported using the minted package as
916 opposed to listings. If you want to use minted, you need to add
917 the minted package to `org-latex-packages-alist', for example
918 using customize, or with
920 (require \\='ox-latex)
921 (add-to-list \\='org-latex-packages-alist \\='(\"newfloat\" \"minted\"))
923 In addition, it is necessary to install pygments
924 \(URL `http://pygments.org>'), and to configure the variable
925 `org-latex-pdf-process' so that the -shell-escape option is
926 passed to pdflatex.
928 The minted choice has possible repercussions on the preview of
929 latex fragments (see `org-preview-latex-fragment'). If you run
930 into previewing problems, please consult
931 URL `https://orgmode.org/worg/org-tutorials/org-latex-preview.html'."
932 :group 'org-export-latex
933 :type '(choice
934 (const :tag "Use listings" t)
935 (const :tag "Use minted" minted)
936 (const :tag "Export verbatim" nil))
937 :safe (lambda (s) (memq s '(t nil minted))))
939 (defcustom org-latex-listings-langs
940 '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
941 (c "C") (cc "C++")
942 (fortran "fortran")
943 (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
944 (html "HTML") (xml "XML")
945 (tex "TeX") (latex "[LaTeX]TeX")
946 (shell-script "bash")
947 (gnuplot "Gnuplot")
948 (ocaml "Caml") (caml "Caml")
949 (sql "SQL") (sqlite "sql")
950 (makefile "make")
951 (R "r"))
952 "Alist mapping languages to their listing language counterpart.
953 The key is a symbol, the major mode symbol without the \"-mode\".
954 The value is the string that should be inserted as the language
955 parameter for the listings package. If the mode name and the
956 listings name are the same, the language does not need an entry
957 in this list - but it does not hurt if it is present."
958 :group 'org-export-latex
959 :version "26.1"
960 :package-version '(Org . "8.3")
961 :type '(repeat
962 (list
963 (symbol :tag "Major mode ")
964 (string :tag "Listings language"))))
966 (defcustom org-latex-listings-options nil
967 "Association list of options for the latex listings package.
969 These options are supplied as a comma-separated list to the
970 \\lstset command. Each element of the association list should be
971 a list containing two strings: the name of the option, and the
972 value. For example,
974 (setq org-latex-listings-options
975 \\='((\"basicstyle\" \"\\\\small\")
976 (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
978 will typeset the code in a small size font with underlined, bold
979 black keywords.
981 Note that the same options will be applied to blocks of all
982 languages. If you need block-specific options, you may use the
983 following syntax:
985 #+ATTR_LATEX: :options key1=value1,key2=value2
986 #+BEGIN_SRC <LANG>
988 #+END_SRC"
989 :group 'org-export-latex
990 :type '(repeat
991 (list
992 (string :tag "Listings option name ")
993 (string :tag "Listings option value"))))
995 (defcustom org-latex-minted-langs
996 '((emacs-lisp "common-lisp")
997 (cc "c++")
998 (cperl "perl")
999 (shell-script "bash")
1000 (caml "ocaml"))
1001 "Alist mapping languages to their minted language counterpart.
1002 The key is a symbol, the major mode symbol without the \"-mode\".
1003 The value is the string that should be inserted as the language
1004 parameter for the minted package. If the mode name and the
1005 listings name are the same, the language does not need an entry
1006 in this list - but it does not hurt if it is present.
1008 Note that minted uses all lower case for language identifiers,
1009 and that the full list of language identifiers can be obtained
1010 with:
1012 pygmentize -L lexers"
1013 :group 'org-export-latex
1014 :type '(repeat
1015 (list
1016 (symbol :tag "Major mode ")
1017 (string :tag "Minted language"))))
1019 (defcustom org-latex-minted-options nil
1020 "Association list of options for the latex minted package.
1022 These options are supplied within square brackets in
1023 \\begin{minted} environments. Each element of the alist should
1024 be a list containing two strings: the name of the option, and the
1025 value. For example,
1027 (setq org-latex-minted-options
1028 \\='((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
1030 will result in src blocks being exported with
1032 \\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
1034 as the start of the minted environment. Note that the same
1035 options will be applied to blocks of all languages. If you need
1036 block-specific options, you may use the following syntax:
1038 #+ATTR_LATEX: :options key1=value1,key2=value2
1039 #+BEGIN_SRC <LANG>
1041 #+END_SRC"
1042 :group 'org-export-latex
1043 :type '(repeat
1044 (list
1045 (string :tag "Minted option name ")
1046 (string :tag "Minted option value"))))
1048 (defcustom org-latex-custom-lang-environments nil
1049 "Alist mapping languages to language-specific LaTeX environments.
1051 It is used during export of src blocks by the listings and minted
1052 latex packages. The environment may be a simple string, composed of
1053 only letters and numbers. In this case, the string is directly the
1054 name of the latex environment to use. The environment may also be
1055 a format string. In this case the format string will be directly
1056 exported. This format string may contain these elements:
1058 %s for the formatted source
1059 %c for the caption
1060 %f for the float attribute
1061 %l for an appropriate label
1062 %o for the LaTeX attributes
1064 For example,
1066 (setq org-latex-custom-lang-environments
1067 \\='((python \"pythoncode\")
1068 (ocaml \"\\\\begin{listing}
1069 \\\\begin{minted}[%o]{ocaml}
1070 %s\\\\end{minted}
1071 \\\\caption{%c}
1072 \\\\label{%l}\")))
1074 would have the effect that if Org encounters a Python source block
1075 during LaTeX export it will produce
1077 \\begin{pythoncode}
1078 <src block body>
1079 \\end{pythoncode}
1081 and if Org encounters an Ocaml source block during LaTeX export it
1082 will produce
1084 \\begin{listing}
1085 \\begin{minted}[<attr_latex options>]{ocaml}
1086 <src block body>
1087 \\end{minted}
1088 \\caption{<caption>}
1089 \\label{<label>}
1090 \\end{listing}"
1091 :group 'org-export-latex
1092 :type '(repeat
1093 (list
1094 (symbol :tag "Language name ")
1095 (string :tag "Environment name or format string")))
1096 :version "26.1"
1097 :package-version '(Org . "9.0"))
1100 ;;;; Compilation
1102 (defcustom org-latex-compiler-file-string "%% Intended LaTeX compiler: %s\n"
1103 "LaTeX compiler format-string.
1104 See also `org-latex-compiler'."
1105 :group 'org-export-latex
1106 :type '(choice
1107 (const :tag "Comment" "%% Intended LaTeX compiler: %s\n")
1108 (const :tag "latex-mode file variable" "%% -*- latex-run-command: %s -*-\n")
1109 (const :tag "AUCTeX file variable" "%% -*- LaTeX-command: %s -*-\n")
1110 (string :tag "custom format" "%% %s"))
1111 :version "26.1"
1112 :package-version '(Org . "9.0"))
1114 (defcustom org-latex-compiler "pdflatex"
1115 "LaTeX compiler to use.
1117 Must be an element in `org-latex-compilers' or the empty quote.
1118 Can also be set in buffers via #+LATEX_COMPILER. See also
1119 `org-latex-compiler-file-string'."
1120 :group 'org-export-latex
1121 :type '(choice
1122 (const :tag "pdfLaTeX" "pdflatex")
1123 (const :tag "XeLaTeX" "xelatex")
1124 (const :tag "LuaLaTeX" "lualatex")
1125 (const :tag "Unset" ""))
1126 :version "26.1"
1127 :package-version '(Org . "9.0"))
1129 (defconst org-latex-compilers '("pdflatex" "xelatex" "lualatex")
1130 "Known LaTeX compilers.
1131 See also `org-latex-compiler'.")
1133 (defcustom org-latex-bib-compiler "bibtex"
1134 "Command to process a LaTeX file's bibliography.
1136 The shorthand %bib in `org-latex-pdf-process' is replaced with
1137 this value.
1139 A better approach is to use a compiler suit such as `latexmk'."
1140 :group 'org-export-latex
1141 :type '(choice (const :tag "BibTeX" "bibtex")
1142 (const :tag "Biber" "biber")
1143 (string :tag "Other process"))
1144 :version "26.1"
1145 :package-version '(Org . "9.0"))
1147 (defcustom org-latex-pdf-process
1148 '("%latex -interaction nonstopmode -output-directory %o %f"
1149 "%latex -interaction nonstopmode -output-directory %o %f"
1150 "%latex -interaction nonstopmode -output-directory %o %f")
1151 "Commands to process a LaTeX file to a PDF file.
1153 This is a list of strings, each of them will be given to the
1154 shell as a command. %f in the command will be replaced by the
1155 relative file name, %F by the absolute file name, %b by the file
1156 base name (i.e. without directory and extension parts), %o by the
1157 base directory of the file, %O by the absolute file name of the
1158 output file, %latex is the LaTeX compiler (see
1159 `org-latex-compiler'), and %bib is the BibTeX-like compiler (see
1160 `org-latex-bib-compiler').
1162 The reason why this is a list is that it usually takes several
1163 runs of `pdflatex', maybe mixed with a call to `bibtex'. Org
1164 does not have a clever mechanism to detect which of these
1165 commands have to be run to get to a stable result, and it also
1166 does not do any error checking.
1168 Consider a smart LaTeX compiler such as `texi2dvi' or `latexmk',
1169 which calls the \"correct\" combinations of auxiliary programs.
1171 Alternatively, this may be a Lisp function that does the
1172 processing, so you could use this to apply the machinery of
1173 AUCTeX or the Emacs LaTeX mode. This function should accept the
1174 file name as its single argument."
1175 :group 'org-export-pdf
1176 :type '(choice
1177 (repeat :tag "Shell command sequence"
1178 (string :tag "Shell command"))
1179 (const :tag "2 runs of latex"
1180 ("%latex -interaction nonstopmode -output-directory %o %f"
1181 "%latex -interaction nonstopmode -output-directory %o %f"))
1182 (const :tag "3 runs of latex"
1183 ("%latex -interaction nonstopmode -output-directory %o %f"
1184 "%latex -interaction nonstopmode -output-directory %o %f"
1185 "%latex -interaction nonstopmode -output-directory %o %f"))
1186 (const :tag "latex,bibtex,latex,latex"
1187 ("%latex -interaction nonstopmode -output-directory %o %f"
1188 "%bib %b"
1189 "%latex -interaction nonstopmode -output-directory %o %f"
1190 "%latex -interaction nonstopmode -output-directory %o %f"))
1191 (const :tag "texi2dvi"
1192 ("cd %o; LATEX=\"%latex\" texi2dvi -p -b -V %b.tex"))
1193 (const :tag "latexmk"
1194 ("latexmk -g -pdf -pdflatex=\"%latex\" -outdir=%o %f"))
1195 (function)))
1197 (defcustom org-latex-logfiles-extensions
1198 '("aux" "bcf" "blg" "fdb_latexmk" "fls" "figlist" "idx" "log" "nav" "out"
1199 "ptc" "run.xml" "snm" "toc" "vrb" "xdv")
1200 "The list of file extensions to consider as LaTeX logfiles.
1201 The logfiles will be removed if `org-latex-remove-logfiles' is
1202 non-nil."
1203 :group 'org-export-latex
1204 :version "26.1"
1205 :package-version '(Org . "8.3")
1206 :type '(repeat (string :tag "Extension")))
1208 (defcustom org-latex-remove-logfiles t
1209 "Non-nil means remove the logfiles produced by PDF production.
1210 By default, logfiles are files with these extensions: .aux, .idx,
1211 .log, .out, .toc, .nav, .snm and .vrb. To define the set of
1212 logfiles to remove, set `org-latex-logfiles-extensions'."
1213 :group 'org-export-latex
1214 :type 'boolean)
1216 (defcustom org-latex-known-warnings
1217 '(("Reference.*?undefined" . "[undefined reference]")
1218 ("Runaway argument" . "[runaway argument]")
1219 ("Underfull \\hbox" . "[underfull hbox]")
1220 ("Overfull \\hbox" . "[overfull hbox]")
1221 ("Citation.*?undefined" . "[undefined citation]")
1222 ("Undefined control sequence" . "[undefined control sequence]"))
1223 "Alist of regular expressions and associated messages for the user.
1224 The regular expressions are used to find possible warnings in the
1225 log of a latex-run. These warnings will be reported after
1226 calling `org-latex-compile'."
1227 :group 'org-export-latex
1228 :version "26.1"
1229 :package-version '(Org . "8.3")
1230 :type '(repeat
1231 (cons
1232 (string :tag "Regexp")
1233 (string :tag "Message"))))
1237 ;;; Internal Functions
1239 (defun org-latex--caption-above-p (element info)
1240 "Non nil when caption is expected to be located above ELEMENT.
1241 INFO is a plist holding contextual information."
1242 (let ((above (plist-get info :latex-caption-above)))
1243 (if (symbolp above) above
1244 (let ((type (org-element-type element)))
1245 (memq (if (eq type 'link) 'image type) above)))))
1247 (defun org-latex--label (datum info &optional force full)
1248 "Return an appropriate label for DATUM.
1249 DATUM is an element or a `target' type object. INFO is the
1250 current export state, as a plist.
1252 Return nil if element DATUM has no NAME or VALUE affiliated
1253 keyword or no CUSTOM_ID property, unless FORCE is non-nil. In
1254 this case always return a unique label.
1256 Eventually, if FULL is non-nil, wrap label within \"\\label{}\"."
1257 (let* ((type (org-element-type datum))
1258 (user-label
1259 (org-element-property
1260 (cl-case type
1261 ((headline inlinetask) :CUSTOM_ID)
1262 (target :value)
1263 (otherwise :name))
1264 datum))
1265 (label
1266 (and (or user-label force)
1267 (if (and user-label (plist-get info :latex-prefer-user-labels))
1268 user-label
1269 (concat (cl-case type
1270 (headline "sec:")
1271 (table "tab:")
1272 (latex-environment
1273 (and (string-match-p
1274 org-latex-math-environments-re
1275 (org-element-property :value datum))
1276 "eq:"))
1277 (paragraph
1278 (and (org-element-property :caption datum)
1279 "fig:")))
1280 (org-export-get-reference datum info))))))
1281 (cond ((not full) label)
1282 (label (format "\\label{%s}%s"
1283 label
1284 (if (eq type 'target) "" "\n")))
1285 (t ""))))
1287 (defun org-latex--caption/label-string (element info)
1288 "Return caption and label LaTeX string for ELEMENT.
1290 INFO is a plist holding contextual information. If there's no
1291 caption nor label, return the empty string.
1293 For non-floats, see `org-latex--wrap-label'."
1294 (let* ((label (org-latex--label element info nil t))
1295 (main (org-export-get-caption element))
1296 (attr (org-export-read-attribute :attr_latex element))
1297 (type (org-element-type element))
1298 (nonfloat (or (and (plist-member attr :float)
1299 (not (plist-get attr :float))
1300 main)
1301 (and (eq type 'src-block)
1302 (not (plist-get attr :float))
1303 (null (plist-get info :latex-listings)))))
1304 (short (org-export-get-caption element t))
1305 (caption-from-attr-latex (plist-get attr :caption)))
1306 (cond
1307 ((org-string-nw-p caption-from-attr-latex)
1308 (concat caption-from-attr-latex "\n"))
1309 ((and (not main) (equal label "")) "")
1310 ((not main) label)
1311 ;; Option caption format with short name.
1313 (format (if nonfloat "\\captionof{%s}%s{%s%s}\n"
1314 "\\caption%s%s{%s%s}\n")
1315 (let ((type* (if (eq type 'latex-environment)
1316 (org-latex--environment-type element)
1317 type)))
1318 (if nonfloat
1319 (cl-case type*
1320 (paragraph "figure")
1321 (image "figure")
1322 (special-block "figure")
1323 (src-block (if (plist-get info :latex-listings)
1324 "listing"
1325 "figure"))
1326 (t (symbol-name type*)))
1327 ""))
1328 (if short (format "[%s]" (org-export-data short info)) "")
1329 label
1330 (org-export-data main info))))))
1332 (defun org-latex-guess-inputenc (header)
1333 "Set the coding system in inputenc to what the buffer is.
1335 HEADER is the LaTeX header string. This function only applies
1336 when specified inputenc option is \"AUTO\".
1338 Return the new header, as a string."
1339 (let* ((cs (or (ignore-errors
1340 (latexenc-coding-system-to-inputenc
1341 (or org-export-coding-system buffer-file-coding-system)))
1342 "utf8")))
1343 (if (not cs) header
1344 ;; First translate if that is requested.
1345 (setq cs (or (cdr (assoc cs org-latex-inputenc-alist)) cs))
1346 ;; Then find the \usepackage statement and replace the option.
1347 (replace-regexp-in-string "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
1348 cs header t nil 1))))
1350 (defun org-latex-guess-babel-language (header info)
1351 "Set Babel's language according to LANGUAGE keyword.
1353 HEADER is the LaTeX header string. INFO is the plist used as
1354 a communication channel.
1356 Insertion of guessed language only happens when Babel package has
1357 explicitly been loaded. Then it is added to the rest of
1358 package's options.
1360 The argument to Babel may be \"AUTO\" which is then replaced with
1361 the language of the document or `org-export-default-language'
1362 unless language in question is already loaded.
1364 Return the new header."
1365 (let ((language-code (plist-get info :language)))
1366 ;; If no language is set or Babel package is not loaded, return
1367 ;; HEADER as-is.
1368 (if (or (not (stringp language-code))
1369 (not (string-match "\\\\usepackage\\[\\(.*\\)\\]{babel}" header)))
1370 header
1371 (let ((options (save-match-data
1372 (org-split-string (match-string 1 header) ",[ \t]*")))
1373 (language (cdr (assoc-string language-code
1374 org-latex-babel-language-alist t))))
1375 ;; If LANGUAGE is already loaded, return header without AUTO.
1376 ;; Otherwise, replace AUTO with language or append language if
1377 ;; AUTO is not present.
1378 (replace-match
1379 (mapconcat (lambda (option) (if (equal "AUTO" option) language option))
1380 (cond ((member language options) (delete "AUTO" options))
1381 ((member "AUTO" options) options)
1382 (t (append options (list language))))
1383 ", ")
1384 t nil header 1)))))
1386 (defun org-latex-guess-polyglossia-language (header info)
1387 "Set the Polyglossia language according to the LANGUAGE keyword.
1389 HEADER is the LaTeX header string. INFO is the plist used as
1390 a communication channel.
1392 Insertion of guessed language only happens when the Polyglossia
1393 package has been explicitly loaded.
1395 The argument to Polyglossia may be \"AUTO\" which is then
1396 replaced with the language of the document or
1397 `org-export-default-language'. Note, the language is really set
1398 using \setdefaultlanguage and not as an option to the package.
1400 Return the new header."
1401 (let ((language (plist-get info :language)))
1402 ;; If no language is set or Polyglossia is not loaded, return
1403 ;; HEADER as-is.
1404 (if (or (not (stringp language))
1405 (not (string-match
1406 "\\\\usepackage\\(?:\\[\\([^]]+?\\)\\]\\){polyglossia}\n"
1407 header)))
1408 header
1409 (let* ((options (org-string-nw-p (match-string 1 header)))
1410 (languages (and options
1411 ;; Reverse as the last loaded language is
1412 ;; the main language.
1413 (nreverse
1414 (delete-dups
1415 (save-match-data
1416 (org-split-string
1417 (replace-regexp-in-string
1418 "AUTO" language options t)
1419 ",[ \t]*"))))))
1420 (main-language-set
1421 (string-match-p "\\\\setmainlanguage{.*?}" header)))
1422 (replace-match
1423 (concat "\\usepackage{polyglossia}\n"
1424 (mapconcat
1425 (lambda (l)
1426 (let ((l (or (assoc l org-latex-polyglossia-language-alist)
1427 l)))
1428 (format (if main-language-set "\\setotherlanguage%s{%s}\n"
1429 (setq main-language-set t)
1430 "\\setmainlanguage%s{%s}\n")
1431 (if (and (consp l) (= (length l) 3))
1432 (format "[variant=%s]" (nth 2 l))
1434 (nth 1 l))))
1435 languages
1436 ""))
1437 t t header 0)))))
1439 (defun org-latex--remove-packages (pkg-alist info)
1440 "Remove packages based on the current LaTeX compiler.
1442 If the fourth argument of an element is set in pkg-alist, and it
1443 is not a member of the LaTeX compiler of the document, the packages
1444 is removed. See also `org-latex-compiler'.
1446 Return modified pkg-alist."
1447 (let ((compiler (or (plist-get info :latex-compiler) "")))
1448 (if (member-ignore-case compiler org-latex-compilers)
1449 (delq nil
1450 (mapcar
1451 (lambda (pkg)
1452 (unless (and
1453 (listp pkg)
1454 (let ((third (nth 3 pkg)))
1455 (and third
1456 (not (member-ignore-case
1457 compiler
1458 (if (listp third) third (list third)))))))
1459 pkg))
1460 pkg-alist))
1461 pkg-alist)))
1463 (defun org-latex--find-verb-separator (s)
1464 "Return a character not used in string S.
1465 This is used to choose a separator for constructs like \\verb."
1466 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
1467 (cl-loop for c across ll
1468 when (not (string-match (regexp-quote (char-to-string c)) s))
1469 return (char-to-string c))))
1471 (defun org-latex--make-option-string (options)
1472 "Return a comma separated string of keywords and values.
1473 OPTIONS is an alist where the key is the options keyword as
1474 a string, and the value a list containing the keyword value, or
1475 nil."
1476 (mapconcat (lambda (pair)
1477 (pcase-let ((`(,keyword ,value) pair))
1478 (concat keyword
1479 (and (> (length value) 0)
1480 (concat "=" value)))))
1481 options
1482 ","))
1484 (defun org-latex--wrap-label (element output info)
1485 "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
1486 INFO is the current export state, as a plist. This function
1487 should not be used for floats. See
1488 `org-latex--caption/label-string'."
1489 (if (not (and (org-string-nw-p output) (org-element-property :name element)))
1490 output
1491 (concat (format "\\phantomsection\n\\label{%s}\n"
1492 (org-latex--label element info))
1493 output)))
1495 (defun org-latex--protect-text (text)
1496 "Protect special characters in string TEXT and return it."
1497 (replace-regexp-in-string "[\\{}$%&_#~^]" "\\\\\\&" text))
1499 (defun org-latex--text-markup (text markup info)
1500 "Format TEXT depending on MARKUP text markup.
1501 INFO is a plist used as a communication channel. See
1502 `org-latex-text-markup-alist' for details."
1503 (let ((fmt (cdr (assq markup (plist-get info :latex-text-markup-alist)))))
1504 (cl-case fmt
1505 ;; No format string: Return raw text.
1506 ((nil) text)
1507 ;; Handle the `verb' special case: Find an appropriate separator
1508 ;; and use "\\verb" command.
1509 (verb
1510 (let ((separator (org-latex--find-verb-separator text)))
1511 (concat "\\verb"
1512 separator
1513 (replace-regexp-in-string "\n" " " text)
1514 separator)))
1515 ;; Handle the `protectedtexttt' special case: Protect some
1516 ;; special chars and use "\texttt{%s}" format string.
1517 (protectedtexttt
1518 (format "\\texttt{%s}"
1519 (replace-regexp-in-string
1520 "--\\|[\\{}$%&_#~^]"
1521 (lambda (m)
1522 (cond ((equal m "--") "-{}-")
1523 ((equal m "\\") "\\textbackslash{}")
1524 ((equal m "~") "\\textasciitilde{}")
1525 ((equal m "^") "\\textasciicircum{}")
1526 (t (org-latex--protect-text m))))
1527 text nil t)))
1528 ;; Else use format string.
1529 (t (format fmt text)))))
1531 (defun org-latex--delayed-footnotes-definitions (element info)
1532 "Return footnotes definitions in ELEMENT as a string.
1534 INFO is a plist used as a communication channel.
1536 Footnotes definitions are returned within \"\\footnotetext{}\"
1537 commands.
1539 This function is used within constructs that don't support
1540 \"\\footnote{}\" command (e.g., an item tag). In that case,
1541 \"\\footnotemark\" is used within the construct and the function
1542 just outside of it."
1543 (mapconcat
1544 (lambda (ref)
1545 (let ((def (org-export-get-footnote-definition ref info)))
1546 (format "\\footnotetext[%d]{%s%s}"
1547 (org-export-get-footnote-number ref info)
1548 (org-trim (org-latex--label def info t t))
1549 (org-trim (org-export-data def info)))))
1550 ;; Find every footnote reference in ELEMENT.
1551 (letrec ((all-refs nil)
1552 (search-refs
1553 (lambda (data)
1554 ;; Return a list of all footnote references never seen
1555 ;; before in DATA.
1556 (org-element-map data 'footnote-reference
1557 (lambda (ref)
1558 (when (org-export-footnote-first-reference-p ref info)
1559 (push ref all-refs)
1560 (when (eq (org-element-property :type ref) 'standard)
1561 (funcall search-refs
1562 (org-export-get-footnote-definition ref info)))))
1563 info)
1564 (reverse all-refs))))
1565 (funcall search-refs element))
1566 ""))
1568 (defun org-latex--translate (s info)
1569 "Translate string S according to specified language.
1570 INFO is a plist used as a communication channel."
1571 (org-export-translate s :latex info))
1573 (defun org-latex--format-spec (info)
1574 "Create a format-spec for document meta-data.
1575 INFO is a plist used as a communication channel."
1576 (let ((language (let ((lang (plist-get info :language)))
1577 (or (cdr (assoc-string lang org-latex-babel-language-alist t))
1578 (nth 1 (assoc-string lang org-latex-polyglossia-language-alist t))
1579 lang))))
1580 `((?a . ,(org-export-data (plist-get info :author) info))
1581 (?t . ,(org-export-data (plist-get info :title) info))
1582 (?k . ,(org-export-data (org-latex--wrap-latex-math-block
1583 (plist-get info :keywords) info)
1584 info))
1585 (?d . ,(org-export-data (org-latex--wrap-latex-math-block
1586 (plist-get info :description) info)
1587 info))
1588 (?c . ,(plist-get info :creator))
1589 (?l . ,language)
1590 (?L . ,(capitalize language))
1591 (?D . ,(org-export-get-date info)))))
1593 (defun org-latex--insert-compiler (info)
1594 "Insert LaTeX_compiler info into the document.
1595 INFO is a plist used as a communication channel."
1596 (let ((compiler (plist-get info :latex-compiler)))
1597 (and (org-string-nw-p org-latex-compiler-file-string)
1598 (member (or compiler "") org-latex-compilers)
1599 (format org-latex-compiler-file-string compiler))))
1602 ;;; Filters
1604 (defun org-latex-matrices-tree-filter (tree _backend info)
1605 (org-latex--wrap-latex-matrices tree info))
1607 (defun org-latex-math-block-tree-filter (tree _backend info)
1608 (org-latex--wrap-latex-math-block tree info))
1610 (defun org-latex-math-block-options-filter (info _backend)
1611 (dolist (prop '(:author :date :title) info)
1612 (plist-put info prop
1613 (org-latex--wrap-latex-math-block (plist-get info prop) info))))
1615 (defun org-latex-clean-invalid-line-breaks (data _backend _info)
1616 (replace-regexp-in-string
1617 "\\(\\end{[A-Za-z0-9*]+}\\|^\\)[ \t]*\\\\\\\\[ \t]*$" "\\1"
1618 data))
1621 ;;; Template
1623 ;;;###autoload
1624 (defun org-latex-make-preamble (info &optional template snippet?)
1625 "Return a formatted LaTeX preamble.
1626 INFO is a plist used as a communication channel. Optional
1627 argument TEMPLATE, when non-nil, is the header template string,
1628 as expected by `org-splice-latex-header'. When SNIPPET? is
1629 non-nil, only includes packages relevant to image generation, as
1630 specified in `org-latex-default-packages-alist' or
1631 `org-latex-packages-alist'."
1632 (let* ((class (plist-get info :latex-class))
1633 (class-template
1634 (or template
1635 (let* ((class-options (plist-get info :latex-class-options))
1636 (header (nth 1 (assoc class (plist-get info :latex-classes)))))
1637 (and (stringp header)
1638 (if (not class-options) header
1639 (replace-regexp-in-string
1640 "^[ \t]*\\\\documentclass\\(\\(\\[[^]]*\\]\\)?\\)"
1641 class-options header t nil 1))))
1642 (user-error "Unknown LaTeX class `%s'" class))))
1643 (org-latex-guess-polyglossia-language
1644 (org-latex-guess-babel-language
1645 (org-latex-guess-inputenc
1646 (org-element-normalize-string
1647 (org-splice-latex-header
1648 class-template
1649 (org-latex--remove-packages org-latex-default-packages-alist info)
1650 (org-latex--remove-packages org-latex-packages-alist info)
1651 snippet?
1652 (mapconcat #'org-element-normalize-string
1653 (list (plist-get info :latex-header)
1654 (and (not snippet?)
1655 (plist-get info :latex-header-extra)))
1656 ""))))
1657 info)
1658 info)))
1660 (defun org-latex-template (contents info)
1661 "Return complete document string after LaTeX conversion.
1662 CONTENTS is the transcoded contents string. INFO is a plist
1663 holding export options."
1664 (let ((title (org-export-data (plist-get info :title) info))
1665 (spec (org-latex--format-spec info)))
1666 (concat
1667 ;; Time-stamp.
1668 (and (plist-get info :time-stamp-file)
1669 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
1670 ;; LaTeX compiler.
1671 (org-latex--insert-compiler info)
1672 ;; Document class and packages.
1673 (org-latex-make-preamble info)
1674 ;; Possibly limit depth for headline numbering.
1675 (let ((sec-num (plist-get info :section-numbers)))
1676 (when (integerp sec-num)
1677 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
1678 ;; Author.
1679 (let ((author (and (plist-get info :with-author)
1680 (let ((auth (plist-get info :author)))
1681 (and auth (org-export-data auth info)))))
1682 (email (and (plist-get info :with-email)
1683 (org-export-data (plist-get info :email) info))))
1684 (cond ((and author email (not (string= "" email)))
1685 (format "\\author{%s\\thanks{%s}}\n" author email))
1686 ((or author email) (format "\\author{%s}\n" (or author email)))))
1687 ;; Date.
1688 (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
1689 (format "\\date{%s}\n" (org-export-data date info)))
1690 ;; Title and subtitle.
1691 (let* ((subtitle (plist-get info :subtitle))
1692 (formatted-subtitle
1693 (when subtitle
1694 (format (plist-get info :latex-subtitle-format)
1695 (org-export-data subtitle info))))
1696 (separate (plist-get info :latex-subtitle-separate)))
1697 (concat
1698 (format "\\title{%s%s}\n" title
1699 (if separate "" (or formatted-subtitle "")))
1700 (when (and separate subtitle)
1701 (concat formatted-subtitle "\n"))))
1702 ;; Hyperref options.
1703 (let ((template (plist-get info :latex-hyperref-template)))
1704 (and (stringp template)
1705 (format-spec template spec)))
1706 ;; Document start.
1707 "\\begin{document}\n\n"
1708 ;; Title command.
1709 (let* ((title-command (plist-get info :latex-title-command))
1710 (command (and (stringp title-command)
1711 (format-spec title-command spec))))
1712 (org-element-normalize-string
1713 (cond ((not (plist-get info :with-title)) nil)
1714 ((string= "" title) nil)
1715 ((not (stringp command)) nil)
1716 ((string-match "\\(?:[^%]\\|^\\)%s" command)
1717 (format command title))
1718 (t command))))
1719 ;; Table of contents.
1720 (let ((depth (plist-get info :with-toc)))
1721 (when depth
1722 (concat (when (integerp depth)
1723 (format "\\setcounter{tocdepth}{%d}\n" depth))
1724 (plist-get info :latex-toc-command))))
1725 ;; Document's body.
1726 contents
1727 ;; Creator.
1728 (and (plist-get info :with-creator)
1729 (concat (plist-get info :creator) "\n"))
1730 ;; Document end.
1731 "\\end{document}")))
1735 ;;; Transcode Functions
1737 ;;;; Bold
1739 (defun org-latex-bold (_bold contents info)
1740 "Transcode BOLD from Org to LaTeX.
1741 CONTENTS is the text with bold markup. INFO is a plist holding
1742 contextual information."
1743 (org-latex--text-markup contents 'bold info))
1746 ;;;; Center Block
1748 (defun org-latex-center-block (center-block contents info)
1749 "Transcode a CENTER-BLOCK element from Org to LaTeX.
1750 CONTENTS holds the contents of the center block. INFO is a plist
1751 holding contextual information."
1752 (org-latex--wrap-label
1753 center-block (format "\\begin{center}\n%s\\end{center}" contents) info))
1756 ;;;; Clock
1758 (defun org-latex-clock (clock _contents info)
1759 "Transcode a CLOCK element from Org to LaTeX.
1760 CONTENTS is nil. INFO is a plist holding contextual
1761 information."
1762 (concat
1763 "\\noindent"
1764 (format "\\textbf{%s} " org-clock-string)
1765 (format (plist-get info :latex-inactive-timestamp-format)
1766 (concat (org-timestamp-translate (org-element-property :value clock))
1767 (let ((time (org-element-property :duration clock)))
1768 (and time (format " (%s)" time)))))
1769 "\\\\"))
1772 ;;;; Code
1774 (defun org-latex-code (code _contents info)
1775 "Transcode a CODE object from Org to LaTeX.
1776 CONTENTS is nil. INFO is a plist used as a communication
1777 channel."
1778 (org-latex--text-markup (org-element-property :value code) 'code info))
1781 ;;;; Drawer
1783 (defun org-latex-drawer (drawer contents info)
1784 "Transcode a DRAWER element from Org to LaTeX.
1785 CONTENTS holds the contents of the block. INFO is a plist
1786 holding contextual information."
1787 (let* ((name (org-element-property :drawer-name drawer))
1788 (output (funcall (plist-get info :latex-format-drawer-function)
1789 name contents)))
1790 (org-latex--wrap-label drawer output info)))
1793 ;;;; Dynamic Block
1795 (defun org-latex-dynamic-block (dynamic-block contents info)
1796 "Transcode a DYNAMIC-BLOCK element from Org to LaTeX.
1797 CONTENTS holds the contents of the block. INFO is a plist
1798 holding contextual information. See `org-export-data'."
1799 (org-latex--wrap-label dynamic-block contents info))
1802 ;;;; Entity
1804 (defun org-latex-entity (entity _contents _info)
1805 "Transcode an ENTITY object from Org to LaTeX.
1806 CONTENTS are the definition itself. INFO is a plist holding
1807 contextual information."
1808 (org-element-property :latex entity))
1811 ;;;; Example Block
1813 (defun org-latex-example-block (example-block _contents info)
1814 "Transcode an EXAMPLE-BLOCK element from Org to LaTeX.
1815 CONTENTS is nil. INFO is a plist holding contextual
1816 information."
1817 (when (org-string-nw-p (org-element-property :value example-block))
1818 (let ((environment (or (org-export-read-attribute
1819 :attr_latex example-block :environment)
1820 "verbatim")))
1821 (org-latex--wrap-label
1822 example-block
1823 (format "\\begin{%s}\n%s\\end{%s}"
1824 environment
1825 (org-export-format-code-default example-block info)
1826 environment)
1827 info))))
1830 ;;;; Export Block
1832 (defun org-latex-export-block (export-block _contents _info)
1833 "Transcode a EXPORT-BLOCK element from Org to LaTeX.
1834 CONTENTS is nil. INFO is a plist holding contextual information."
1835 (when (member (org-element-property :type export-block) '("LATEX" "TEX"))
1836 (org-remove-indentation (org-element-property :value export-block))))
1839 ;;;; Export Snippet
1841 (defun org-latex-export-snippet (export-snippet _contents _info)
1842 "Transcode a EXPORT-SNIPPET object from Org to LaTeX.
1843 CONTENTS is nil. INFO is a plist holding contextual information."
1844 (when (eq (org-export-snippet-backend export-snippet) 'latex)
1845 (org-element-property :value export-snippet)))
1848 ;;;; Fixed Width
1850 (defun org-latex-fixed-width (fixed-width _contents info)
1851 "Transcode a FIXED-WIDTH element from Org to LaTeX.
1852 CONTENTS is nil. INFO is a plist holding contextual information."
1853 (org-latex--wrap-label
1854 fixed-width
1855 (format "\\begin{verbatim}\n%s\\end{verbatim}"
1856 (org-remove-indentation
1857 (org-element-property :value fixed-width)))
1858 info))
1861 ;;;; Footnote Reference
1863 (defun org-latex-footnote-reference (footnote-reference _contents info)
1864 "Transcode a FOOTNOTE-REFERENCE element from Org to LaTeX.
1865 CONTENTS is nil. INFO is a plist holding contextual information."
1866 (let ((label (org-element-property :label footnote-reference)))
1867 (concat
1868 ;; Insert separator between two footnotes in a row.
1869 (let ((prev (org-export-get-previous-element footnote-reference info)))
1870 (when (eq (org-element-type prev) 'footnote-reference)
1871 (plist-get info :latex-footnote-separator)))
1872 (cond
1873 ;; Use `:latex-footnote-defined-format' if the footnote has
1874 ;; already been defined.
1875 ((not (org-export-footnote-first-reference-p footnote-reference info))
1876 (format (plist-get info :latex-footnote-defined-format)
1877 (org-latex--label
1878 (org-export-get-footnote-definition footnote-reference info)
1879 info t)))
1880 ;; Use \footnotemark if reference is within another footnote
1881 ;; reference, footnote definition or table cell.
1882 ((org-element-lineage footnote-reference
1883 '(footnote-reference footnote-definition table-cell))
1884 "\\footnotemark")
1885 ;; Otherwise, define it with \footnote command.
1887 (let ((def (org-export-get-footnote-definition footnote-reference info)))
1888 (concat
1889 (format "\\footnote{%s%s}" (org-trim (org-export-data def info))
1890 ;; Only insert a \label if there exist another
1891 ;; reference to def.
1892 (cond ((not label) "")
1893 ((org-element-map (plist-get info :parse-tree) 'footnote-reference
1894 (lambda (f)
1895 (and (not (eq f footnote-reference))
1896 (equal (org-element-property :label f) label)
1897 (org-trim (org-latex--label def info t t))))
1898 info t))
1899 (t "")))
1900 ;; Retrieve all footnote references within the footnote and
1901 ;; add their definition after it, since LaTeX doesn't support
1902 ;; them inside.
1903 (org-latex--delayed-footnotes-definitions def info))))))))
1906 ;;;; Headline
1908 (defun org-latex-headline (headline contents info)
1909 "Transcode a HEADLINE element from Org to LaTeX.
1910 CONTENTS holds the contents of the headline. INFO is a plist
1911 holding contextual information."
1912 (unless (org-element-property :footnote-section-p headline)
1913 (let* ((class (plist-get info :latex-class))
1914 (level (org-export-get-relative-level headline info))
1915 (numberedp (org-export-numbered-headline-p headline info))
1916 (class-sectioning (assoc class (plist-get info :latex-classes)))
1917 ;; Section formatting will set two placeholders: one for
1918 ;; the title and the other for the contents.
1919 (section-fmt
1920 (let ((sec (if (functionp (nth 2 class-sectioning))
1921 (funcall (nth 2 class-sectioning) level numberedp)
1922 (nth (1+ level) class-sectioning))))
1923 (cond
1924 ;; No section available for that LEVEL.
1925 ((not sec) nil)
1926 ;; Section format directly returned by a function. Add
1927 ;; placeholder for contents.
1928 ((stringp sec) (concat sec "\n%s"))
1929 ;; (numbered-section . unnumbered-section)
1930 ((not (consp (cdr sec)))
1931 (concat (funcall (if numberedp #'car #'cdr) sec) "\n%s"))
1932 ;; (numbered-open numbered-close)
1933 ((= (length sec) 2)
1934 (when numberedp (concat (car sec) "\n%s" (nth 1 sec))))
1935 ;; (num-in num-out no-num-in no-num-out)
1936 ((= (length sec) 4)
1937 (if numberedp (concat (car sec) "\n%s" (nth 1 sec))
1938 (concat (nth 2 sec) "\n%s" (nth 3 sec)))))))
1939 ;; Create a temporary export back-end that hard-codes
1940 ;; "\underline" within "\section" and alike.
1941 (section-back-end
1942 (org-export-create-backend
1943 :parent 'latex
1944 :transcoders
1945 '((underline . (lambda (o c i) (format "\\underline{%s}" c))))))
1946 (text
1947 (org-export-data-with-backend
1948 (org-element-property :title headline) section-back-end info))
1949 (todo
1950 (and (plist-get info :with-todo-keywords)
1951 (let ((todo (org-element-property :todo-keyword headline)))
1952 (and todo (org-export-data todo info)))))
1953 (todo-type (and todo (org-element-property :todo-type headline)))
1954 (tags (and (plist-get info :with-tags)
1955 (org-export-get-tags headline info)))
1956 (priority (and (plist-get info :with-priority)
1957 (org-element-property :priority headline)))
1958 ;; Create the headline text along with a no-tag version.
1959 ;; The latter is required to remove tags from toc.
1960 (full-text (funcall (plist-get info :latex-format-headline-function)
1961 todo todo-type priority text tags info))
1962 ;; Associate \label to the headline for internal links.
1963 (headline-label (org-latex--label headline info t t))
1964 (pre-blanks
1965 (make-string (org-element-property :pre-blank headline) ?\n)))
1966 (if (or (not section-fmt) (org-export-low-level-p headline info))
1967 ;; This is a deep sub-tree: export it as a list item. Also
1968 ;; export as items headlines for which no section format has
1969 ;; been found.
1970 (let ((low-level-body
1971 (concat
1972 ;; If headline is the first sibling, start a list.
1973 (when (org-export-first-sibling-p headline info)
1974 (format "\\begin{%s}\n" (if numberedp 'enumerate 'itemize)))
1975 ;; Itemize headline
1976 "\\item"
1977 (and full-text
1978 (string-match-p "\\`[ \t]*\\[" full-text)
1979 "\\relax")
1980 " " full-text "\n"
1981 headline-label
1982 pre-blanks
1983 contents)))
1984 ;; If headline is not the last sibling simply return
1985 ;; LOW-LEVEL-BODY. Otherwise, also close the list, before
1986 ;; any blank line.
1987 (if (not (org-export-last-sibling-p headline info)) low-level-body
1988 (replace-regexp-in-string
1989 "[ \t\n]*\\'"
1990 (format "\n\\\\end{%s}" (if numberedp 'enumerate 'itemize))
1991 low-level-body)))
1992 ;; This is a standard headline. Export it as a section. Add
1993 ;; an alternative heading when possible, and when this is not
1994 ;; identical to the usual heading.
1995 (let ((opt-title
1996 (funcall (plist-get info :latex-format-headline-function)
1997 todo todo-type priority
1998 (org-export-data-with-backend
1999 (org-export-get-alt-title headline info)
2000 section-back-end info)
2001 (and (eq (plist-get info :with-tags) t) tags)
2002 info))
2003 ;; Maybe end local TOC (see `org-latex-keyword').
2004 (contents
2005 (concat
2006 contents
2007 (let ((case-fold-search t)
2008 (section
2009 (let ((first (car (org-element-contents headline))))
2010 (and (eq (org-element-type first) 'section) first))))
2011 (org-element-map section 'keyword
2012 (lambda (k)
2013 (and (equal (org-element-property :key k) "TOC")
2014 (let ((v (org-element-property :value k)))
2015 (and (string-match-p "\\<headlines\\>" v)
2016 (string-match-p "\\<local\\>" v)
2017 (format "\\stopcontents[level-%d]" level)))))
2018 info t)))))
2019 (if (and opt-title
2020 (not (equal opt-title full-text))
2021 (string-match "\\`\\\\\\(.+?\\){" section-fmt))
2022 (format (replace-match "\\1[%s]" nil nil section-fmt 1)
2023 ;; Replace square brackets with parenthesis
2024 ;; since square brackets are not supported in
2025 ;; optional arguments.
2026 (replace-regexp-in-string
2027 "\\[" "(" (replace-regexp-in-string "\\]" ")" opt-title))
2028 full-text
2029 (concat headline-label pre-blanks contents))
2030 ;; Impossible to add an alternative heading. Fallback to
2031 ;; regular sectioning format string.
2032 (format section-fmt full-text
2033 (concat headline-label pre-blanks contents))))))))
2035 (defun org-latex-format-headline-default-function
2036 (todo _todo-type priority text tags _info)
2037 "Default format function for a headline.
2038 See `org-latex-format-headline-function' for details."
2039 (concat
2040 (and todo (format "{\\bfseries\\sffamily %s} " todo))
2041 (and priority (format "\\framebox{\\#%c} " priority))
2042 text
2043 (and tags
2044 (format "\\hfill{}\\textsc{%s}"
2045 (mapconcat #'org-latex--protect-text tags ":")))))
2048 ;;;; Horizontal Rule
2050 (defun org-latex-horizontal-rule (horizontal-rule _contents info)
2051 "Transcode an HORIZONTAL-RULE object from Org to LaTeX.
2052 CONTENTS is nil. INFO is a plist holding contextual information."
2053 (let ((attr (org-export-read-attribute :attr_latex horizontal-rule))
2054 (prev (org-export-get-previous-element horizontal-rule info)))
2055 (concat
2056 ;; Make sure the rule doesn't start at the end of the current
2057 ;; line by separating it with a blank line from previous element.
2058 (when (and prev
2059 (let ((prev-blank (org-element-property :post-blank prev)))
2060 (or (not prev-blank) (zerop prev-blank))))
2061 "\n")
2062 (org-latex--wrap-label
2063 horizontal-rule
2064 (format "\\noindent\\rule{%s}{%s}"
2065 (or (plist-get attr :width) "\\textwidth")
2066 (or (plist-get attr :thickness) "0.5pt"))
2067 info))))
2070 ;;;; Inline Src Block
2072 (defun org-latex-inline-src-block (inline-src-block _contents info)
2073 "Transcode an INLINE-SRC-BLOCK element from Org to LaTeX.
2074 CONTENTS holds the contents of the item. INFO is a plist holding
2075 contextual information."
2076 (let* ((code (org-element-property :value inline-src-block))
2077 (separator (org-latex--find-verb-separator code)))
2078 (cl-case (plist-get info :latex-listings)
2079 ;; Do not use a special package: transcode it verbatim.
2080 ((nil) (format "\\texttt{%s}" (org-latex--text-markup code 'code info)))
2081 ;; Use minted package.
2082 (minted
2083 (let* ((org-lang (org-element-property :language inline-src-block))
2084 (mint-lang (or (cadr (assq (intern org-lang)
2085 (plist-get info :latex-minted-langs)))
2086 (downcase org-lang)))
2087 (options (org-latex--make-option-string
2088 (plist-get info :latex-minted-options))))
2089 (format "\\mintinline%s{%s}{%s}"
2090 (if (string= options "") "" (format "[%s]" options))
2091 mint-lang
2092 code)))
2093 ;; Use listings package.
2094 (otherwise
2095 ;; Maybe translate language's name.
2096 (let* ((org-lang (org-element-property :language inline-src-block))
2097 (lst-lang (or (cadr (assq (intern org-lang)
2098 (plist-get info :latex-listings-langs)))
2099 org-lang))
2100 (options (org-latex--make-option-string
2101 (append (plist-get info :latex-listings-options)
2102 `(("language" ,lst-lang))))))
2103 (concat (format "\\lstinline[%s]" options)
2104 separator code separator))))))
2107 ;;;; Inlinetask
2109 (defun org-latex-inlinetask (inlinetask contents info)
2110 "Transcode an INLINETASK element from Org to LaTeX.
2111 CONTENTS holds the contents of the block. INFO is a plist
2112 holding contextual information."
2113 (let ((title (org-export-data (org-element-property :title inlinetask) info))
2114 (todo (and (plist-get info :with-todo-keywords)
2115 (let ((todo (org-element-property :todo-keyword inlinetask)))
2116 (and todo (org-export-data todo info)))))
2117 (todo-type (org-element-property :todo-type inlinetask))
2118 (tags (and (plist-get info :with-tags)
2119 (org-export-get-tags inlinetask info)))
2120 (priority (and (plist-get info :with-priority)
2121 (org-element-property :priority inlinetask)))
2122 (contents (concat (org-latex--label inlinetask info) contents)))
2123 (funcall (plist-get info :latex-format-inlinetask-function)
2124 todo todo-type priority title tags contents info)))
2126 (defun org-latex-format-inlinetask-default-function
2127 (todo _todo-type priority title tags contents _info)
2128 "Default format function for inlinetasks.
2129 See `org-latex-format-inlinetask-function' for details."
2130 (let ((full-title
2131 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
2132 (when priority (format "\\framebox{\\#%c} " priority))
2133 title
2134 (when tags
2135 (format "\\hfill{}\\textsc{:%s:}"
2136 (mapconcat #'org-latex--protect-text tags ":"))))))
2137 (concat "\\begin{center}\n"
2138 "\\fbox{\n"
2139 "\\begin{minipage}[c]{.6\\textwidth}\n"
2140 full-title "\n\n"
2141 (and (org-string-nw-p contents)
2142 (concat "\\rule[.8em]{\\textwidth}{2pt}\n\n" contents))
2143 "\\end{minipage}\n"
2144 "}\n"
2145 "\\end{center}")))
2148 ;;;; Italic
2150 (defun org-latex-italic (_italic contents info)
2151 "Transcode ITALIC from Org to LaTeX.
2152 CONTENTS is the text with italic markup. INFO is a plist holding
2153 contextual information."
2154 (org-latex--text-markup contents 'italic info))
2157 ;;;; Item
2159 (defun org-latex-item (item contents info)
2160 "Transcode an ITEM element from Org to LaTeX.
2161 CONTENTS holds the contents of the item. INFO is a plist holding
2162 contextual information."
2163 (let* ((counter
2164 (let ((count (org-element-property :counter item))
2165 (level
2166 ;; Determine level of current item to determine the
2167 ;; correct LaTeX counter to use (enumi, enumii...).
2168 (let ((parent item) (level 0))
2169 (while (memq (org-element-type
2170 (setq parent (org-export-get-parent parent)))
2171 '(plain-list item))
2172 (when (and (eq (org-element-type parent) 'plain-list)
2173 (eq (org-element-property :type parent)
2174 'ordered))
2175 (cl-incf level)))
2176 level)))
2177 (and count
2178 (< level 5)
2179 (format "\\setcounter{enum%s}{%s}\n"
2180 (nth (1- level) '("i" "ii" "iii" "iv"))
2181 (1- count)))))
2182 (checkbox (cl-case (org-element-property :checkbox item)
2183 (on "$\\boxtimes$")
2184 (off "$\\square$")
2185 (trans "$\\boxminus$")))
2186 (tag (let ((tag (org-element-property :tag item)))
2187 (and tag (org-export-data tag info)))))
2188 (concat counter
2189 "\\item"
2190 (cond
2191 ((and checkbox tag) (format "[{%s %s}] " checkbox tag))
2192 ((or checkbox tag) (format "[{%s}] " (or checkbox tag)))
2193 ;; Without a tag or a check-box, if CONTENTS starts with
2194 ;; an opening square bracket, add "\relax" to "\item",
2195 ;; unless the brackets comes from an initial export
2196 ;; snippet (i.e. it is inserted willingly by the user).
2197 ((and contents
2198 (string-match-p "\\`[ \t]*\\[" contents)
2199 (not (let ((e (car (org-element-contents item))))
2200 (and (eq (org-element-type e) 'paragraph)
2201 (let ((o (car (org-element-contents e))))
2202 (and (eq (org-element-type o) 'export-snippet)
2203 (eq (org-export-snippet-backend o)
2204 'latex)))))))
2205 "\\relax ")
2206 (t " "))
2207 (and contents (org-trim contents))
2208 ;; If there are footnotes references in tag, be sure to
2209 ;; add their definition at the end of the item. This
2210 ;; workaround is necessary since "\footnote{}" command is
2211 ;; not supported in tags.
2212 (and tag
2213 (org-latex--delayed-footnotes-definitions
2214 (org-element-property :tag item) info)))))
2217 ;;;; Keyword
2219 (defun org-latex-keyword (keyword _contents info)
2220 "Transcode a KEYWORD element from Org to LaTeX.
2221 CONTENTS is nil. INFO is a plist holding contextual information."
2222 (let ((key (org-element-property :key keyword))
2223 (value (org-element-property :value keyword)))
2224 (cond
2225 ((string= key "LATEX") value)
2226 ((string= key "INDEX") (format "\\index{%s}" value))
2227 ((string= key "TOC")
2228 (let ((case-fold-search t))
2229 (cond
2230 ((string-match-p "\\<headlines\\>" value)
2231 (let* ((localp (string-match-p "\\<local\\>" value))
2232 (parent (org-element-lineage keyword '(headline)))
2233 (level (if (not (and localp parent)) 0
2234 (org-export-get-relative-level parent info)))
2235 (depth
2236 (and (string-match "\\<[0-9]+\\>" value)
2237 (format
2238 "\\setcounter{tocdepth}{%d}"
2239 (+ (string-to-number (match-string 0 value)) level)))))
2240 (if (and localp parent)
2241 ;; Start local TOC, assuming package "titletoc" is
2242 ;; required.
2243 (format "\\startcontents[level-%d]
2244 \\printcontents[level-%d]{}{0}{%s}"
2245 level level (or depth ""))
2246 (concat depth (and depth "\n") "\\tableofcontents"))))
2247 ((string-match-p "\\<tables\\>" value) "\\listoftables")
2248 ((string-match-p "\\<listings\\>" value)
2249 (cl-case (plist-get info :latex-listings)
2250 ((nil) "\\listoffigures")
2251 (minted "\\listoflistings")
2252 (otherwise "\\lstlistoflistings")))))))))
2255 ;;;; Latex Environment
2257 (defun org-latex--environment-type (latex-environment)
2258 "Return the TYPE of LATEX-ENVIRONMENT.
2260 The TYPE is determined from the actual latex environment, and
2261 could be a member of `org-latex-caption-above' or `math'."
2262 (let* ((latex-begin-re "\\\\begin{\\([A-Za-z0-9*]+\\)}")
2263 (value (org-remove-indentation
2264 (org-element-property :value latex-environment)))
2265 (env (or (and (string-match latex-begin-re value)
2266 (match-string 1 value))
2267 "")))
2268 (cond
2269 ((string-match-p org-latex-math-environments-re value) 'math)
2270 ((string-match-p
2271 (eval-when-compile
2272 (regexp-opt '("table" "longtable" "tabular" "tabu" "longtabu")))
2273 env)
2274 'table)
2275 ((string-match-p "figure" env) 'image)
2276 ((string-match-p
2277 (eval-when-compile
2278 (regexp-opt '("lstlisting" "listing" "verbatim" "minted")))
2279 env)
2280 'src-block)
2281 (t 'special-block))))
2283 (defun org-latex-latex-environment (latex-environment _contents info)
2284 "Transcode a LATEX-ENVIRONMENT element from Org to LaTeX.
2285 CONTENTS is nil. INFO is a plist holding contextual information."
2286 (when (plist-get info :with-latex)
2287 (let* ((value (org-remove-indentation
2288 (org-element-property :value latex-environment)))
2289 (type (org-latex--environment-type latex-environment))
2290 (caption (if (eq type 'math)
2291 (org-latex--label latex-environment info nil t)
2292 (org-latex--caption/label-string latex-environment info)))
2293 (caption-above-p
2294 (memq type (append (plist-get info :latex-caption-above) '(math)))))
2295 (if (not (or (org-element-property :name latex-environment)
2296 (org-element-property :caption latex-environment)))
2297 value
2298 ;; Environment is labeled: label must be within the environment
2299 ;; (otherwise, a reference pointing to that element will count
2300 ;; the section instead). Also insert caption if `latex-environment'
2301 ;; is not a math environment.
2302 (with-temp-buffer
2303 (insert value)
2304 (if caption-above-p
2305 (progn
2306 (goto-char (point-min))
2307 (forward-line))
2308 (goto-char (point-max))
2309 (forward-line -1))
2310 (insert caption)
2311 (buffer-string))))))
2313 ;;;; Latex Fragment
2315 (defun org-latex-latex-fragment (latex-fragment _contents _info)
2316 "Transcode a LATEX-FRAGMENT object from Org to LaTeX.
2317 CONTENTS is nil. INFO is a plist holding contextual information."
2318 (let ((value (org-element-property :value latex-fragment)))
2319 ;; Trim math markers since the fragment is enclosed within
2320 ;; a latex-math-block object anyway.
2321 (cond ((string-match-p "\\`\\$[^$]" value) (substring value 1 -1))
2322 ((string-prefix-p "\\(" value) (substring value 2 -2))
2323 (t value))))
2326 ;;;; Line Break
2328 (defun org-latex-line-break (_line-break _contents _info)
2329 "Transcode a LINE-BREAK object from Org to LaTeX.
2330 CONTENTS is nil. INFO is a plist holding contextual information."
2331 "\\\\\n")
2334 ;;;; Link
2336 (defun org-latex-image-link-filter (data _backend info)
2337 (org-export-insert-image-links data info org-latex-inline-image-rules))
2339 (defun org-latex--inline-image (link info)
2340 "Return LaTeX code for an inline image.
2341 LINK is the link pointing to the inline image. INFO is a plist
2342 used as a communication channel."
2343 (let* ((parent (org-export-get-parent-element link))
2344 (path (let ((raw-path (org-element-property :path link)))
2345 (if (not (file-name-absolute-p raw-path)) raw-path
2346 (expand-file-name raw-path))))
2347 (filetype (file-name-extension path))
2348 (caption (org-latex--caption/label-string parent info))
2349 (caption-above-p (org-latex--caption-above-p link info))
2350 ;; Retrieve latex attributes from the element around.
2351 (attr (org-export-read-attribute :attr_latex parent))
2352 (float (let ((float (plist-get attr :float)))
2353 (cond ((string= float "wrap") 'wrap)
2354 ((string= float "sideways") 'sideways)
2355 ((string= float "multicolumn") 'multicolumn)
2356 ((and (plist-member attr :float) (not float)) 'nonfloat)
2357 ((or float
2358 (org-element-property :caption parent)
2359 (org-string-nw-p (plist-get attr :caption)))
2360 'figure)
2361 (t 'nonfloat))))
2362 (placement
2363 (let ((place (plist-get attr :placement)))
2364 (cond
2365 (place (format "%s" place))
2366 ((eq float 'wrap) "{l}{0.5\\textwidth}")
2367 ((eq float 'figure)
2368 (format "[%s]" (plist-get info :latex-default-figure-position)))
2369 (t ""))))
2370 (center
2371 (if (plist-member attr :center) (plist-get attr :center)
2372 (plist-get info :latex-images-centered)))
2373 (comment-include (if (plist-get attr :comment-include) "%" ""))
2374 ;; It is possible to specify width and height in the
2375 ;; ATTR_LATEX line, and also via default variables.
2376 (width (cond ((plist-get attr :width))
2377 ((plist-get attr :height) "")
2378 ((eq float 'wrap) "0.48\\textwidth")
2379 (t (plist-get info :latex-image-default-width))))
2380 (height (cond ((plist-get attr :height))
2381 ((or (plist-get attr :width)
2382 (memq float '(figure wrap))) "")
2383 (t (plist-get info :latex-image-default-height))))
2384 (options (let ((opt (or (plist-get attr :options)
2385 (plist-get info :latex-image-default-option))))
2386 (if (not (string-match "\\`\\[\\(.*\\)\\]\\'" opt)) opt
2387 (match-string 1 opt))))
2388 image-code)
2389 (if (member filetype '("tikz" "pgf"))
2390 ;; For tikz images:
2391 ;; - use \input to read in image file.
2392 ;; - if options are present, wrap in a tikzpicture environment.
2393 ;; - if width or height are present, use \resizebox to change
2394 ;; the image size.
2395 (progn
2396 (setq image-code (format "\\input{%s}" path))
2397 (when (org-string-nw-p options)
2398 (setq image-code
2399 (format "\\begin{tikzpicture}[%s]\n%s\n\\end{tikzpicture}"
2400 options
2401 image-code)))
2402 (when (or (org-string-nw-p width) (org-string-nw-p height))
2403 (setq image-code (format "\\resizebox{%s}{%s}{%s}"
2404 (if (org-string-nw-p width) width "!")
2405 (if (org-string-nw-p height) height "!")
2406 image-code))))
2407 ;; For other images:
2408 ;; - add width and height to options.
2409 ;; - include the image with \includegraphics.
2410 (when (org-string-nw-p width)
2411 (setq options (concat options ",width=" width)))
2412 (when (org-string-nw-p height)
2413 (setq options (concat options ",height=" height)))
2414 (let ((search-option (org-element-property :search-option link)))
2415 (when (and search-option
2416 (equal filetype "pdf")
2417 (string-match-p "\\`[0-9]+\\'" search-option)
2418 (not (string-match-p "page=" options)))
2419 (setq options (concat options ",page=" search-option))))
2420 (setq image-code
2421 (format "\\includegraphics%s{%s}"
2422 (cond ((not (org-string-nw-p options)) "")
2423 ((string-prefix-p "," options)
2424 (format "[%s]" (substring options 1)))
2425 (t (format "[%s]" options)))
2426 path))
2427 (when (equal filetype "svg")
2428 (setq image-code (replace-regexp-in-string "^\\\\includegraphics"
2429 "\\includesvg"
2430 image-code
2431 nil t))
2432 (setq image-code (replace-regexp-in-string "\\.svg}"
2434 image-code
2435 nil t))))
2436 ;; Return proper string, depending on FLOAT.
2437 (pcase float
2438 (`wrap (format "\\begin{wrapfigure}%s
2439 %s%s
2440 %s%s
2441 %s\\end{wrapfigure}"
2442 placement
2443 (if caption-above-p caption "")
2444 (if center "\\centering" "")
2445 comment-include image-code
2446 (if caption-above-p "" caption)))
2447 (`sideways (format "\\begin{sidewaysfigure}
2448 %s%s
2449 %s%s
2450 %s\\end{sidewaysfigure}"
2451 (if caption-above-p caption "")
2452 (if center "\\centering" "")
2453 comment-include image-code
2454 (if caption-above-p "" caption)))
2455 (`multicolumn (format "\\begin{figure*}%s
2456 %s%s
2457 %s%s
2458 %s\\end{figure*}"
2459 placement
2460 (if caption-above-p caption "")
2461 (if center "\\centering" "")
2462 comment-include image-code
2463 (if caption-above-p "" caption)))
2464 (`figure (format "\\begin{figure}%s
2465 %s%s
2466 %s%s
2467 %s\\end{figure}"
2468 placement
2469 (if caption-above-p caption "")
2470 (if center "\\centering" "")
2471 comment-include image-code
2472 (if caption-above-p "" caption)))
2473 ((guard center)
2474 (format "\\begin{center}
2475 %s%s
2476 %s\\end{center}"
2477 (if caption-above-p caption "")
2478 image-code
2479 (if caption-above-p "" caption)))
2481 (concat (if caption-above-p caption "")
2482 image-code
2483 (if caption-above-p caption ""))))))
2485 (defun org-latex-link (link desc info)
2486 "Transcode a LINK object from Org to LaTeX.
2488 DESC is the description part of the link, or the empty string.
2489 INFO is a plist holding contextual information. See
2490 `org-export-data'."
2491 (let* ((type (org-element-property :type link))
2492 (raw-path (org-element-property :path link))
2493 ;; Ensure DESC really exists, or set it to nil.
2494 (desc (and (not (string= desc "")) desc))
2495 (imagep (org-export-inline-image-p
2496 link (plist-get info :latex-inline-image-rules)))
2497 (path (org-latex--protect-text
2498 (cond ((member type '("http" "https" "ftp" "mailto" "doi"))
2499 (concat type ":" raw-path))
2500 ((string= type "file") (org-export-file-uri raw-path))
2501 (t raw-path)))))
2502 (cond
2503 ;; Link type is handled by a special function.
2504 ((org-export-custom-protocol-maybe link desc 'latex))
2505 ;; Image file.
2506 (imagep (org-latex--inline-image link info))
2507 ;; Radio link: Transcode target's contents and use them as link's
2508 ;; description.
2509 ((string= type "radio")
2510 (let ((destination (org-export-resolve-radio-link link info)))
2511 (if (not destination) desc
2512 (format "\\hyperref[%s]{%s}"
2513 (org-export-get-reference destination info)
2514 desc))))
2515 ;; Links pointing to a headline: Find destination and build
2516 ;; appropriate referencing command.
2517 ((member type '("custom-id" "fuzzy" "id"))
2518 (let ((destination (if (string= type "fuzzy")
2519 (org-export-resolve-fuzzy-link link info)
2520 (org-export-resolve-id-link link info))))
2521 (cl-case (org-element-type destination)
2522 ;; Id link points to an external file.
2523 (plain-text
2524 (if desc (format "\\href{%s}{%s}" destination desc)
2525 (format "\\url{%s}" destination)))
2526 ;; Fuzzy link points nowhere.
2527 ((nil)
2528 (format (plist-get info :latex-link-with-unknown-path-format)
2529 (or desc
2530 (org-export-data
2531 (org-element-property :raw-link link) info))))
2532 ;; LINK points to a headline. If headlines are numbered
2533 ;; and the link has no description, display headline's
2534 ;; number. Otherwise, display description or headline's
2535 ;; title.
2536 (headline
2537 (let ((label (org-latex--label destination info t)))
2538 (if (and (not desc)
2539 (org-export-numbered-headline-p destination info))
2540 (format "\\ref{%s}" label)
2541 (format "\\hyperref[%s]{%s}" label
2542 (or desc
2543 (org-export-data
2544 (org-element-property :title destination) info))))))
2545 ;; Fuzzy link points to a target. Do as above.
2546 (otherwise
2547 (let ((ref (org-latex--label destination info t)))
2548 (if (not desc) (format "\\ref{%s}" ref)
2549 (format "\\hyperref[%s]{%s}" ref desc)))))))
2550 ;; Coderef: replace link with the reference name or the
2551 ;; equivalent line number.
2552 ((string= type "coderef")
2553 (format (org-export-get-coderef-format path desc)
2554 (org-export-resolve-coderef path info)))
2555 ;; External link with a description part.
2556 ((and path desc) (format "\\href{%s}{%s}" path desc))
2557 ;; External link without a description part.
2558 (path (format "\\url{%s}" path))
2559 ;; No path, only description. Try to do something useful.
2560 (t (format (plist-get info :latex-link-with-unknown-path-format) desc)))))
2563 ;;;; Node Property
2565 (defun org-latex-node-property (node-property _contents _info)
2566 "Transcode a NODE-PROPERTY element from Org to LaTeX.
2567 CONTENTS is nil. INFO is a plist holding contextual
2568 information."
2569 (format "%s:%s"
2570 (org-element-property :key node-property)
2571 (let ((value (org-element-property :value node-property)))
2572 (if value (concat " " value) ""))))
2575 ;;;; Paragraph
2577 (defun org-latex-paragraph (_paragraph contents _info)
2578 "Transcode a PARAGRAPH element from Org to LaTeX.
2579 CONTENTS is the contents of the paragraph, as a string. INFO is
2580 the plist used as a communication channel."
2581 contents)
2584 ;;;; Plain List
2586 (defun org-latex-plain-list (plain-list contents info)
2587 "Transcode a PLAIN-LIST element from Org to LaTeX.
2588 CONTENTS is the contents of the list. INFO is a plist holding
2589 contextual information."
2590 (let* ((type (org-element-property :type plain-list))
2591 (attr (org-export-read-attribute :attr_latex plain-list))
2592 (latex-type (let ((env (plist-get attr :environment)))
2593 (cond (env (format "%s" env))
2594 ((eq type 'ordered) "enumerate")
2595 ((eq type 'descriptive) "description")
2596 (t "itemize")))))
2597 (org-latex--wrap-label
2598 plain-list
2599 (format "\\begin{%s}%s\n%s\\end{%s}"
2600 latex-type
2601 (or (plist-get attr :options) "")
2602 contents
2603 latex-type)
2604 info)))
2607 ;;;; Plain Text
2609 (defun org-latex-plain-text (text info)
2610 "Transcode a TEXT string from Org to LaTeX.
2611 TEXT is the string to transcode. INFO is a plist holding
2612 contextual information."
2613 (let* ((specialp (plist-get info :with-special-strings))
2614 (output
2615 ;; Turn LaTeX into \LaTeX{} and TeX into \TeX{}.
2616 (let ((case-fold-search nil))
2617 (replace-regexp-in-string
2618 "\\<\\(?:La\\)?TeX\\>" "\\\\\\&{}"
2619 ;; Protect ^, ~, %, #, &, $, _, { and }. Also protect \.
2620 ;; However, if special strings are used, be careful not
2621 ;; to protect "\" in "\-" constructs.
2622 (replace-regexp-in-string
2623 (concat "[%$#&{}_~^]\\|\\\\" (and specialp "\\([^-]\\|$\\)"))
2624 (lambda (m)
2625 (cl-case (string-to-char m)
2626 (?\\ "$\\\\backslash$\\1")
2627 (?~ "\\\\textasciitilde{}")
2628 (?^ "\\\\^{}")
2629 (t "\\\\\\&")))
2630 text)))))
2631 ;; Activate smart quotes. Be sure to provide original TEXT string
2632 ;; since OUTPUT may have been modified.
2633 (when (plist-get info :with-smart-quotes)
2634 (setq output (org-export-activate-smart-quotes output :latex info text)))
2635 ;; Convert special strings.
2636 (when specialp
2637 (setq output (replace-regexp-in-string "\\.\\.\\." "\\\\ldots{}" output)))
2638 ;; Handle break preservation if required.
2639 (when (plist-get info :preserve-breaks)
2640 (setq output (replace-regexp-in-string
2641 "\\(?:[ \t]*\\\\\\\\\\)?[ \t]*\n" "\\\\\n" output nil t)))
2642 ;; Return value.
2643 output))
2646 ;;;; Planning
2648 (defun org-latex-planning (planning _contents info)
2649 "Transcode a PLANNING element from Org to LaTeX.
2650 CONTENTS is nil. INFO is a plist holding contextual
2651 information."
2652 (concat
2653 "\\noindent"
2654 (mapconcat
2655 'identity
2656 (delq nil
2657 (list
2658 (let ((closed (org-element-property :closed planning)))
2659 (when closed
2660 (concat
2661 (format "\\textbf{%s} " org-closed-string)
2662 (format (plist-get info :latex-inactive-timestamp-format)
2663 (org-timestamp-translate closed)))))
2664 (let ((deadline (org-element-property :deadline planning)))
2665 (when deadline
2666 (concat
2667 (format "\\textbf{%s} " org-deadline-string)
2668 (format (plist-get info :latex-active-timestamp-format)
2669 (org-timestamp-translate deadline)))))
2670 (let ((scheduled (org-element-property :scheduled planning)))
2671 (when scheduled
2672 (concat
2673 (format "\\textbf{%s} " org-scheduled-string)
2674 (format (plist-get info :latex-active-timestamp-format)
2675 (org-timestamp-translate scheduled)))))))
2676 " ")
2677 "\\\\"))
2680 ;;;; Property Drawer
2682 (defun org-latex-property-drawer (_property-drawer contents _info)
2683 "Transcode a PROPERTY-DRAWER element from Org to LaTeX.
2684 CONTENTS holds the contents of the drawer. INFO is a plist
2685 holding contextual information."
2686 (and (org-string-nw-p contents)
2687 (format "\\begin{verbatim}\n%s\\end{verbatim}" contents)))
2690 ;;;; Pseudo Element: LaTeX Matrices
2692 ;; `latex-matrices' elements have the following properties:
2693 ;; `:caption', `:post-blank' and `:markup' (`inline', `equation' or
2694 ;; `math').
2696 (defun org-latex--wrap-latex-matrices (data info)
2697 "Merge contiguous tables with the same mode within a pseudo-element.
2698 DATA is a parse tree or a secondary string. INFO is a plist
2699 containing export options. Modify DATA by side-effect and return
2700 it."
2701 (org-element-map data 'table
2702 (lambda (table)
2703 (when (eq (org-element-property :type table) 'org)
2704 (let ((mode (or (org-export-read-attribute :attr_latex table :mode)
2705 (plist-get info :latex-default-table-mode))))
2706 (when (and (member mode '("inline-math" "math"))
2707 ;; Do not wrap twice the same table.
2708 (not (eq (org-element-type
2709 (org-element-property :parent table))
2710 'latex-matrices)))
2711 (let* ((caption (and (not (string= mode "inline-math"))
2712 (org-element-property :caption table)))
2713 (matrices
2714 (list 'latex-matrices
2715 (list :caption caption
2716 :markup
2717 (cond ((string= mode "inline-math") 'inline)
2718 (caption 'equation)
2719 (t 'math)))))
2720 (previous table)
2721 (next (org-export-get-next-element table info)))
2722 (org-element-insert-before matrices table)
2723 ;; Swallow all contiguous tables sharing the same mode.
2724 (while (and
2725 (zerop (or (org-element-property :post-blank previous) 0))
2726 (setq next (org-export-get-next-element previous info))
2727 (eq (org-element-type next) 'table)
2728 (eq (org-element-property :type next) 'org)
2729 (string= (or (org-export-read-attribute
2730 :attr_latex next :mode)
2731 (plist-get info :latex-default-table-mode))
2732 mode))
2733 (org-element-extract-element previous)
2734 (org-element-adopt-elements matrices previous)
2735 (setq previous next))
2736 ;; Inherit `:post-blank' from the value of the last
2737 ;; swallowed table. Set the latter's `:post-blank'
2738 ;; value to 0 so as to not duplicate empty lines.
2739 (org-element-put-property
2740 matrices :post-blank (org-element-property :post-blank previous))
2741 (org-element-put-property previous :post-blank 0)
2742 (org-element-extract-element previous)
2743 (org-element-adopt-elements matrices previous))))))
2744 info)
2745 data)
2747 (defun org-latex-matrices (matrices contents _info)
2748 "Transcode a MATRICES element from Org to LaTeX.
2749 CONTENTS is a string. INFO is a plist used as a communication
2750 channel."
2751 (format (cl-case (org-element-property :markup matrices)
2752 (inline "\\(%s\\)")
2753 (equation "\\begin{equation}\n%s\\end{equation}")
2754 (t "\\[\n%s\\]"))
2755 contents))
2758 ;;;; Pseudo Object: LaTeX Math Block
2760 ;; `latex-math-block' objects have the following property:
2761 ;; `:post-blank'.
2763 (defun org-latex--wrap-latex-math-block (data info)
2764 "Merge contiguous math objects in a pseudo-object container.
2765 DATA is a parse tree or a secondary string. INFO is a plist
2766 containing export options. Modify DATA by side-effect and return it."
2767 (let ((valid-object-p
2768 ;; Non-nil when OBJ can be added to the latex math block B.
2769 (lambda (obj b)
2770 (pcase (org-element-type obj)
2771 (`entity (org-element-property :latex-math-p obj))
2772 (`latex-fragment
2773 (let ((value (org-element-property :value obj)))
2774 (or (string-prefix-p "\\(" value)
2775 (string-match-p "\\`\\$[^$]" value))))
2776 ((and type (or `subscript `superscript))
2777 (not (memq type (mapcar #'org-element-type
2778 (org-element-contents b)))))))))
2779 (org-element-map data '(entity latex-fragment subscript superscript)
2780 (lambda (object)
2781 ;; Skip objects already wrapped.
2782 (when (and (not (eq (org-element-type
2783 (org-element-property :parent object))
2784 'latex-math-block))
2785 (funcall valid-object-p object nil))
2786 (let ((math-block (list 'latex-math-block nil))
2787 (next-elements (org-export-get-next-element object info t))
2788 (last object))
2789 ;; Wrap MATH-BLOCK around OBJECT in DATA.
2790 (org-element-insert-before math-block object)
2791 (org-element-extract-element object)
2792 (org-element-adopt-elements math-block object)
2793 (when (zerop (or (org-element-property :post-blank object) 0))
2794 ;; MATH-BLOCK swallows consecutive math objects.
2795 (catch 'exit
2796 (dolist (next next-elements)
2797 (unless (funcall valid-object-p next math-block)
2798 (throw 'exit nil))
2799 (org-element-extract-element next)
2800 (org-element-adopt-elements math-block next)
2801 ;; Eschew the case: \beta$x$ -> \(\betax\).
2802 (unless (memq (org-element-type next)
2803 '(subscript superscript))
2804 (org-element-put-property last :post-blank 1))
2805 (setq last next)
2806 (when (> (or (org-element-property :post-blank next) 0) 0)
2807 (throw 'exit nil)))))
2808 (org-element-put-property
2809 math-block :post-blank (org-element-property :post-blank last)))))
2810 info nil '(subscript superscript latex-math-block) t)
2811 ;; Return updated DATA.
2812 data))
2814 (defun org-latex-math-block (_math-block contents _info)
2815 "Transcode a MATH-BLOCK object from Org to LaTeX.
2816 CONTENTS is a string. INFO is a plist used as a communication
2817 channel."
2818 (when (org-string-nw-p contents)
2819 (format "\\(%s\\)" (org-trim contents))))
2821 ;;;; Quote Block
2823 (defun org-latex-quote-block (quote-block contents info)
2824 "Transcode a QUOTE-BLOCK element from Org to LaTeX.
2825 CONTENTS holds the contents of the block. INFO is a plist
2826 holding contextual information."
2827 (org-latex--wrap-label
2828 quote-block (format "\\begin{quote}\n%s\\end{quote}" contents) info))
2831 ;;;; Radio Target
2833 (defun org-latex-radio-target (radio-target text info)
2834 "Transcode a RADIO-TARGET object from Org to LaTeX.
2835 TEXT is the text of the target. INFO is a plist holding
2836 contextual information."
2837 (format "\\label{%s}%s" (org-export-get-reference radio-target info) text))
2840 ;;;; Section
2842 (defun org-latex-section (_section contents _info)
2843 "Transcode a SECTION element from Org to LaTeX.
2844 CONTENTS holds the contents of the section. INFO is a plist
2845 holding contextual information."
2846 contents)
2849 ;;;; Special Block
2851 (defun org-latex-special-block (special-block contents info)
2852 "Transcode a SPECIAL-BLOCK element from Org to LaTeX.
2853 CONTENTS holds the contents of the block. INFO is a plist
2854 holding contextual information."
2855 (let ((type (org-element-property :type special-block))
2856 (opt (org-export-read-attribute :attr_latex special-block :options))
2857 (caption (org-latex--caption/label-string special-block info))
2858 (caption-above-p (org-latex--caption-above-p special-block info)))
2859 (concat (format "\\begin{%s}%s\n" type (or opt ""))
2860 (and caption-above-p caption)
2861 contents
2862 (and (not caption-above-p) caption)
2863 (format "\\end{%s}" type))))
2866 ;;;; Src Block
2868 (defun org-latex-src-block (src-block _contents info)
2869 "Transcode a SRC-BLOCK element from Org to LaTeX.
2870 CONTENTS holds the contents of the item. INFO is a plist holding
2871 contextual information."
2872 (when (org-string-nw-p (org-element-property :value src-block))
2873 (let* ((lang (org-element-property :language src-block))
2874 (caption (org-element-property :caption src-block))
2875 (caption-above-p (org-latex--caption-above-p src-block info))
2876 (label (org-element-property :name src-block))
2877 (custom-env (and lang
2878 (cadr (assq (intern lang)
2879 org-latex-custom-lang-environments))))
2880 (num-start (org-export-get-loc src-block info))
2881 (retain-labels (org-element-property :retain-labels src-block))
2882 (attributes (org-export-read-attribute :attr_latex src-block))
2883 (float (plist-get attributes :float))
2884 (listings (plist-get info :latex-listings)))
2885 (cond
2886 ;; Case 1. No source fontification.
2887 ((not listings)
2888 (let* ((caption-str (org-latex--caption/label-string src-block info))
2889 (float-env
2890 (cond ((string= "multicolumn" float)
2891 (format "\\begin{figure*}[%s]\n%s%%s\n%s\\end{figure*}"
2892 (plist-get info :latex-default-figure-position)
2893 (if caption-above-p caption-str "")
2894 (if caption-above-p "" caption-str)))
2895 (caption (concat
2896 (if caption-above-p caption-str "")
2897 "%s"
2898 (if caption-above-p "" (concat "\n" caption-str))))
2899 (t "%s"))))
2900 (format
2901 float-env
2902 (concat (format "\\begin{verbatim}\n%s\\end{verbatim}"
2903 (org-export-format-code-default src-block info))))))
2904 ;; Case 2. Custom environment.
2905 (custom-env
2906 (let ((caption-str (org-latex--caption/label-string src-block info))
2907 (formatted-src (org-export-format-code-default src-block info)))
2908 (if (string-match-p "\\`[a-zA-Z0-9]+\\'" custom-env)
2909 (format "\\begin{%s}\n%s\\end{%s}\n"
2910 custom-env
2911 (concat (and caption-above-p caption-str)
2912 formatted-src
2913 (and (not caption-above-p) caption-str))
2914 custom-env)
2915 (format-spec custom-env
2916 `((?s . ,formatted-src)
2917 (?c . ,caption)
2918 (?f . ,float)
2919 (?l . ,(org-latex--label src-block info))
2920 (?o . ,(or (plist-get attributes :options) "")))))))
2921 ;; Case 3. Use minted package.
2922 ((eq listings 'minted)
2923 (let* ((caption-str (org-latex--caption/label-string src-block info))
2924 (float-env
2925 (cond
2926 ((string= "multicolumn" float)
2927 (format "\\begin{listing*}[%s]\n%s%%s\n%s\\end{listing*}"
2928 (plist-get info :latex-default-figure-position)
2929 (if caption-above-p caption-str "")
2930 (if caption-above-p "" caption-str)))
2931 (caption
2932 (format "\\begin{listing}[%s]\n%s%%s\n%s\\end{listing}"
2933 (plist-get info :latex-default-figure-position)
2934 (if caption-above-p caption-str "")
2935 (if caption-above-p "" caption-str)))
2936 ((string= "t" float)
2937 (concat (format "\\begin{listing}[%s]\n"
2938 (plist-get info :latex-default-figure-position))
2939 "%s\n\\end{listing}"))
2940 (t "%s")))
2941 (options (plist-get info :latex-minted-options))
2942 (body
2943 (format
2944 "\\begin{minted}[%s]{%s}\n%s\\end{minted}"
2945 ;; Options.
2946 (concat
2947 (org-latex--make-option-string
2948 (if (or (not num-start) (assoc "linenos" options))
2949 options
2950 (append
2951 `(("linenos")
2952 ("firstnumber" ,(number-to-string (1+ num-start))))
2953 options)))
2954 (let ((local-options (plist-get attributes :options)))
2955 (and local-options (concat "," local-options))))
2956 ;; Language.
2957 (or (cadr (assq (intern lang)
2958 (plist-get info :latex-minted-langs)))
2959 (downcase lang))
2960 ;; Source code.
2961 (let* ((code-info (org-export-unravel-code src-block))
2962 (max-width
2963 (apply 'max
2964 (mapcar 'length
2965 (org-split-string (car code-info)
2966 "\n")))))
2967 (org-export-format-code
2968 (car code-info)
2969 (lambda (loc _num ref)
2970 (concat
2972 (when ref
2973 ;; Ensure references are flushed to the right,
2974 ;; separated with 6 spaces from the widest line
2975 ;; of code.
2976 (concat (make-string (+ (- max-width (length loc)) 6)
2977 ?\s)
2978 (format "(%s)" ref)))))
2979 nil (and retain-labels (cdr code-info)))))))
2980 ;; Return value.
2981 (format float-env body)))
2982 ;; Case 4. Use listings package.
2984 (let ((lst-lang
2985 (or (cadr (assq (intern lang)
2986 (plist-get info :latex-listings-langs)))
2987 lang))
2988 (caption-str
2989 (when caption
2990 (let ((main (org-export-get-caption src-block))
2991 (secondary (org-export-get-caption src-block t)))
2992 (if (not secondary)
2993 (format "{%s}" (org-export-data main info))
2994 (format "{[%s]%s}"
2995 (org-export-data secondary info)
2996 (org-export-data main info))))))
2997 (lst-opt (plist-get info :latex-listings-options)))
2998 (concat
2999 ;; Options.
3000 (format
3001 "\\lstset{%s}\n"
3002 (concat
3003 (org-latex--make-option-string
3004 (append
3005 lst-opt
3006 (cond
3007 ((and (not float) (plist-member attributes :float)) nil)
3008 ((string= "multicolumn" float) '(("float" "*")))
3009 ((and float (not (assoc "float" lst-opt)))
3010 `(("float" ,(plist-get info :latex-default-figure-position)))))
3011 `(("language" ,lst-lang))
3012 (if label
3013 `(("label" ,(org-latex--label src-block info)))
3014 '(("label" " ")))
3015 (if caption-str `(("caption" ,caption-str)) '(("caption" " ")))
3016 `(("captionpos" ,(if caption-above-p "t" "b")))
3017 (cond ((assoc "numbers" lst-opt) nil)
3018 ((not num-start) '(("numbers" "none")))
3019 (t `(("firstnumber" ,(number-to-string (1+ num-start)))
3020 ("numbers" "left"))))))
3021 (let ((local-options (plist-get attributes :options)))
3022 (and local-options (concat "," local-options)))))
3023 ;; Source code.
3024 (format
3025 "\\begin{lstlisting}\n%s\\end{lstlisting}"
3026 (let* ((code-info (org-export-unravel-code src-block))
3027 (max-width
3028 (apply 'max
3029 (mapcar 'length
3030 (org-split-string (car code-info) "\n")))))
3031 (org-export-format-code
3032 (car code-info)
3033 (lambda (loc _num ref)
3034 (concat
3036 (when ref
3037 ;; Ensure references are flushed to the right,
3038 ;; separated with 6 spaces from the widest line of
3039 ;; code
3040 (concat (make-string (+ (- max-width (length loc)) 6) ?\s)
3041 (format "(%s)" ref)))))
3042 nil (and retain-labels (cdr code-info))))))))))))
3045 ;;;; Statistics Cookie
3047 (defun org-latex-statistics-cookie (statistics-cookie _contents _info)
3048 "Transcode a STATISTICS-COOKIE object from Org to LaTeX.
3049 CONTENTS is nil. INFO is a plist holding contextual information."
3050 (replace-regexp-in-string
3051 "%" "\\%" (org-element-property :value statistics-cookie) nil t))
3054 ;;;; Strike-Through
3056 (defun org-latex-strike-through (_strike-through contents info)
3057 "Transcode STRIKE-THROUGH from Org to LaTeX.
3058 CONTENTS is the text with strike-through markup. INFO is a plist
3059 holding contextual information."
3060 (org-latex--text-markup contents 'strike-through info))
3063 ;;;; Subscript
3065 (defun org-latex--script-size (object info)
3066 "Transcode a subscript or superscript object.
3067 OBJECT is an Org object. INFO is a plist used as a communication
3068 channel."
3069 (let ((output ""))
3070 (org-element-map (org-element-contents object)
3071 (cons 'plain-text org-element-all-objects)
3072 (lambda (obj)
3073 (cl-case (org-element-type obj)
3074 ((entity latex-fragment)
3075 (let ((data (org-trim (org-export-data obj info))))
3076 (string-match
3077 "\\`\\(?:\\\\[([]\\|\\$+\\)?\\(.*?\\)\\(?:\\\\[])]\\|\\$+\\)?\\'"
3078 data)
3079 (setq output
3080 (concat output
3081 (match-string 1 data)
3082 (let ((blank (org-element-property :post-blank obj)))
3083 (and blank (> blank 0) "\\ "))))))
3084 (plain-text
3085 (setq output
3086 (format "%s\\text{%s}" output (org-export-data obj info))))
3087 (otherwise
3088 (setq output
3089 (concat output
3090 (org-export-data obj info)
3091 (let ((blank (org-element-property :post-blank obj)))
3092 (and blank (> blank 0) "\\ ")))))))
3093 info nil org-element-recursive-objects)
3094 ;; Result. Do not wrap into curly brackets if OUTPUT is a single
3095 ;; character.
3096 (concat (if (eq (org-element-type object) 'subscript) "_" "^")
3097 (and (> (length output) 1) "{")
3098 output
3099 (and (> (length output) 1) "}"))))
3101 (defun org-latex-subscript (subscript _contents info)
3102 "Transcode a SUBSCRIPT object from Org to LaTeX.
3103 CONTENTS is the contents of the object. INFO is a plist holding
3104 contextual information."
3105 (org-latex--script-size subscript info))
3108 ;;;; Superscript
3110 (defun org-latex-superscript (superscript _contents info)
3111 "Transcode a SUPERSCRIPT object from Org to LaTeX.
3112 CONTENTS is the contents of the object. INFO is a plist holding
3113 contextual information."
3114 (org-latex--script-size superscript info))
3117 ;;;; Table
3119 ;; `org-latex-table' is the entry point for table transcoding. It
3120 ;; takes care of tables with a "verbatim" mode. Otherwise, it
3121 ;; delegates the job to either `org-latex--table.el-table',
3122 ;; `org-latex--org-table' or `org-latex--math-table' functions,
3123 ;; depending of the type of the table and the mode requested.
3125 ;; `org-latex--align-string' is a subroutine used to build alignment
3126 ;; string for Org tables.
3128 (defun org-latex-table (table contents info)
3129 "Transcode a TABLE element from Org to LaTeX.
3130 CONTENTS is the contents of the table. INFO is a plist holding
3131 contextual information."
3132 (if (eq (org-element-property :type table) 'table.el)
3133 ;; "table.el" table. Convert it using appropriate tools.
3134 (org-latex--table.el-table table info)
3135 (let ((type (or (org-export-read-attribute :attr_latex table :mode)
3136 (plist-get info :latex-default-table-mode))))
3137 (cond
3138 ;; Case 1: Verbatim table.
3139 ((string= type "verbatim")
3140 (format "\\begin{verbatim}\n%s\n\\end{verbatim}"
3141 ;; Re-create table, without affiliated keywords.
3142 (org-trim (org-element-interpret-data
3143 `(table nil ,@(org-element-contents table))))))
3144 ;; Case 2: Matrix.
3145 ((or (string= type "math") (string= type "inline-math"))
3146 (org-latex--math-table table info))
3147 ;; Case 3: Standard table.
3148 (t (concat (org-latex--org-table table contents info)
3149 ;; When there are footnote references within the
3150 ;; table, insert their definition just after it.
3151 (org-latex--delayed-footnotes-definitions table info)))))))
3153 (defun org-latex--align-string (table info &optional math?)
3154 "Return an appropriate LaTeX alignment string.
3155 TABLE is the considered table. INFO is a plist used as
3156 a communication channel. When optional argument MATH? is
3157 non-nil, TABLE is meant to be a matrix, where all cells are
3158 centered."
3159 (or (org-export-read-attribute :attr_latex table :align)
3160 (let (align)
3161 ;; Extract column groups and alignment from first (non-rule)
3162 ;; row.
3163 (org-element-map
3164 (org-element-map table 'table-row
3165 (lambda (row)
3166 (and (eq (org-element-property :type row) 'standard) row))
3167 info 'first-match)
3168 'table-cell
3169 (lambda (cell)
3170 (let ((borders (org-export-table-cell-borders cell info)))
3171 ;; Check left border for the first cell only.
3172 (when (and (memq 'left borders) (not align))
3173 (push "|" align))
3174 (push (if math? "c" ;center cells in matrices
3175 (cl-case (org-export-table-cell-alignment cell info)
3176 (left "l")
3177 (right "r")
3178 (center "c")))
3179 align)
3180 (when (memq 'right borders) (push "|" align))))
3181 info)
3182 (apply 'concat (nreverse align)))))
3184 (defun org-latex--org-table (table contents info)
3185 "Return appropriate LaTeX code for an Org table.
3187 TABLE is the table type element to transcode. CONTENTS is its
3188 contents, as a string. INFO is a plist used as a communication
3189 channel.
3191 This function assumes TABLE has `org' as its `:type' property and
3192 `table' as its `:mode' attribute."
3193 (let* ((caption (org-latex--caption/label-string table info))
3194 (attr (org-export-read-attribute :attr_latex table))
3195 ;; Determine alignment string.
3196 (alignment (org-latex--align-string table info))
3197 ;; Determine environment for the table: longtable, tabular...
3198 (table-env (or (plist-get attr :environment)
3199 (plist-get info :latex-default-table-environment)))
3200 ;; If table is a float, determine environment: table, table*
3201 ;; or sidewaystable.
3202 (float-env (unless (member table-env '("longtable" "longtabu"))
3203 (let ((float (plist-get attr :float)))
3204 (cond
3205 ((and (not float) (plist-member attr :float)) nil)
3206 ((or (string= float "sidewaystable")
3207 (string= float "sideways")) "sidewaystable")
3208 ((string= float "multicolumn") "table*")
3209 ((or float
3210 (org-element-property :caption table)
3211 (org-string-nw-p (plist-get attr :caption)))
3212 "table")))))
3213 ;; Extract others display options.
3214 (fontsize (let ((font (plist-get attr :font)))
3215 (and font (concat font "\n"))))
3216 ;; "tabular" environment doesn't allow to define a width.
3217 (width (and (not (equal table-env "tabular")) (plist-get attr :width)))
3218 (spreadp (plist-get attr :spread))
3219 (placement
3220 (or (plist-get attr :placement)
3221 (format "[%s]" (plist-get info :latex-default-figure-position))))
3222 (centerp (if (plist-member attr :center) (plist-get attr :center)
3223 (plist-get info :latex-tables-centered)))
3224 (caption-above-p (org-latex--caption-above-p table info)))
3225 ;; Prepare the final format string for the table.
3226 (cond
3227 ;; Longtable.
3228 ((equal "longtable" table-env)
3229 (concat (and fontsize (concat "{" fontsize))
3230 (format "\\begin{longtable}{%s}\n" alignment)
3231 (and caption-above-p
3232 (org-string-nw-p caption)
3233 (concat caption "\\\\\n"))
3234 contents
3235 (and (not caption-above-p)
3236 (org-string-nw-p caption)
3237 (concat caption "\\\\\n"))
3238 "\\end{longtable}\n"
3239 (and fontsize "}")))
3240 ;; Longtabu
3241 ((equal "longtabu" table-env)
3242 (concat (and fontsize (concat "{" fontsize))
3243 (format "\\begin{longtabu}%s{%s}\n"
3244 (if width
3245 (format " %s %s "
3246 (if spreadp "spread" "to") width) "")
3247 alignment)
3248 (and caption-above-p
3249 (org-string-nw-p caption)
3250 (concat caption "\\\\\n"))
3251 contents
3252 (and (not caption-above-p)
3253 (org-string-nw-p caption)
3254 (concat caption "\\\\\n"))
3255 "\\end{longtabu}\n"
3256 (and fontsize "}")))
3257 ;; Others.
3258 (t (concat (cond
3259 (float-env
3260 (concat (format "\\begin{%s}%s\n" float-env placement)
3261 (if caption-above-p caption "")
3262 (when centerp "\\centering\n")
3263 fontsize))
3264 ((and (not float-env) caption)
3265 (concat
3266 (and centerp "\\begin{center}\n" )
3267 (if caption-above-p caption "")
3268 (cond ((and fontsize centerp) fontsize)
3269 (fontsize (concat "{" fontsize)))))
3270 (centerp (concat "\\begin{center}\n" fontsize))
3271 (fontsize (concat "{" fontsize)))
3272 (cond ((equal "tabu" table-env)
3273 (format "\\begin{tabu}%s{%s}\n%s\\end{tabu}"
3274 (if width (format
3275 (if spreadp " spread %s " " to %s ")
3276 width) "")
3277 alignment
3278 contents))
3279 (t (format "\\begin{%s}%s{%s}\n%s\\end{%s}"
3280 table-env
3281 (if width (format "{%s}" width) "")
3282 alignment
3283 contents
3284 table-env)))
3285 (cond
3286 (float-env
3287 (concat (if caption-above-p "" (concat "\n" caption))
3288 (format "\n\\end{%s}" float-env)))
3289 ((and (not float-env) caption)
3290 (concat
3291 (if caption-above-p "" (concat "\n" caption))
3292 (and centerp "\n\\end{center}")
3293 (and fontsize (not centerp) "}")))
3294 (centerp "\n\\end{center}")
3295 (fontsize "}")))))))
3297 (defun org-latex--table.el-table (table info)
3298 "Return appropriate LaTeX code for a table.el table.
3300 TABLE is the table type element to transcode. INFO is a plist
3301 used as a communication channel.
3303 This function assumes TABLE has `table.el' as its `:type'
3304 property."
3305 (require 'table)
3306 ;; Ensure "*org-export-table*" buffer is empty.
3307 (with-current-buffer (get-buffer-create "*org-export-table*")
3308 (erase-buffer))
3309 (let ((output (with-temp-buffer
3310 (insert (org-element-property :value table))
3311 (goto-char 1)
3312 (re-search-forward "^[ \t]*|[^|]" nil t)
3313 (table-generate-source 'latex "*org-export-table*")
3314 (with-current-buffer "*org-export-table*"
3315 (org-trim (buffer-string))))))
3316 (kill-buffer (get-buffer "*org-export-table*"))
3317 ;; Remove left out comments.
3318 (while (string-match "^%.*\n" output)
3319 (setq output (replace-match "" t t output)))
3320 (let ((attr (org-export-read-attribute :attr_latex table)))
3321 (when (plist-get attr :rmlines)
3322 ;; When the "rmlines" attribute is provided, remove all hlines
3323 ;; but the the one separating heading from the table body.
3324 (let ((n 0) (pos 0))
3325 (while (and (< (length output) pos)
3326 (setq pos (string-match "^\\\\hline\n?" output pos)))
3327 (cl-incf n)
3328 (unless (= n 2) (setq output (replace-match "" nil nil output))))))
3329 (let ((centerp (if (plist-member attr :center) (plist-get attr :center)
3330 (plist-get info :latex-tables-centered))))
3331 (if (not centerp) output
3332 (format "\\begin{center}\n%s\n\\end{center}" output))))))
3334 (defun org-latex--math-table (table info)
3335 "Return appropriate LaTeX code for a matrix.
3337 TABLE is the table type element to transcode. INFO is a plist
3338 used as a communication channel.
3340 This function assumes TABLE has `org' as its `:type' property and
3341 `inline-math' or `math' as its `:mode' attribute."
3342 (let* ((attr (org-export-read-attribute :attr_latex table))
3343 (env (or (plist-get attr :environment)
3344 (plist-get info :latex-default-table-environment)))
3345 (contents
3346 (mapconcat
3347 (lambda (row)
3348 (if (eq (org-element-property :type row) 'rule) "\\hline"
3349 ;; Return each cell unmodified.
3350 (concat
3351 (mapconcat
3352 (lambda (cell)
3353 (substring (org-element-interpret-data cell) 0 -1))
3354 (org-element-map row 'table-cell #'identity info) "&")
3355 (or (cdr (assoc env org-latex-table-matrix-macros)) "\\\\")
3356 "\n")))
3357 (org-element-map table 'table-row #'identity info) "")))
3358 (concat
3359 ;; Prefix.
3360 (plist-get attr :math-prefix)
3361 ;; Environment. Also treat special cases.
3362 (cond ((member env '("array" "tabular"))
3363 (format "\\begin{%s}{%s}\n%s\\end{%s}"
3364 env (org-latex--align-string table info t) contents env))
3365 ((assoc env org-latex-table-matrix-macros)
3366 (format "\\%s%s{\n%s}"
3368 (or (plist-get attr :math-arguments) "")
3369 contents))
3370 (t (format "\\begin{%s}\n%s\\end{%s}" env contents env)))
3371 ;; Suffix.
3372 (plist-get attr :math-suffix))))
3375 ;;;; Table Cell
3377 (defun org-latex-table-cell (table-cell contents info)
3378 "Transcode a TABLE-CELL element from Org to LaTeX.
3379 CONTENTS is the cell contents. INFO is a plist used as
3380 a communication channel."
3381 (concat
3382 (let ((scientific-format (plist-get info :latex-table-scientific-notation)))
3383 (if (and contents
3384 scientific-format
3385 (string-match orgtbl-exp-regexp contents))
3386 ;; Use appropriate format string for scientific
3387 ;; notation.
3388 (format scientific-format
3389 (match-string 1 contents)
3390 (match-string 2 contents))
3391 contents))
3392 (when (org-export-get-next-element table-cell info) " & ")))
3395 ;;;; Table Row
3397 (defun org-latex-table-row (table-row contents info)
3398 "Transcode a TABLE-ROW element from Org to LaTeX.
3399 CONTENTS is the contents of the row. INFO is a plist used as
3400 a communication channel."
3401 (let* ((attr (org-export-read-attribute :attr_latex
3402 (org-export-get-parent table-row)))
3403 (booktabsp (if (plist-member attr :booktabs) (plist-get attr :booktabs)
3404 (plist-get info :latex-tables-booktabs)))
3405 (longtablep
3406 (member (or (plist-get attr :environment)
3407 (plist-get info :latex-default-table-environment))
3408 '("longtable" "longtabu"))))
3409 (if (eq (org-element-property :type table-row) 'rule)
3410 (cond
3411 ((not booktabsp) "\\hline")
3412 ((not (org-export-get-previous-element table-row info)) "\\toprule")
3413 ((not (org-export-get-next-element table-row info)) "\\bottomrule")
3414 ((and longtablep
3415 (org-export-table-row-ends-header-p
3416 (org-export-get-previous-element table-row info) info))
3418 (t "\\midrule"))
3419 (concat
3420 ;; When BOOKTABS are activated enforce top-rule even when no
3421 ;; hline was specifically marked.
3422 (and booktabsp (not (org-export-get-previous-element table-row info))
3423 "\\toprule\n")
3424 contents "\\\\\n"
3425 (cond
3426 ;; Special case for long tables. Define header and footers.
3427 ((and longtablep (org-export-table-row-ends-header-p table-row info))
3428 (let ((columns (cdr (org-export-table-dimensions
3429 (org-export-get-parent-table table-row) info))))
3430 (format "%s
3431 \\endfirsthead
3432 \\multicolumn{%d}{l}{%s} \\\\
3434 %s \\\\\n
3436 \\endhead
3437 %s\\multicolumn{%d}{r}{%s} \\\\
3438 \\endfoot
3439 \\endlastfoot"
3440 (if booktabsp "\\midrule" "\\hline")
3441 columns
3442 (org-latex--translate "Continued from previous page" info)
3443 (cond
3444 ((not (org-export-table-row-starts-header-p table-row info))
3446 (booktabsp "\\toprule\n")
3447 (t "\\hline\n"))
3448 contents
3449 (if booktabsp "\\midrule" "\\hline")
3450 (if booktabsp "\\midrule" "\\hline")
3451 columns
3452 (org-latex--translate "Continued on next page" info))))
3453 ;; When BOOKTABS are activated enforce bottom rule even when
3454 ;; no hline was specifically marked.
3455 ((and booktabsp (not (org-export-get-next-element table-row info)))
3456 "\\bottomrule"))))))
3459 ;;;; Target
3461 (defun org-latex-target (target _contents info)
3462 "Transcode a TARGET object from Org to LaTeX.
3463 CONTENTS is nil. INFO is a plist holding contextual
3464 information."
3465 (format "\\label{%s}" (org-latex--label target info)))
3468 ;;;; Timestamp
3470 (defun org-latex-timestamp (timestamp _contents info)
3471 "Transcode a TIMESTAMP object from Org to LaTeX.
3472 CONTENTS is nil. INFO is a plist holding contextual
3473 information."
3474 (let ((value (org-latex-plain-text (org-timestamp-translate timestamp) info)))
3475 (format
3476 (plist-get info
3477 (cl-case (org-element-property :type timestamp)
3478 ((active active-range) :latex-active-timestamp-format)
3479 ((inactive inactive-range) :latex-inactive-timestamp-format)
3480 (otherwise :latex-diary-timestamp-format)))
3481 value)))
3484 ;;;; Underline
3486 (defun org-latex-underline (_underline contents info)
3487 "Transcode UNDERLINE from Org to LaTeX.
3488 CONTENTS is the text with underline markup. INFO is a plist
3489 holding contextual information."
3490 (org-latex--text-markup contents 'underline info))
3493 ;;;; Verbatim
3495 (defun org-latex-verbatim (verbatim _contents info)
3496 "Transcode a VERBATIM object from Org to LaTeX.
3497 CONTENTS is nil. INFO is a plist used as a communication
3498 channel."
3499 (org-latex--text-markup
3500 (org-element-property :value verbatim) 'verbatim info))
3503 ;;;; Verse Block
3505 (defun org-latex-verse-block (verse-block contents info)
3506 "Transcode a VERSE-BLOCK element from Org to LaTeX.
3507 CONTENTS is verse block contents. INFO is a plist holding
3508 contextual information."
3509 (org-latex--wrap-label
3510 verse-block
3511 ;; In a verse environment, add a line break to each newline
3512 ;; character and change each white space at beginning of a line
3513 ;; into a space of 1 em. Also change each blank line with
3514 ;; a vertical space of 1 em.
3515 (format "\\begin{verse}\n%s\\end{verse}"
3516 (replace-regexp-in-string
3517 "^[ \t]+" (lambda (m) (format "\\hspace*{%dem}" (length m)))
3518 (replace-regexp-in-string
3519 "^[ \t]*\\\\\\\\$" "\\vspace*{1em}"
3520 (replace-regexp-in-string
3521 "\\([ \t]*\\\\\\\\\\)?[ \t]*\n" "\\\\\n"
3522 contents nil t) nil t) nil t))
3523 info))
3527 ;;; End-user functions
3529 ;;;###autoload
3530 (defun org-latex-export-as-latex
3531 (&optional async subtreep visible-only body-only ext-plist)
3532 "Export current buffer as a LaTeX buffer.
3534 If narrowing is active in the current buffer, only export its
3535 narrowed part.
3537 If a region is active, export that region.
3539 A non-nil optional argument ASYNC means the process should happen
3540 asynchronously. The resulting buffer should be accessible
3541 through the `org-export-stack' interface.
3543 When optional argument SUBTREEP is non-nil, export the sub-tree
3544 at point, extracting information from the headline properties
3545 first.
3547 When optional argument VISIBLE-ONLY is non-nil, don't export
3548 contents of hidden elements.
3550 When optional argument BODY-ONLY is non-nil, only write code
3551 between \"\\begin{document}\" and \"\\end{document}\".
3553 EXT-PLIST, when provided, is a property list with external
3554 parameters overriding Org default settings, but still inferior to
3555 file-local settings.
3557 Export is done in a buffer named \"*Org LATEX Export*\", which
3558 will be displayed when `org-export-show-temporary-export-buffer'
3559 is non-nil."
3560 (interactive)
3561 (org-export-to-buffer 'latex "*Org LATEX Export*"
3562 async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
3564 ;;;###autoload
3565 (defun org-latex-convert-region-to-latex ()
3566 "Assume the current region has Org syntax, and convert it to LaTeX.
3567 This can be used in any buffer. For example, you can write an
3568 itemized list in Org syntax in an LaTeX buffer and use this
3569 command to convert it."
3570 (interactive)
3571 (org-export-replace-region-by 'latex))
3573 ;;;###autoload
3574 (defun org-latex-export-to-latex
3575 (&optional async subtreep visible-only body-only ext-plist)
3576 "Export current buffer to a LaTeX file.
3578 If narrowing is active in the current buffer, only export its
3579 narrowed part.
3581 If a region is active, export that region.
3583 A non-nil optional argument ASYNC means the process should happen
3584 asynchronously. The resulting file should be accessible through
3585 the `org-export-stack' interface.
3587 When optional argument SUBTREEP is non-nil, export the sub-tree
3588 at point, extracting information from the headline properties
3589 first.
3591 When optional argument VISIBLE-ONLY is non-nil, don't export
3592 contents of hidden elements.
3594 When optional argument BODY-ONLY is non-nil, only write code
3595 between \"\\begin{document}\" and \"\\end{document}\".
3597 EXT-PLIST, when provided, is a property list with external
3598 parameters overriding Org default settings, but still inferior to
3599 file-local settings."
3600 (interactive)
3601 (let ((outfile (org-export-output-file-name ".tex" subtreep)))
3602 (org-export-to-file 'latex outfile
3603 async subtreep visible-only body-only ext-plist)))
3605 ;;;###autoload
3606 (defun org-latex-export-to-pdf
3607 (&optional async subtreep visible-only body-only ext-plist)
3608 "Export current buffer to LaTeX then process through to PDF.
3610 If narrowing is active in the current buffer, only export its
3611 narrowed part.
3613 If a region is active, export that region.
3615 A non-nil optional argument ASYNC means the process should happen
3616 asynchronously. The resulting file should be accessible through
3617 the `org-export-stack' interface.
3619 When optional argument SUBTREEP is non-nil, export the sub-tree
3620 at point, extracting information from the headline properties
3621 first.
3623 When optional argument VISIBLE-ONLY is non-nil, don't export
3624 contents of hidden elements.
3626 When optional argument BODY-ONLY is non-nil, only write code
3627 between \"\\begin{document}\" and \"\\end{document}\".
3629 EXT-PLIST, when provided, is a property list with external
3630 parameters overriding Org default settings, but still inferior to
3631 file-local settings.
3633 Return PDF file's name."
3634 (interactive)
3635 (let ((outfile (org-export-output-file-name ".tex" subtreep)))
3636 (org-export-to-file 'latex outfile
3637 async subtreep visible-only body-only ext-plist
3638 (lambda (file) (org-latex-compile file)))))
3640 (defun org-latex-compile (texfile &optional snippet)
3641 "Compile a TeX file.
3643 TEXFILE is the name of the file being compiled. Processing is
3644 done through the command specified in `org-latex-pdf-process',
3645 which see. Output is redirected to \"*Org PDF LaTeX Output*\"
3646 buffer.
3648 When optional argument SNIPPET is non-nil, TEXFILE is a temporary
3649 file used to preview a LaTeX snippet. In this case, do not
3650 create a log buffer and do not remove log files.
3652 Return PDF file name or raise an error if it couldn't be
3653 produced."
3654 (unless snippet (message "Processing LaTeX file %s..." texfile))
3655 (let* ((compiler
3656 (or (with-temp-buffer
3657 (save-excursion (insert-file-contents texfile))
3658 (and (search-forward-regexp (regexp-opt org-latex-compilers)
3659 (line-end-position 2)
3661 (progn (beginning-of-line) (looking-at-p "%"))
3662 (match-string 0)))
3663 "pdflatex"))
3664 (process (if (functionp org-latex-pdf-process) org-latex-pdf-process
3665 ;; Replace "%latex" and "%bibtex" with,
3666 ;; respectively, "%L" and "%B" so as to adhere to
3667 ;; `format-spec' specifications.
3668 (mapcar (lambda (command)
3669 (replace-regexp-in-string
3670 "%\\(?:bib\\|la\\)tex\\>"
3671 (lambda (m) (upcase (substring m 0 2)))
3672 command))
3673 org-latex-pdf-process)))
3674 (spec `((?B . ,(shell-quote-argument org-latex-bib-compiler))
3675 (?L . ,(shell-quote-argument compiler))))
3676 (log-buf-name "*Org PDF LaTeX Output*")
3677 (log-buf (and (not snippet) (get-buffer-create log-buf-name)))
3678 (outfile (org-compile-file texfile process "pdf"
3679 (format "See %S for details" log-buf-name)
3680 log-buf spec)))
3681 (unless snippet
3682 (when org-latex-remove-logfiles
3683 (mapc #'delete-file
3684 (directory-files
3685 (file-name-directory outfile)
3687 (concat (regexp-quote (file-name-base outfile))
3688 "\\(?:\\.[0-9]+\\)?\\."
3689 (regexp-opt org-latex-logfiles-extensions))
3690 t)))
3691 (let ((warnings (org-latex--collect-warnings log-buf)))
3692 (message (concat "PDF file produced"
3693 (cond
3694 ((eq warnings 'error) " with errors.")
3695 (warnings (concat " with warnings: " warnings))
3696 (t "."))))))
3697 ;; Return output file name.
3698 outfile))
3700 (defun org-latex--collect-warnings (buffer)
3701 "Collect some warnings from \"pdflatex\" command output.
3702 BUFFER is the buffer containing output. Return collected
3703 warnings types as a string, `error' if a LaTeX error was
3704 encountered or nil if there was none."
3705 (with-current-buffer buffer
3706 (save-excursion
3707 (goto-char (point-max))
3708 (when (re-search-backward "^[ \t]*This is .*?TeX.*?Version" nil t)
3709 (if (re-search-forward "^!" nil t) 'error
3710 (let ((case-fold-search t)
3711 (warnings ""))
3712 (dolist (warning org-latex-known-warnings)
3713 (when (save-excursion (re-search-forward (car warning) nil t))
3714 (setq warnings (concat warnings " " (cdr warning)))))
3715 (org-string-nw-p (org-trim warnings))))))))
3717 ;;;###autoload
3718 (defun org-latex-publish-to-latex (plist filename pub-dir)
3719 "Publish an Org file to LaTeX.
3721 FILENAME is the filename of the Org file to be published. PLIST
3722 is the property list for the given project. PUB-DIR is the
3723 publishing directory.
3725 Return output file name."
3726 (org-publish-org-to 'latex filename ".tex" plist pub-dir))
3728 ;;;###autoload
3729 (defun org-latex-publish-to-pdf (plist filename pub-dir)
3730 "Publish an Org file to PDF (via LaTeX).
3732 FILENAME is the filename of the Org file to be published. PLIST
3733 is the property list for the given project. PUB-DIR is the
3734 publishing directory.
3736 Return output file name."
3737 ;; Unlike to `org-latex-publish-to-latex', PDF file is generated
3738 ;; in working directory and then moved to publishing directory.
3739 (org-publish-attachment
3740 plist
3741 ;; Default directory could be anywhere when this function is
3742 ;; called. We ensure it is set to source file directory during
3743 ;; compilation so as to not break links to external documents.
3744 (let ((default-directory (file-name-directory filename)))
3745 (org-latex-compile
3746 (org-publish-org-to
3747 'latex filename ".tex" plist (file-name-directory filename))))
3748 pub-dir))
3751 (provide 'ox-latex)
3753 ;; Local variables:
3754 ;; generated-autoload-file: "org-loaddefs.el"
3755 ;; End:
3757 ;;; ox-latex.el ends here