ox-latex: support :float nil with caption for minted listings
[org-mode/org-tableheadings.git] / lisp / ox-latex.el
blob08f7f1c7c36fd2bd708beaaecd5036bb0e6cffe9
1 ;;; ox-latex.el --- LaTeX Back-End for Org Export Engine
3 ;; Copyright (C) 2011-2014 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 <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; See Org manual for details.
27 ;;; Code:
29 (eval-when-compile (require 'cl))
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 (comment . (lambda (&rest args) ""))
47 (comment-block . (lambda (&rest args) ""))
48 (drawer . org-latex-drawer)
49 (dynamic-block . org-latex-dynamic-block)
50 (entity . org-latex-entity)
51 (example-block . org-latex-example-block)
52 (export-block . org-latex-export-block)
53 (export-snippet . org-latex-export-snippet)
54 (fixed-width . org-latex-fixed-width)
55 (footnote-definition . org-latex-footnote-definition)
56 (footnote-reference . org-latex-footnote-reference)
57 (headline . org-latex-headline)
58 (horizontal-rule . org-latex-horizontal-rule)
59 (inline-src-block . org-latex-inline-src-block)
60 (inlinetask . org-latex-inlinetask)
61 (italic . org-latex-italic)
62 (item . org-latex-item)
63 (keyword . org-latex-keyword)
64 (latex-environment . org-latex-latex-environment)
65 (latex-fragment . org-latex-latex-fragment)
66 (line-break . org-latex-line-break)
67 (link . org-latex-link)
68 (node-property . org-latex-node-property)
69 (paragraph . org-latex-paragraph)
70 (plain-list . org-latex-plain-list)
71 (plain-text . org-latex-plain-text)
72 (planning . org-latex-planning)
73 (property-drawer . org-latex-property-drawer)
74 (quote-block . org-latex-quote-block)
75 (radio-target . org-latex-radio-target)
76 (section . org-latex-section)
77 (special-block . org-latex-special-block)
78 (src-block . org-latex-src-block)
79 (statistics-cookie . org-latex-statistics-cookie)
80 (strike-through . org-latex-strike-through)
81 (subscript . org-latex-subscript)
82 (superscript . org-latex-superscript)
83 (table . org-latex-table)
84 (table-cell . org-latex-table-cell)
85 (table-row . org-latex-table-row)
86 (target . org-latex-target)
87 (template . org-latex-template)
88 (timestamp . org-latex-timestamp)
89 (underline . org-latex-underline)
90 (verbatim . org-latex-verbatim)
91 (verse-block . org-latex-verse-block)
92 ;; Pseudo objects.
93 (latex-math-block . org-latex-math-block))
94 :export-block '("LATEX" "TEX")
95 :menu-entry
96 '(?l "Export to LaTeX"
97 ((?L "As LaTeX buffer" org-latex-export-as-latex)
98 (?l "As LaTeX file" org-latex-export-to-latex)
99 (?p "As PDF file" org-latex-export-to-pdf)
100 (?o "As PDF file and open"
101 (lambda (a s v b)
102 (if a (org-latex-export-to-pdf t s v b)
103 (org-open-file (org-latex-export-to-pdf nil s v b)))))))
104 :filters-alist '((:filter-options . org-latex-math-block-options-filter)
105 (:filter-parse-tree . org-latex-math-block-tree-filter))
106 :options-alist
107 '((:latex-class "LATEX_CLASS" nil org-latex-default-class t)
108 (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
109 (:latex-header "LATEX_HEADER" nil nil newline)
110 (:latex-header-extra "LATEX_HEADER_EXTRA" nil nil newline)
111 ;; Other variables.
112 (:latex-active-timestamp-format nil nil org-latex-active-timestamp-format)
113 (:latex-classes nil nil org-latex-classes)
114 (:latex-custom-id-labels nil nil org-latex-custom-id-as-label)
115 (:latex-default-figure-position nil nil org-latex-default-figure-position)
116 (:latex-default-table-environment nil nil org-latex-default-table-environment)
117 (:latex-default-table-mode nil nil org-latex-default-table-mode)
118 (:latex-diary-timestamp-format nil nil org-latex-diary-timestamp-format)
119 (:latex-footnote-separator nil nil org-latex-footnote-separator)
120 (:latex-format-drawer-function nil nil org-latex-format-drawer-function)
121 (:latex-format-headline-function nil nil org-latex-format-headline-function)
122 (:latex-format-inlinetask-function nil nil org-latex-format-inlinetask-function)
123 (:latex-hyperref-template nil nil org-latex-hyperref-template t)
124 (:latex-image-default-height nil nil org-latex-image-default-height)
125 (:latex-image-default-option nil nil org-latex-image-default-option)
126 (:latex-image-default-width nil nil org-latex-image-default-width)
127 (:latex-inactive-timestamp-format nil nil org-latex-inactive-timestamp-format)
128 (:latex-inline-image-rules nil nil org-latex-inline-image-rules)
129 (:latex-link-with-unknown-path-format nil nil org-latex-link-with-unknown-path-format)
130 (:latex-listings nil nil org-latex-listings)
131 (:latex-listings-langs nil nil org-latex-listings-langs)
132 (:latex-listings-options nil nil org-latex-listings-options)
133 (:latex-minted-langs nil nil org-latex-minted-langs)
134 (:latex-minted-options nil nil org-latex-minted-options)
135 (:latex-table-caption-above nil nil org-latex-table-caption-above)
136 (:latex-table-scientific-notation nil nil org-latex-table-scientific-notation)
137 (:latex-tables-booktabs nil nil org-latex-tables-booktabs)
138 (:latex-tables-centered nil nil org-latex-tables-centered)
139 (:latex-text-markup-alist nil nil org-latex-text-markup-alist)
140 (:latex-title-command nil nil org-latex-title-command)
141 (:latex-toc-command nil nil org-latex-toc-command)
142 ;; Redefine regular options.
143 (:date "DATE" nil "\\today" t)))
147 ;;; Internal Variables
149 (defconst org-latex-babel-language-alist
150 '(("af" . "afrikaans")
151 ("bg" . "bulgarian")
152 ("bt-br" . "brazilian")
153 ("ca" . "catalan")
154 ("cs" . "czech")
155 ("cy" . "welsh")
156 ("da" . "danish")
157 ("de" . "germanb")
158 ("de-at" . "naustrian")
159 ("de-de" . "ngerman")
160 ("el" . "greek")
161 ("en" . "english")
162 ("en-au" . "australian")
163 ("en-ca" . "canadian")
164 ("en-gb" . "british")
165 ("en-ie" . "irish")
166 ("en-nz" . "newzealand")
167 ("en-us" . "american")
168 ("es" . "spanish")
169 ("et" . "estonian")
170 ("eu" . "basque")
171 ("fi" . "finnish")
172 ("fr" . "frenchb")
173 ("fr-ca" . "canadien")
174 ("gl" . "galician")
175 ("hr" . "croatian")
176 ("hu" . "hungarian")
177 ("id" . "indonesian")
178 ("is" . "icelandic")
179 ("it" . "italian")
180 ("la" . "latin")
181 ("ms" . "malay")
182 ("nl" . "dutch")
183 ("nb" . "norsk")
184 ("nn" . "nynorsk")
185 ("no" . "norsk")
186 ("pl" . "polish")
187 ("pt" . "portuguese")
188 ("ro" . "romanian")
189 ("ru" . "russian")
190 ("sa" . "sanskrit")
191 ("sb" . "uppersorbian")
192 ("sk" . "slovak")
193 ("sl" . "slovene")
194 ("sq" . "albanian")
195 ("sr" . "serbian")
196 ("sv" . "swedish")
197 ("ta" . "tamil")
198 ("tr" . "turkish")
199 ("uk" . "ukrainian"))
200 "Alist between language code and corresponding Babel option.")
202 (defconst org-latex-table-matrix-macros '(("bordermatrix" . "\\cr")
203 ("qbordermatrix" . "\\cr")
204 ("kbordermatrix" . "\\\\"))
205 "Alist between matrix macros and their row ending.")
207 (defconst org-latex-pseudo-objects '(latex-math-block)
208 "List of pseudo-object types introduced in the back-end.")
212 ;;; User Configurable Variables
214 (defgroup org-export-latex nil
215 "Options for exporting Org mode files to LaTeX."
216 :tag "Org Export LaTeX"
217 :group 'org-export)
220 ;;;; Preamble
222 (defcustom org-latex-default-class "article"
223 "The default LaTeX class."
224 :group 'org-export-latex
225 :type '(string :tag "LaTeX class"))
227 (defcustom org-latex-classes
228 '(("article"
229 "\\documentclass[11pt]{article}"
230 ("\\section{%s}" . "\\section*{%s}")
231 ("\\subsection{%s}" . "\\subsection*{%s}")
232 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
233 ("\\paragraph{%s}" . "\\paragraph*{%s}")
234 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
235 ("report"
236 "\\documentclass[11pt]{report}"
237 ("\\part{%s}" . "\\part*{%s}")
238 ("\\chapter{%s}" . "\\chapter*{%s}")
239 ("\\section{%s}" . "\\section*{%s}")
240 ("\\subsection{%s}" . "\\subsection*{%s}")
241 ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
242 ("book"
243 "\\documentclass[11pt]{book}"
244 ("\\part{%s}" . "\\part*{%s}")
245 ("\\chapter{%s}" . "\\chapter*{%s}")
246 ("\\section{%s}" . "\\section*{%s}")
247 ("\\subsection{%s}" . "\\subsection*{%s}")
248 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
249 "Alist of LaTeX classes and associated header and structure.
250 If #+LATEX_CLASS is set in the buffer, use its value and the
251 associated information. Here is the structure of each cell:
253 \(class-name
254 header-string
255 \(numbered-section . unnumbered-section)
256 ...)
258 The header string
259 -----------------
261 The HEADER-STRING is the header that will be inserted into the
262 LaTeX file. It should contain the \\documentclass macro, and
263 anything else that is needed for this setup. To this header, the
264 following commands will be added:
266 - Calls to \\usepackage for all packages mentioned in the
267 variables `org-latex-default-packages-alist' and
268 `org-latex-packages-alist'. Thus, your header definitions
269 should avoid to also request these packages.
271 - Lines specified via \"#+LATEX_HEADER:\" and
272 \"#+LATEX_HEADER_EXTRA:\" keywords.
274 If you need more control about the sequence in which the header
275 is built up, or if you want to exclude one of these building
276 blocks for a particular class, you can use the following
277 macro-like placeholders.
279 [DEFAULT-PACKAGES] \\usepackage statements for default packages
280 [NO-DEFAULT-PACKAGES] do not include any of the default packages
281 [PACKAGES] \\usepackage statements for packages
282 [NO-PACKAGES] do not include the packages
283 [EXTRA] the stuff from #+LATEX_HEADER(_EXTRA)
284 [NO-EXTRA] do not include #+LATEX_HEADER(_EXTRA) stuff
286 So a header like
288 \\documentclass{article}
289 [NO-DEFAULT-PACKAGES]
290 [EXTRA]
291 \\providecommand{\\alert}[1]{\\textbf{#1}}
292 [PACKAGES]
294 will omit the default packages, and will include the
295 #+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
296 to \\providecommand, and then place \\usepackage commands based
297 on the content of `org-latex-packages-alist'.
299 If your header, `org-latex-default-packages-alist' or
300 `org-latex-packages-alist' inserts \"\\usepackage[AUTO]{inputenc}\",
301 AUTO will automatically be replaced with a coding system derived
302 from `buffer-file-coding-system'. See also the variable
303 `org-latex-inputenc-alist' for a way to influence this mechanism.
305 Likewise, if your header contains \"\\usepackage[AUTO]{babel}\",
306 AUTO will be replaced with the language related to the language
307 code specified by `org-export-default-language', which see. Note
308 that constructions such as \"\\usepackage[french,AUTO,english]{babel}\"
309 are permitted.
311 The sectioning structure
312 ------------------------
314 The sectioning structure of the class is given by the elements
315 following the header string. For each sectioning level, a number
316 of strings is specified. A %s formatter is mandatory in each
317 section string and will be replaced by the title of the section.
319 Instead of a cons cell (numbered . unnumbered), you can also
320 provide a list of 2 or 4 elements,
322 \(numbered-open numbered-close)
326 \(numbered-open numbered-close unnumbered-open unnumbered-close)
328 providing opening and closing strings for a LaTeX environment
329 that should represent the document section. The opening clause
330 should have a %s to represent the section title.
332 Instead of a list of sectioning commands, you can also specify
333 a function name. That function will be called with two
334 parameters, the (reduced) level of the headline, and a predicate
335 non-nil when the headline should be numbered. It must return
336 a format string in which the section title will be added."
337 :group 'org-export-latex
338 :type '(repeat
339 (list (string :tag "LaTeX class")
340 (string :tag "LaTeX header")
341 (repeat :tag "Levels" :inline t
342 (choice
343 (cons :tag "Heading"
344 (string :tag " numbered")
345 (string :tag "unnumbered"))
346 (list :tag "Environment"
347 (string :tag "Opening (numbered)")
348 (string :tag "Closing (numbered)")
349 (string :tag "Opening (unnumbered)")
350 (string :tag "Closing (unnumbered)"))
351 (function :tag "Hook computing sectioning"))))))
353 (defcustom org-latex-inputenc-alist nil
354 "Alist of inputenc coding system names, and what should really be used.
355 For example, adding an entry
357 (\"utf8\" . \"utf8x\")
359 will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
360 are written as utf8 files."
361 :group 'org-export-latex
362 :type '(repeat
363 (cons
364 (string :tag "Derived from buffer")
365 (string :tag "Use this instead"))))
367 (defcustom org-latex-title-command "\\maketitle"
368 "The command used to insert the title just after \\begin{document}.
369 If this string contains the formatting specification \"%s\" then
370 it will be used as a formatting string, passing the title as an
371 argument."
372 :group 'org-export-latex
373 :type 'string)
375 (defcustom org-latex-toc-command "\\tableofcontents\n\n"
376 "LaTeX command to set the table of contents, list of figures, etc.
377 This command only applies to the table of contents generated with
378 the toc:nil option, not to those generated with #+TOC keyword."
379 :group 'org-export-latex
380 :type 'string)
382 (defcustom org-latex-hyperref-template
383 "\\hypersetup{\n pdfkeywords={%k},\n pdfsubject={%d},\n pdfcreator={%c}}\n"
384 "Template for hyperref package options.
386 Value is a format string, which can contain the following placeholders:
388 %k for KEYWORDS line
389 %d for DESCRIPTION line
390 %c for CREATOR line
392 Set it to the empty string to ignore the command completely."
393 :group 'org-export-latex
394 :version "24.5"
395 :package-version '(Org . "8.3")
396 :type 'string)
398 ;;;; Headline
400 (defcustom org-latex-format-headline-function
401 'org-latex-format-headline-default-function
402 "Function for formatting the headline's text.
404 This function will be called with six arguments:
405 TODO the todo keyword (string or nil)
406 TODO-TYPE the type of todo (symbol: `todo', `done', nil)
407 PRIORITY the priority of the headline (integer or nil)
408 TEXT the main headline text (string)
409 TAGS the tags (list of strings or nil)
410 INFO the export options (plist)
412 The function result will be used in the section format string."
413 :group 'org-export-latex
414 :version "24.4"
415 :package-version '(Org . "8.0")
416 :type 'function)
418 (defcustom org-latex-custom-id-as-label nil
419 "Toggle use of CUSTOM_ID properties for generating section labels.
421 When this variable is non-nil, Org will use the value of a
422 headline's CUSTOM_ID property as the key for the \\label command
423 for the LaTeX section corresponding to the headline.
425 By default, Org generates its own internal section labels for all
426 headlines during LaTeX export. This process ensures that the
427 \\label keys are unique and valid, but it means the keys are not
428 available in advance of the export process.
430 Setting this variable gives you control over how Org generates
431 labels for sections during LaTeX export, so that you may know
432 their keys in advance. One reason to do this is that it allows
433 you to refer to headlines using a single label both in Org's link
434 syntax and in embedded LaTeX code.
436 For example, when this variable is non-nil, a headline like this:
438 ** Some section
439 :PROPERTIES:
440 :CUSTOM_ID: sec:foo
441 :END:
442 This is section [[#sec:foo]].
443 #+BEGIN_LATEX
444 And this is still section \\ref{sec:foo}.
445 #+END_LATEX
447 will be exported to LaTeX as:
449 \\subsection{Some section}
450 \\label{sec:foo}
451 This is section \\ref{sec:foo}.
452 And this is still section \\ref{sec:foo}.
454 Note, however, that setting this variable introduces a limitation
455 on the possible values for CUSTOM_ID. When this variable is
456 non-nil and a headline defines a CUSTOM_ID value, Org simply
457 passes this value to \\label unchanged. You are responsible for
458 ensuring that the value is a valid LaTeX \\label key, and that no
459 other \\label commands with the same key appear elsewhere in your
460 document. (Keys may contain letters, numbers, and the following
461 punctuation: '_' '.' '-' ':'.) There are no such limitations on
462 CUSTOM_ID when this variable is nil.
464 For headlines that do not define the CUSTOM_ID property, Org will
465 continue to use its default labeling scheme to generate labels
466 and resolve links into section references."
467 :group 'org-export-latex
468 :type 'boolean
469 :version "24.5"
470 :package-version '(Org . "8.3"))
472 ;;;; Footnotes
474 (defcustom org-latex-footnote-separator "\\textsuperscript{,}\\,"
475 "Text used to separate footnotes."
476 :group 'org-export-latex
477 :type 'string)
480 ;;;; Timestamps
482 (defcustom org-latex-active-timestamp-format "\\textit{%s}"
483 "A printf format string to be applied to active timestamps."
484 :group 'org-export-latex
485 :type 'string)
487 (defcustom org-latex-inactive-timestamp-format "\\textit{%s}"
488 "A printf format string to be applied to inactive timestamps."
489 :group 'org-export-latex
490 :type 'string)
492 (defcustom org-latex-diary-timestamp-format "\\textit{%s}"
493 "A printf format string to be applied to diary timestamps."
494 :group 'org-export-latex
495 :type 'string)
498 ;;;; Links
500 (defcustom org-latex-image-default-option ""
501 "Default option for images."
502 :group 'org-export-latex
503 :version "24.4"
504 :package-version '(Org . "8.0")
505 :type 'string)
507 (defcustom org-latex-image-default-width ".9\\linewidth"
508 "Default width for images.
509 This value will not be used if a height is provided."
510 :group 'org-export-latex
511 :version "24.4"
512 :package-version '(Org . "8.0")
513 :type 'string)
515 (defcustom org-latex-image-default-height ""
516 "Default height for images.
517 This value will not be used if a width is provided, or if the
518 image is wrapped within a \"figure\" or \"wrapfigure\"
519 environment."
520 :group 'org-export-latex
521 :version "24.4"
522 :package-version '(Org . "8.0")
523 :type 'string)
525 (defcustom org-latex-default-figure-position "htb"
526 "Default position for latex figures."
527 :group 'org-export-latex
528 :type 'string)
530 (defcustom org-latex-inline-image-rules
531 '(("file" . "\\.\\(pdf\\|jpeg\\|jpg\\|png\\|ps\\|eps\\|tikz\\|pgf\\|svg\\)\\'"))
532 "Rules characterizing image files that can be inlined into LaTeX.
534 A rule consists in an association whose key is the type of link
535 to consider, and value is a regexp that will be matched against
536 link's path.
538 Note that, by default, the image extension *actually* allowed
539 depend on the way the LaTeX file is processed. When used with
540 pdflatex, pdf, jpg and png images are OK. When processing
541 through dvi to Postscript, only ps and eps are allowed. The
542 default we use here encompasses both."
543 :group 'org-export-latex
544 :version "24.4"
545 :package-version '(Org . "8.0")
546 :type '(alist :key-type (string :tag "Type")
547 :value-type (regexp :tag "Path")))
549 (defcustom org-latex-link-with-unknown-path-format "\\texttt{%s}"
550 "Format string for links with unknown path type."
551 :group 'org-export-latex
552 :type 'string)
555 ;;;; Tables
557 (defcustom org-latex-default-table-environment "tabular"
558 "Default environment used to build tables."
559 :group 'org-export-latex
560 :version "24.4"
561 :package-version '(Org . "8.0")
562 :type 'string)
564 (defcustom org-latex-default-table-mode 'table
565 "Default mode for tables.
567 Value can be a symbol among:
569 `table' Regular LaTeX table.
571 `math' In this mode, every cell is considered as being in math
572 mode and the complete table will be wrapped within a math
573 environment. It is particularly useful to write matrices.
575 `inline-math' This mode is almost the same as `math', but the
576 math environment will be inlined.
578 `verbatim' The table is exported as it appears in the Org
579 buffer, within a verbatim environment.
581 This value can be overridden locally with, i.e. \":mode math\" in
582 LaTeX attributes.
584 When modifying this variable, it may be useful to change
585 `org-latex-default-table-environment' accordingly."
586 :group 'org-export-latex
587 :version "24.4"
588 :package-version '(Org . "8.0")
589 :type '(choice (const :tag "Table" table)
590 (const :tag "Matrix" math)
591 (const :tag "Inline matrix" inline-math)
592 (const :tag "Verbatim" verbatim))
593 :safe (lambda (s) (memq s '(table math inline-math verbatim))))
595 (defcustom org-latex-tables-centered t
596 "When non-nil, tables are exported in a center environment."
597 :group 'org-export-latex
598 :type 'boolean
599 :safe #'booleanp)
601 (defcustom org-latex-tables-booktabs nil
602 "When non-nil, display tables in a formal \"booktabs\" style.
603 This option assumes that the \"booktabs\" package is properly
604 loaded in the header of the document. This value can be ignored
605 locally with \":booktabs t\" and \":booktabs nil\" LaTeX
606 attributes."
607 :group 'org-export-latex
608 :version "24.4"
609 :package-version '(Org . "8.0")
610 :type 'boolean
611 :safe #'booleanp)
613 (defcustom org-latex-table-caption-above t
614 "When non-nil, place caption string at the beginning of the table.
615 Otherwise, place it near the end."
616 :group 'org-export-latex
617 :type 'boolean
618 :safe #'booleanp)
620 (defcustom org-latex-table-scientific-notation "%s\\,(%s)"
621 "Format string to display numbers in scientific notation.
622 The format should have \"%s\" twice, for mantissa and exponent
623 \(i.e., \"%s\\\\times10^{%s}\").
625 When nil, no transformation is made."
626 :group 'org-export-latex
627 :version "24.4"
628 :package-version '(Org . "8.0")
629 :type '(choice
630 (string :tag "Format string")
631 (const :tag "No formatting" nil)))
633 ;;;; Text markup
635 (defcustom org-latex-text-markup-alist '((bold . "\\textbf{%s}")
636 (code . verb)
637 (italic . "\\emph{%s}")
638 (strike-through . "\\sout{%s}")
639 (underline . "\\uline{%s}")
640 (verbatim . protectedtexttt))
641 "Alist of LaTeX expressions to convert text markup.
643 The key must be a symbol among `bold', `code', `italic',
644 `strike-through', `underline' and `verbatim'. The value is
645 a formatting string to wrap fontified text with.
647 Value can also be set to the following symbols: `verb' and
648 `protectedtexttt'. For the former, Org will use \"\\verb\" to
649 create a format string and select a delimiter character that
650 isn't in the string. For the latter, Org will use \"\\texttt\"
651 to typeset and try to protect special characters.
653 If no association can be found for a given markup, text will be
654 returned as-is."
655 :group 'org-export-latex
656 :type 'alist
657 :options '(bold code italic strike-through underline verbatim))
660 ;;;; Drawers
662 (defcustom org-latex-format-drawer-function
663 (lambda (name contents) contents)
664 "Function called to format a drawer in LaTeX code.
666 The function must accept two parameters:
667 NAME the drawer name, like \"LOGBOOK\"
668 CONTENTS the contents of the drawer.
670 The function should return the string to be exported.
672 The default function simply returns the value of CONTENTS."
673 :group 'org-export-latex
674 :version "24.4"
675 :package-version '(Org . "8.3")
676 :type 'function)
679 ;;;; Inlinetasks
681 (defcustom org-latex-format-inlinetask-function
682 'org-latex-format-inlinetask-default-function
683 "Function called to format an inlinetask in LaTeX code.
685 The function must accept seven parameters:
686 TODO the todo keyword (string or nil)
687 TODO-TYPE the todo type (symbol: `todo', `done', nil)
688 PRIORITY the inlinetask priority (integer or nil)
689 NAME the inlinetask name (string)
690 TAGS the inlinetask tags (list of strings or nil)
691 CONTENTS the contents of the inlinetask (string or nil)
692 INFO the export options (plist)
694 The function should return the string to be exported."
695 :group 'org-export-latex
696 :type 'function
697 :version "24.5"
698 :package-version '(Org . "8.3"))
701 ;; Src blocks
703 (defcustom org-latex-listings nil
704 "Non-nil means export source code using the listings package.
706 This package will fontify source code, possibly even with color.
707 If you want to use this, you also need to make LaTeX use the
708 listings package, and if you want to have color, the color
709 package. Just add these to `org-latex-packages-alist', for
710 example using customize, or with something like:
712 \(require 'ox-latex)
713 \(add-to-list 'org-latex-packages-alist '(\"\" \"listings\"))
714 \(add-to-list 'org-latex-packages-alist '(\"\" \"color\"))
716 Alternatively,
718 \(setq org-latex-listings 'minted)
720 causes source code to be exported using the minted package as
721 opposed to listings. If you want to use minted, you need to add
722 the minted package to `org-latex-packages-alist', for example
723 using customize, or with
725 \(require 'ox-latex)
726 \(add-to-list 'org-latex-packages-alist '(\"\" \"minted\"))
728 In addition, it is necessary to install pygments
729 \(http://pygments.org), and to configure the variable
730 `org-latex-pdf-process' so that the -shell-escape option is
731 passed to pdflatex.
733 The minted choice has possible repercussions on the preview of
734 latex fragments (see `org-preview-latex-fragment'). If you run
735 into previewing problems, please consult
737 http://orgmode.org/worg/org-tutorials/org-latex-preview.html"
738 :group 'org-export-latex
739 :type '(choice
740 (const :tag "Use listings" t)
741 (const :tag "Use minted" minted)
742 (const :tag "Export verbatim" nil))
743 :safe (lambda (s) (memq s '(t nil minted))))
745 (defcustom org-latex-listings-langs
746 '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
747 (c "C") (cc "C++")
748 (fortran "fortran")
749 (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
750 (html "HTML") (xml "XML")
751 (tex "TeX") (latex "[LaTeX]TeX")
752 (shell-script "bash")
753 (gnuplot "Gnuplot")
754 (ocaml "Caml") (caml "Caml")
755 (sql "SQL") (sqlite "sql")
756 (makefile "make"))
757 "Alist mapping languages to their listing language counterpart.
758 The key is a symbol, the major mode symbol without the \"-mode\".
759 The value is the string that should be inserted as the language
760 parameter for the listings package. If the mode name and the
761 listings name are the same, the language does not need an entry
762 in this list - but it does not hurt if it is present."
763 :group 'org-export-latex
764 :version "24.4"
765 :package-version '(Org . "8.3")
766 :type '(repeat
767 (list
768 (symbol :tag "Major mode ")
769 (string :tag "Listings language"))))
771 (defcustom org-latex-listings-options nil
772 "Association list of options for the latex listings package.
774 These options are supplied as a comma-separated list to the
775 \\lstset command. Each element of the association list should be
776 a list containing two strings: the name of the option, and the
777 value. For example,
779 \(setq org-latex-listings-options
780 '((\"basicstyle\" \"\\\\small\")
781 \(\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
783 will typeset the code in a small size font with underlined, bold
784 black keywords.
786 Note that the same options will be applied to blocks of all
787 languages. If you need block-specific options, you may use the
788 following syntax:
790 #+ATTR_LATEX: :options key1=value1,key2=value2
791 #+BEGIN_SRC <LANG>
793 #+END_SRC"
794 :group 'org-export-latex
795 :type '(repeat
796 (list
797 (string :tag "Listings option name ")
798 (string :tag "Listings option value"))))
800 (defcustom org-latex-minted-langs
801 '((emacs-lisp "common-lisp")
802 (cc "c++")
803 (cperl "perl")
804 (shell-script "bash")
805 (caml "ocaml"))
806 "Alist mapping languages to their minted language counterpart.
807 The key is a symbol, the major mode symbol without the \"-mode\".
808 The value is the string that should be inserted as the language
809 parameter for the minted package. If the mode name and the
810 listings name are the same, the language does not need an entry
811 in this list - but it does not hurt if it is present.
813 Note that minted uses all lower case for language identifiers,
814 and that the full list of language identifiers can be obtained
815 with:
817 pygmentize -L lexers"
818 :group 'org-export-latex
819 :type '(repeat
820 (list
821 (symbol :tag "Major mode ")
822 (string :tag "Minted language"))))
824 (defcustom org-latex-minted-options nil
825 "Association list of options for the latex minted package.
827 These options are supplied within square brackets in
828 \\begin{minted} environments. Each element of the alist should
829 be a list containing two strings: the name of the option, and the
830 value. For example,
832 \(setq org-latex-minted-options
833 '\((\"bgcolor\" \"bg\") \(\"frame\" \"lines\")))
835 will result in src blocks being exported with
837 \\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
839 as the start of the minted environment. Note that the same
840 options will be applied to blocks of all languages. If you need
841 block-specific options, you may use the following syntax:
843 #+ATTR_LATEX: :options key1=value1,key2=value2
844 #+BEGIN_SRC <LANG>
846 #+END_SRC"
847 :group 'org-export-latex
848 :type '(repeat
849 (list
850 (string :tag "Minted option name ")
851 (string :tag "Minted option value"))))
853 (defvar org-latex-custom-lang-environments nil
854 "Alist mapping languages to language-specific LaTeX environments.
856 It is used during export of src blocks by the listings and minted
857 latex packages. For example,
859 \(setq org-latex-custom-lang-environments
860 '\(\(python \"pythoncode\"\)\)\)
862 would have the effect that if org encounters begin_src python
863 during latex export it will output
865 \\begin{pythoncode}
866 <src block body>
867 \\end{pythoncode}")
870 ;;;; Compilation
872 (defcustom org-latex-pdf-process
873 '("pdflatex -interaction nonstopmode -output-directory %o %f"
874 "pdflatex -interaction nonstopmode -output-directory %o %f"
875 "pdflatex -interaction nonstopmode -output-directory %o %f")
876 "Commands to process a LaTeX file to a PDF file.
877 This is a list of strings, each of them will be given to the
878 shell as a command. %f in the command will be replaced by the
879 full file name, %b by the file base name (i.e. without directory
880 and extension parts) and %o by the base directory of the file.
882 The reason why this is a list is that it usually takes several
883 runs of `pdflatex', maybe mixed with a call to `bibtex'. Org
884 does not have a clever mechanism to detect which of these
885 commands have to be run to get to a stable result, and it also
886 does not do any error checking.
888 By default, Org uses 3 runs of `pdflatex' to do the processing.
889 If you have texi2dvi on your system and if that does not cause
890 the infamous egrep/locale bug:
892 http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
894 then `texi2dvi' is the superior choice as it automates the LaTeX
895 build process by calling the \"correct\" combinations of
896 auxiliary programs. Org does offer `texi2dvi' as one of the
897 customize options. Alternatively, `rubber' and `latexmk' also
898 provide similar functionality. The latter supports `biber' out
899 of the box.
901 Alternatively, this may be a Lisp function that does the
902 processing, so you could use this to apply the machinery of
903 AUCTeX or the Emacs LaTeX mode. This function should accept the
904 file name as its single argument."
905 :group 'org-export-pdf
906 :type '(choice
907 (repeat :tag "Shell command sequence"
908 (string :tag "Shell command"))
909 (const :tag "2 runs of pdflatex"
910 ("pdflatex -interaction nonstopmode -output-directory %o %f"
911 "pdflatex -interaction nonstopmode -output-directory %o %f"))
912 (const :tag "3 runs of pdflatex"
913 ("pdflatex -interaction nonstopmode -output-directory %o %f"
914 "pdflatex -interaction nonstopmode -output-directory %o %f"
915 "pdflatex -interaction nonstopmode -output-directory %o %f"))
916 (const :tag "pdflatex,bibtex,pdflatex,pdflatex"
917 ("pdflatex -interaction nonstopmode -output-directory %o %f"
918 "bibtex %b"
919 "pdflatex -interaction nonstopmode -output-directory %o %f"
920 "pdflatex -interaction nonstopmode -output-directory %o %f"))
921 (const :tag "2 runs of xelatex"
922 ("xelatex -interaction nonstopmode -output-directory %o %f"
923 "xelatex -interaction nonstopmode -output-directory %o %f"))
924 (const :tag "3 runs of xelatex"
925 ("xelatex -interaction nonstopmode -output-directory %o %f"
926 "xelatex -interaction nonstopmode -output-directory %o %f"
927 "xelatex -interaction nonstopmode -output-directory %o %f"))
928 (const :tag "xelatex,bibtex,xelatex,xelatex"
929 ("xelatex -interaction nonstopmode -output-directory %o %f"
930 "bibtex %b"
931 "xelatex -interaction nonstopmode -output-directory %o %f"
932 "xelatex -interaction nonstopmode -output-directory %o %f"))
933 (const :tag "texi2dvi"
934 ("texi2dvi -p -b -V %f"))
935 (const :tag "rubber"
936 ("rubber -d --into %o %f"))
937 (const :tag "latexmk"
938 ("latexmk -g -pdf %f"))
939 (function)))
941 (defcustom org-latex-logfiles-extensions
942 '("aux" "bcf" "blg" "fdb_latexmk" "fls" "figlist" "idx" "log" "nav" "out"
943 "run.xml" "snm" "toc" "vrb" "xdv")
944 "The list of file extensions to consider as LaTeX logfiles.
945 The logfiles will be remove if `org-latex-remove-logfiles' is
946 non-nil."
947 :group 'org-export-latex
948 :type '(repeat (string :tag "Extension")))
950 (defcustom org-latex-remove-logfiles t
951 "Non-nil means remove the logfiles produced by PDF production.
952 By default, logfiles are files with these extensions: .aux, .idx,
953 .log, .out, .toc, .nav, .snm and .vrb. To define the set of
954 logfiles to remove, set `org-latex-logfiles-extensions'."
955 :group 'org-export-latex
956 :type 'boolean)
958 (defcustom org-latex-known-warnings
959 '(("Reference.*?undefined" . "[undefined reference]")
960 ("Runaway argument" . "[runaway argument]")
961 ("Underfull \\hbox" . "[underfull hbox]")
962 ("Overfull \\hbox" . "[overfull hbox]")
963 ("Citation.*?undefined" . "[undefined citation]")
964 ("Undefined control sequence" . "[undefined control sequence]"))
965 "Alist of regular expressions and associated messages for the user.
966 The regular expressions are used to find possible warnings in the
967 log of a latex-run. These warnings will be reported after
968 calling `org-latex-compile'."
969 :group 'org-export-latex
970 :version "24.5"
971 :package-version '(Org . "8.3")
972 :type '(repeat
973 (cons
974 (string :tag "Regexp")
975 (string :tag "Message"))))
979 ;;; Internal Functions
981 (defun org-latex--caption/label-string (element info)
982 "Return caption and label LaTeX string for ELEMENT.
984 INFO is a plist holding contextual information. If there's no
985 caption nor label, return the empty string.
987 For non-floats, see `org-latex--wrap-label'."
988 (let* ((label (org-element-property :name element))
989 (label-str (if (not (org-string-nw-p label)) ""
990 (format "\\label{%s}"
991 (org-export-solidify-link-text label))))
992 (main (org-export-get-caption element))
993 (short (org-export-get-caption element t))
994 (caption-from-attr-latex (org-export-read-attribute :attr_latex element :caption)))
995 (cond
996 ((org-string-nw-p caption-from-attr-latex)
997 (concat caption-from-attr-latex "\n"))
998 ((and (not main) (equal label-str "")) "")
999 ((not main) (concat label-str "\n"))
1000 ;; Option caption format with short name.
1001 (short (format "\\caption[%s]{%s%s}\n"
1002 (org-export-data short info)
1003 label-str
1004 (org-export-data main info)))
1005 ;; Standard caption format.
1006 (t (format "\\caption{%s%s}\n" label-str (org-export-data main info))))))
1008 (defun org-latex-guess-inputenc (header)
1009 "Set the coding system in inputenc to what the buffer is.
1011 HEADER is the LaTeX header string. This function only applies
1012 when specified inputenc option is \"AUTO\".
1014 Return the new header, as a string."
1015 (let* ((cs (or (ignore-errors
1016 (latexenc-coding-system-to-inputenc
1017 (or org-export-coding-system buffer-file-coding-system)))
1018 "utf8")))
1019 (if (not cs) header
1020 ;; First translate if that is requested.
1021 (setq cs (or (cdr (assoc cs org-latex-inputenc-alist)) cs))
1022 ;; Then find the \usepackage statement and replace the option.
1023 (replace-regexp-in-string "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
1024 cs header t nil 1))))
1026 (defun org-latex-guess-babel-language (header info)
1027 "Set Babel's language according to LANGUAGE keyword.
1029 HEADER is the LaTeX header string. INFO is the plist used as
1030 a communication channel.
1032 Insertion of guessed language only happens when Babel package has
1033 explicitly been loaded. Then it is added to the rest of
1034 package's options.
1036 The argument to Babel may be \"AUTO\" which is then replaced with
1037 the language of the document or `org-export-default-language'
1038 unless language in question is already loaded.
1040 Return the new header."
1041 (let ((language-code (plist-get info :language)))
1042 ;; If no language is set or Babel package is not loaded, return
1043 ;; HEADER as-is.
1044 (if (or (not (stringp language-code))
1045 (not (string-match "\\\\usepackage\\[\\(.*\\)\\]{babel}" header)))
1046 header
1047 (let ((options (save-match-data
1048 (org-split-string (match-string 1 header) ",[ \t]*")))
1049 (language (cdr (assoc language-code
1050 org-latex-babel-language-alist))))
1051 ;; If LANGUAGE is already loaded, return header without AUTO.
1052 ;; Otherwise, replace AUTO with language or append language if
1053 ;; AUTO is not present.
1054 (replace-match
1055 (mapconcat (lambda (option) (if (equal "AUTO" option) language option))
1056 (cond ((member language options) (delete "AUTO" options))
1057 ((member "AUTO" options) options)
1058 (t (append options (list language))))
1059 ", ")
1060 t nil header 1)))))
1062 (defun org-latex--find-verb-separator (s)
1063 "Return a character not used in string S.
1064 This is used to choose a separator for constructs like \\verb."
1065 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
1066 (loop for c across ll
1067 when (not (string-match (regexp-quote (char-to-string c)) s))
1068 return (char-to-string c))))
1070 (defun org-latex--make-option-string (options)
1071 "Return a comma separated string of keywords and values.
1072 OPTIONS is an alist where the key is the options keyword as
1073 a string, and the value a list containing the keyword value, or
1074 nil."
1075 (mapconcat (lambda (pair)
1076 (concat (first pair)
1077 (when (> (length (second pair)) 0)
1078 (concat "=" (second pair)))))
1079 options
1080 ","))
1082 (defun org-latex--wrap-label (element output)
1083 "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
1084 This function shouldn't be used for floats. See
1085 `org-latex--caption/label-string'."
1086 (let ((label (org-element-property :name element)))
1087 (if (not (and (org-string-nw-p output) (org-string-nw-p label))) output
1088 (concat (format "\\label{%s}\n" (org-export-solidify-link-text label))
1089 output))))
1091 (defun org-latex--text-markup (text markup info)
1092 "Format TEXT depending on MARKUP text markup.
1093 INFO is a plist used as a communication channel. See
1094 `org-latex-text-markup-alist' for details."
1095 (let ((fmt (cdr (assq markup (plist-get info :latex-text-markup-alist)))))
1096 (cond
1097 ;; No format string: Return raw text.
1098 ((not fmt) text)
1099 ;; Handle the `verb' special case: Find an appropriate separator
1100 ;; and use "\\verb" command.
1101 ((eq 'verb fmt)
1102 (let ((separator (org-latex--find-verb-separator text)))
1103 (concat "\\verb" separator
1104 (replace-regexp-in-string "\n" " " text)
1105 separator)))
1106 ;; Handle the `protectedtexttt' special case: Protect some
1107 ;; special chars and use "\texttt{%s}" format string.
1108 ((eq 'protectedtexttt fmt)
1109 (let ((start 0)
1110 (trans '(("\\" . "\\textbackslash{}")
1111 ("~" . "\\textasciitilde{}")
1112 ("^" . "\\textasciicircum{}")))
1113 (rtn "")
1114 char)
1115 (while (string-match "[\\{}$%&_#~^]" text)
1116 (setq char (match-string 0 text))
1117 (if (> (match-beginning 0) 0)
1118 (setq rtn (concat rtn (substring text 0 (match-beginning 0)))))
1119 (setq text (substring text (1+ (match-beginning 0))))
1120 (setq char (or (cdr (assoc char trans)) (concat "\\" char))
1121 rtn (concat rtn char)))
1122 (setq text (concat rtn text)
1123 fmt "\\texttt{%s}")
1124 (while (string-match "--" text)
1125 (setq text (replace-match "-{}-" t t text)))
1126 (format fmt text)))
1127 ;; Else use format string.
1128 (t (format fmt text)))))
1130 (defun org-latex--delayed-footnotes-definitions (element info)
1131 "Return footnotes definitions in ELEMENT as a string.
1133 INFO is a plist used as a communication channel.
1135 Footnotes definitions are returned within \"\\footnotetxt{}\"
1136 commands.
1138 This function is used within constructs that don't support
1139 \"\\footnote{}\" command (i.e. an item's tag). In that case,
1140 \"\\footnotemark\" is used within the construct and the function
1141 just outside of it."
1142 (mapconcat
1143 (lambda (ref)
1144 (format
1145 "\\footnotetext[%s]{%s}"
1146 (org-export-get-footnote-number ref info)
1147 (org-trim
1148 (org-export-data
1149 (org-export-get-footnote-definition ref info) info))))
1150 ;; Find every footnote reference in ELEMENT.
1151 (let* (all-refs
1152 search-refs ; For byte-compiler.
1153 (search-refs
1154 (function
1155 (lambda (data)
1156 ;; Return a list of all footnote references never seen
1157 ;; before in DATA.
1158 (org-element-map data 'footnote-reference
1159 (lambda (ref)
1160 (when (org-export-footnote-first-reference-p ref info)
1161 (push ref all-refs)
1162 (when (eq (org-element-property :type ref) 'standard)
1163 (funcall search-refs
1164 (org-export-get-footnote-definition ref info)))))
1165 info)
1166 (reverse all-refs)))))
1167 (funcall search-refs element))
1168 ""))
1170 (defun org-latex--translate (s info)
1171 "Translate string S according to specified language.
1172 INFO is a plist used as a communication channel."
1173 (org-export-translate s :latex info))
1177 ;;; Template
1179 (defun org-latex-template (contents info)
1180 "Return complete document string after LaTeX conversion.
1181 CONTENTS is the transcoded contents string. INFO is a plist
1182 holding export options."
1183 (let ((title (org-export-data (plist-get info :title) info)))
1184 (concat
1185 ;; Time-stamp.
1186 (and (plist-get info :time-stamp-file)
1187 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
1188 ;; Document class and packages.
1189 (let* ((class (plist-get info :latex-class))
1190 (class-options (plist-get info :latex-class-options))
1191 (header (nth 1 (assoc class (plist-get info :latex-classes))))
1192 (document-class-string
1193 (and (stringp header)
1194 (if (not class-options) header
1195 (replace-regexp-in-string
1196 "^[ \t]*\\\\documentclass\\(\\(\\[[^]]*\\]\\)?\\)"
1197 class-options header t nil 1)))))
1198 (if (not document-class-string)
1199 (user-error "Unknown LaTeX class `%s'" class)
1200 (org-latex-guess-babel-language
1201 (org-latex-guess-inputenc
1202 (org-element-normalize-string
1203 (org-splice-latex-header
1204 document-class-string
1205 org-latex-default-packages-alist
1206 org-latex-packages-alist nil
1207 (concat (org-element-normalize-string
1208 (plist-get info :latex-header))
1209 (plist-get info :latex-header-extra)))))
1210 info)))
1211 ;; Possibly limit depth for headline numbering.
1212 (let ((sec-num (plist-get info :section-numbers)))
1213 (when (integerp sec-num)
1214 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
1215 ;; Author.
1216 (let ((author (and (plist-get info :with-author)
1217 (let ((auth (plist-get info :author)))
1218 (and auth (org-export-data auth info)))))
1219 (email (and (plist-get info :with-email)
1220 (org-export-data (plist-get info :email) info))))
1221 (cond ((and author email (not (string= "" email)))
1222 (format "\\author{%s\\thanks{%s}}\n" author email))
1223 ((or author email) (format "\\author{%s}\n" (or author email)))))
1224 ;; Date.
1225 (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
1226 (format "\\date{%s}\n" (org-export-data date info)))
1227 ;; Title
1228 (format "\\title{%s}\n" title)
1229 ;; Hyperref options.
1230 (format-spec (plist-get info :latex-hyperref-template)
1231 (format-spec-make
1232 ?k (or (plist-get info :keywords) "")
1233 ?d (or (plist-get info :description)"")
1234 ?c (if (plist-get info :with-creator)
1235 (plist-get info :creator)
1236 "")))
1237 ;; Document start.
1238 "\\begin{document}\n\n"
1239 ;; Title command.
1240 (let ((command (plist-get info :latex-title-command)))
1241 (org-element-normalize-string
1242 (cond ((string= "" title) nil)
1243 ((not (stringp command)) nil)
1244 ((string-match "\\(?:[^%]\\|^\\)%s" command)
1245 (format command title))
1246 (t command))))
1247 ;; Table of contents.
1248 (let ((depth (plist-get info :with-toc)))
1249 (when depth
1250 (concat (when (wholenump depth)
1251 (format "\\setcounter{tocdepth}{%d}\n" depth))
1252 (plist-get info :latex-toc-command))))
1253 ;; Document's body.
1254 contents
1255 ;; Creator.
1256 (let ((creator-info (plist-get info :with-creator)))
1257 (cond
1258 ((not creator-info) "")
1259 ((eq creator-info 'comment)
1260 (format "%% %s\n" (plist-get info :creator)))
1261 (t (concat (plist-get info :creator) "\n"))))
1262 ;; Document end.
1263 "\\end{document}")))
1267 ;;; Transcode Functions
1269 ;;;; Bold
1271 (defun org-latex-bold (bold contents info)
1272 "Transcode BOLD from Org to LaTeX.
1273 CONTENTS is the text with bold markup. INFO is a plist holding
1274 contextual information."
1275 (org-latex--text-markup contents 'bold info))
1278 ;;;; Center Block
1280 (defun org-latex-center-block (center-block contents info)
1281 "Transcode a CENTER-BLOCK element from Org to LaTeX.
1282 CONTENTS holds the contents of the center block. INFO is a plist
1283 holding contextual information."
1284 (org-latex--wrap-label
1285 center-block
1286 (format "\\begin{center}\n%s\\end{center}" contents)))
1289 ;;;; Clock
1291 (defun org-latex-clock (clock contents info)
1292 "Transcode a CLOCK element from Org to LaTeX.
1293 CONTENTS is nil. INFO is a plist holding contextual
1294 information."
1295 (concat
1296 "\\noindent"
1297 (format "\\textbf{%s} " org-clock-string)
1298 (format (plist-get info :latex-inactive-timestamp-format)
1299 (concat (org-translate-time
1300 (org-element-property :raw-value
1301 (org-element-property :value clock)))
1302 (let ((time (org-element-property :duration clock)))
1303 (and time (format " (%s)" time)))))
1304 "\\\\"))
1307 ;;;; Code
1309 (defun org-latex-code (code contents info)
1310 "Transcode a CODE object from Org to LaTeX.
1311 CONTENTS is nil. INFO is a plist used as a communication
1312 channel."
1313 (org-latex--text-markup (org-element-property :value code) 'code info))
1316 ;;;; Drawer
1318 (defun org-latex-drawer (drawer contents info)
1319 "Transcode a DRAWER element from Org to LaTeX.
1320 CONTENTS holds the contents of the block. INFO is a plist
1321 holding contextual information."
1322 (let* ((name (org-element-property :drawer-name drawer))
1323 (output (funcall (plist-get info :latex-format-drawer-function)
1324 name contents)))
1325 (org-latex--wrap-label drawer output)))
1328 ;;;; Dynamic Block
1330 (defun org-latex-dynamic-block (dynamic-block contents info)
1331 "Transcode a DYNAMIC-BLOCK element from Org to LaTeX.
1332 CONTENTS holds the contents of the block. INFO is a plist
1333 holding contextual information. See `org-export-data'."
1334 (org-latex--wrap-label dynamic-block contents))
1337 ;;;; Entity
1339 (defun org-latex-entity (entity contents info)
1340 "Transcode an ENTITY object from Org to LaTeX.
1341 CONTENTS are the definition itself. INFO is a plist holding
1342 contextual information."
1343 (org-element-property :latex entity))
1346 ;;;; Example Block
1348 (defun org-latex-example-block (example-block contents info)
1349 "Transcode an EXAMPLE-BLOCK element from Org to LaTeX.
1350 CONTENTS is nil. INFO is a plist holding contextual
1351 information."
1352 (when (org-string-nw-p (org-element-property :value example-block))
1353 (org-latex--wrap-label
1354 example-block
1355 (format "\\begin{verbatim}\n%s\\end{verbatim}"
1356 (org-export-format-code-default example-block info)))))
1359 ;;;; Export Block
1361 (defun org-latex-export-block (export-block contents info)
1362 "Transcode a EXPORT-BLOCK element from Org to LaTeX.
1363 CONTENTS is nil. INFO is a plist holding contextual information."
1364 (when (member (org-element-property :type export-block) '("LATEX" "TEX"))
1365 (org-remove-indentation (org-element-property :value export-block))))
1368 ;;;; Export Snippet
1370 (defun org-latex-export-snippet (export-snippet contents info)
1371 "Transcode a EXPORT-SNIPPET object from Org to LaTeX.
1372 CONTENTS is nil. INFO is a plist holding contextual information."
1373 (when (eq (org-export-snippet-backend export-snippet) 'latex)
1374 (org-element-property :value export-snippet)))
1377 ;;;; Fixed Width
1379 (defun org-latex-fixed-width (fixed-width contents info)
1380 "Transcode a FIXED-WIDTH element from Org to LaTeX.
1381 CONTENTS is nil. INFO is a plist holding contextual information."
1382 (org-latex--wrap-label
1383 fixed-width
1384 (format "\\begin{verbatim}\n%s\\end{verbatim}"
1385 (org-remove-indentation
1386 (org-element-property :value fixed-width)))))
1389 ;;;; Footnote Reference
1391 (defun org-latex-footnote-reference (footnote-reference contents info)
1392 "Transcode a FOOTNOTE-REFERENCE element from Org to LaTeX.
1393 CONTENTS is nil. INFO is a plist holding contextual information."
1394 (concat
1395 ;; Insert separator between two footnotes in a row.
1396 (let ((prev (org-export-get-previous-element footnote-reference info)))
1397 (when (eq (org-element-type prev) 'footnote-reference)
1398 (plist-get info :latex-footnote-separator)))
1399 (cond
1400 ;; Use \footnotemark if the footnote has already been defined.
1401 ((not (org-export-footnote-first-reference-p footnote-reference info))
1402 (format "\\footnotemark[%s]{}"
1403 (org-export-get-footnote-number footnote-reference info)))
1404 ;; Use \footnotemark if reference is within another footnote
1405 ;; reference, footnote definition or table cell.
1406 ((loop for parent in (org-export-get-genealogy footnote-reference)
1407 thereis (memq (org-element-type parent)
1408 '(footnote-reference footnote-definition table-cell)))
1409 "\\footnotemark")
1410 ;; Otherwise, define it with \footnote command.
1412 (let ((def (org-export-get-footnote-definition footnote-reference info)))
1413 (concat
1414 (format "\\footnote{%s}" (org-trim (org-export-data def info)))
1415 ;; Retrieve all footnote references within the footnote and
1416 ;; add their definition after it, since LaTeX doesn't support
1417 ;; them inside.
1418 (org-latex--delayed-footnotes-definitions def info)))))))
1421 ;;;; Headline
1423 (defun org-latex-headline (headline contents info)
1424 "Transcode a HEADLINE element from Org to LaTeX.
1425 CONTENTS holds the contents of the headline. INFO is a plist
1426 holding contextual information."
1427 (unless (org-element-property :footnote-section-p headline)
1428 (let* ((class (plist-get info :latex-class))
1429 (level (org-export-get-relative-level headline info))
1430 (numberedp (org-export-numbered-headline-p headline info))
1431 (class-sectioning (assoc class (plist-get info :latex-classes)))
1432 ;; Section formatting will set two placeholders: one for
1433 ;; the title and the other for the contents.
1434 (section-fmt
1435 (let ((sec (if (functionp (nth 2 class-sectioning))
1436 (funcall (nth 2 class-sectioning) level numberedp)
1437 (nth (1+ level) class-sectioning))))
1438 (cond
1439 ;; No section available for that LEVEL.
1440 ((not sec) nil)
1441 ;; Section format directly returned by a function. Add
1442 ;; placeholder for contents.
1443 ((stringp sec) (concat sec "\n%s"))
1444 ;; (numbered-section . unnumbered-section)
1445 ((not (consp (cdr sec)))
1446 (concat (funcall (if numberedp #'car #'cdr) sec) "\n%s"))
1447 ;; (numbered-open numbered-close)
1448 ((= (length sec) 2)
1449 (when numberedp (concat (car sec) "\n%s" (nth 1 sec))))
1450 ;; (num-in num-out no-num-in no-num-out)
1451 ((= (length sec) 4)
1452 (if numberedp (concat (car sec) "\n%s" (nth 1 sec))
1453 (concat (nth 2 sec) "\n%s" (nth 3 sec)))))))
1454 ;; Create a temporary export back-end that hard-codes
1455 ;; "\underline" within "\section" and alike.
1456 (section-back-end
1457 (org-export-create-backend
1458 :parent 'latex
1459 :transcoders
1460 '((underline . (lambda (o c i) (format "\\underline{%s}" c))))))
1461 (text
1462 (org-export-data-with-backend
1463 (org-element-property :title headline) section-back-end info))
1464 (todo
1465 (and (plist-get info :with-todo-keywords)
1466 (let ((todo (org-element-property :todo-keyword headline)))
1467 (and todo (org-export-data todo info)))))
1468 (todo-type (and todo (org-element-property :todo-type headline)))
1469 (tags (and (plist-get info :with-tags)
1470 (org-export-get-tags headline info)))
1471 (priority (and (plist-get info :with-priority)
1472 (org-element-property :priority headline)))
1473 ;; Create the headline text along with a no-tag version.
1474 ;; The latter is required to remove tags from toc.
1475 (full-text (funcall (plist-get info :latex-format-headline-function)
1476 todo todo-type priority text tags info))
1477 ;; Associate \label to the headline for internal links.
1478 (headline-label
1479 (let ((custom-label
1480 (and (plist-get info :latex-custom-id-labels)
1481 (org-element-property :CUSTOM_ID headline))))
1482 (if custom-label (format "\\label{%s}\n" custom-label)
1483 (format "\\label{sec-%s}\n"
1484 (mapconcat
1485 #'number-to-string
1486 (org-export-get-headline-number headline info)
1487 "-")))))
1488 (pre-blanks
1489 (make-string (org-element-property :pre-blank headline) 10)))
1490 (if (or (not section-fmt) (org-export-low-level-p headline info))
1491 ;; This is a deep sub-tree: export it as a list item. Also
1492 ;; export as items headlines for which no section format has
1493 ;; been found.
1494 (let ((low-level-body
1495 (concat
1496 ;; If headline is the first sibling, start a list.
1497 (when (org-export-first-sibling-p headline info)
1498 (format "\\begin{%s}\n" (if numberedp 'enumerate 'itemize)))
1499 ;; Itemize headline
1500 "\\item"
1501 (and full-text (org-string-match-p "\\`[ \t]*\\[" full-text)
1502 "\\relax")
1503 " " full-text "\n"
1504 headline-label
1505 pre-blanks
1506 contents)))
1507 ;; If headline is not the last sibling simply return
1508 ;; LOW-LEVEL-BODY. Otherwise, also close the list, before
1509 ;; any blank line.
1510 (if (not (org-export-last-sibling-p headline info)) low-level-body
1511 (replace-regexp-in-string
1512 "[ \t\n]*\\'"
1513 (format "\n\\\\end{%s}" (if numberedp 'enumerate 'itemize))
1514 low-level-body)))
1515 ;; This is a standard headline. Export it as a section. Add
1516 ;; an alternative heading when possible, and when this is not
1517 ;; identical to the usual heading.
1518 (let ((opt-title
1519 (funcall (plist-get info :latex-format-headline-function)
1520 todo todo-type priority
1521 (org-export-data-with-backend
1522 (org-export-get-alt-title headline info)
1523 section-back-end info)
1524 (and (eq (plist-get info :with-tags) t) tags)
1525 info)))
1526 (if (and numberedp opt-title
1527 (not (equal opt-title full-text))
1528 (string-match "\\`\\\\\\(.*?[^*]\\){" section-fmt))
1529 (format (replace-match "\\1[%s]" nil nil section-fmt 1)
1530 ;; Replace square brackets with parenthesis
1531 ;; since square brackets are not supported in
1532 ;; optional arguments.
1533 (replace-regexp-in-string
1534 "\\[" "(" (replace-regexp-in-string "\\]" ")" opt-title))
1535 full-text
1536 (concat headline-label pre-blanks contents))
1537 ;; Impossible to add an alternative heading. Fallback to
1538 ;; regular sectioning format string.
1539 (format section-fmt full-text
1540 (concat headline-label pre-blanks contents))))))))
1542 (defun org-latex-format-headline-default-function
1543 (todo todo-type priority text tags info)
1544 "Default format function for a headline.
1545 See `org-latex-format-headline-function' for details."
1546 (concat
1547 (and todo (format "{\\bfseries\\sffamily %s} " todo))
1548 (and priority (format "\\framebox{\\#%c} " priority))
1549 text
1550 (and tags
1551 (format "\\hfill{}\\textsc{%s}"
1552 (mapconcat (lambda (tag) (org-latex-plain-text tag info))
1553 tags ":")))))
1556 ;;;; Horizontal Rule
1558 (defun org-latex-horizontal-rule (horizontal-rule contents info)
1559 "Transcode an HORIZONTAL-RULE object from Org to LaTeX.
1560 CONTENTS is nil. INFO is a plist holding contextual information."
1561 (let ((attr (org-export-read-attribute :attr_latex horizontal-rule))
1562 (prev (org-export-get-previous-element horizontal-rule info)))
1563 (concat
1564 ;; Make sure the rule doesn't start at the end of the current
1565 ;; line by separating it with a blank line from previous element.
1566 (when (and prev
1567 (let ((prev-blank (org-element-property :post-blank prev)))
1568 (or (not prev-blank) (zerop prev-blank))))
1569 "\n")
1570 (org-latex--wrap-label
1571 horizontal-rule
1572 (format "\\rule{%s}{%s}"
1573 (or (plist-get attr :width) "\\linewidth")
1574 (or (plist-get attr :thickness) "0.5pt"))))))
1577 ;;;; Inline Src Block
1579 (defun org-latex-inline-src-block (inline-src-block contents info)
1580 "Transcode an INLINE-SRC-BLOCK element from Org to LaTeX.
1581 CONTENTS holds the contents of the item. INFO is a plist holding
1582 contextual information."
1583 (let* ((code (org-element-property :value inline-src-block))
1584 (separator (org-latex--find-verb-separator code)))
1585 (case (plist-get info :latex-listings)
1586 ;; Do not use a special package: transcode it verbatim.
1587 ((nil) (concat "\\verb" separator code separator))
1588 ;; Use minted package.
1589 (minted
1590 (let* ((org-lang (org-element-property :language inline-src-block))
1591 (mint-lang (or (cadr (assq (intern org-lang)
1592 (plist-get info :latex-minted-langs)))
1593 (downcase org-lang)))
1594 (options (org-latex--make-option-string
1595 (plist-get info :latex-minted-options))))
1596 (concat (format "\\mint%s{%s}"
1597 (if (string= options "") "" (format "[%s]" options))
1598 mint-lang)
1599 separator code separator)))
1600 ;; Use listings package.
1601 (otherwise
1602 ;; Maybe translate language's name.
1603 (let* ((org-lang (org-element-property :language inline-src-block))
1604 (lst-lang (or (cadr (assq (intern org-lang)
1605 (plist-get info :latex-listings-langs)))
1606 org-lang))
1607 (options (org-latex--make-option-string
1608 (append (plist-get info :latex-listings-options)
1609 `(("language" ,lst-lang))))))
1610 (concat (format "\\lstinline[%s]" options)
1611 separator code separator))))))
1614 ;;;; Inlinetask
1616 (defun org-latex-inlinetask (inlinetask contents info)
1617 "Transcode an INLINETASK element from Org to LaTeX.
1618 CONTENTS holds the contents of the block. INFO is a plist
1619 holding contextual information."
1620 (let ((title (org-export-data (org-element-property :title inlinetask) info))
1621 (todo (and (plist-get info :with-todo-keywords)
1622 (let ((todo (org-element-property :todo-keyword inlinetask)))
1623 (and todo (org-export-data todo info)))))
1624 (todo-type (org-element-property :todo-type inlinetask))
1625 (tags (and (plist-get info :with-tags)
1626 (org-export-get-tags inlinetask info)))
1627 (priority (and (plist-get info :with-priority)
1628 (org-element-property :priority inlinetask)))
1629 (contents (concat
1630 (let ((label (org-element-property :CUSTOM_ID inlinetask)))
1631 (and label (format "\\label{%s}\n" label)))
1632 contents)))
1633 (funcall (plist-get info :latex-format-inlinetask-function)
1634 todo todo-type priority title tags contents info)))
1636 (defun org-latex-format-inlinetask-default-function
1637 (todo todo-type priority title tags contents info)
1638 "Default format function for a inlinetasks.
1639 See `org-latex-format-inlinetask-function' for details."
1640 (let ((full-title
1641 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
1642 (when priority (format "\\framebox{\\#%c} " priority))
1643 title
1644 (when tags
1645 (format "\\hfill{}\\textsc{:%s:}"
1646 (mapconcat
1647 (lambda (tag) (org-latex-plain-text tag info))
1648 tags ":"))))))
1649 (concat "\\begin{center}\n"
1650 "\\fbox{\n"
1651 "\\begin{minipage}[c]{.6\\textwidth}\n"
1652 full-title "\n\n"
1653 (and (org-string-nw-p contents)
1654 (concat "\\rule[.8em]{\\textwidth}{2pt}\n\n" contents))
1655 "\\end{minipage}\n"
1656 "}\n"
1657 "\\end{center}")))
1660 ;;;; Italic
1662 (defun org-latex-italic (italic contents info)
1663 "Transcode ITALIC from Org to LaTeX.
1664 CONTENTS is the text with italic markup. INFO is a plist holding
1665 contextual information."
1666 (org-latex--text-markup contents 'italic info))
1669 ;;;; Item
1671 (defun org-latex-item (item contents info)
1672 "Transcode an ITEM element from Org to LaTeX.
1673 CONTENTS holds the contents of the item. INFO is a plist holding
1674 contextual information."
1675 (let* ((counter
1676 (let ((count (org-element-property :counter item))
1677 (level
1678 ;; Determine level of current item to determine the
1679 ;; correct LaTeX counter to use (enumi, enumii...).
1680 (let ((parent item) (level 0))
1681 (while (memq (org-element-type
1682 (setq parent (org-export-get-parent parent)))
1683 '(plain-list item))
1684 (when (and (eq (org-element-type parent) 'plain-list)
1685 (eq (org-element-property :type parent)
1686 'ordered))
1687 (incf level)))
1688 level)))
1689 (and count
1690 (< level 5)
1691 (format "\\setcounter{enum%s}{%s}\n"
1692 (nth (1- level) '("i" "ii" "iii" "iv"))
1693 (1- count)))))
1694 (checkbox (case (org-element-property :checkbox item)
1695 (on "$\\boxtimes$ ")
1696 (off "$\\square$ ")
1697 (trans "$\\boxminus$ ")))
1698 (tag (let ((tag (org-element-property :tag item)))
1699 ;; Check-boxes must belong to the tag.
1700 (and tag (format "[{%s}] "
1701 (concat checkbox
1702 (org-export-data tag info)))))))
1703 (concat counter
1704 "\\item"
1705 (cond
1706 (tag)
1707 (checkbox (concat " " checkbox))
1708 ;; Without a tag or a check-box, if CONTENTS starts with
1709 ;; an opening square bracket, add "\relax" to "\item",
1710 ;; unless the brackets comes from an initial export
1711 ;; snippet (i.e. it is inserted willingly by the user).
1712 ((and contents
1713 (org-string-match-p "\\`[ \t]*\\[" contents)
1714 (not (let ((e (car (org-element-contents item))))
1715 (and (eq (org-element-type e) 'paragraph)
1716 (let ((o (car (org-element-contents e))))
1717 (and (eq (org-element-type o) 'export-snippet)
1718 (eq (org-export-snippet-backend o)
1719 'latex)))))))
1720 "\\relax ")
1721 (t " "))
1722 (and contents (org-trim contents))
1723 ;; If there are footnotes references in tag, be sure to
1724 ;; add their definition at the end of the item. This
1725 ;; workaround is necessary since "\footnote{}" command is
1726 ;; not supported in tags.
1727 (and tag
1728 (org-latex--delayed-footnotes-definitions
1729 (org-element-property :tag item) info)))))
1732 ;;;; Keyword
1734 (defun org-latex-keyword (keyword contents info)
1735 "Transcode a KEYWORD element from Org to LaTeX.
1736 CONTENTS is nil. INFO is a plist holding contextual information."
1737 (let ((key (org-element-property :key keyword))
1738 (value (org-element-property :value keyword)))
1739 (cond
1740 ((string= key "LATEX") value)
1741 ((string= key "INDEX") (format "\\index{%s}" value))
1742 ((string= key "TOC")
1743 (let ((value (downcase value)))
1744 (cond
1745 ((string-match "\\<headlines\\>" value)
1746 (let ((depth (or (and (string-match "[0-9]+" value)
1747 (string-to-number (match-string 0 value)))
1748 (plist-get info :with-toc))))
1749 (concat
1750 (when (wholenump depth)
1751 (format "\\setcounter{tocdepth}{%s}\n" depth))
1752 "\\tableofcontents")))
1753 ((string= "tables" value) "\\listoftables")
1754 ((string= "listings" value)
1755 (case (plist-get info :latex-listings)
1756 ((nil) "\\listoffigures")
1757 (minted "\\listoflistings")
1758 (otherwise "\\lstlistoflistings")))))))))
1761 ;;;; Latex Environment
1763 (defun org-latex-latex-environment (latex-environment contents info)
1764 "Transcode a LATEX-ENVIRONMENT element from Org to LaTeX.
1765 CONTENTS is nil. INFO is a plist holding contextual information."
1766 (when (plist-get info :with-latex)
1767 (let ((label (org-element-property :name latex-environment))
1768 (value (org-remove-indentation
1769 (org-element-property :value latex-environment))))
1770 (if (not (org-string-nw-p label)) value
1771 ;; Environment is labeled: label must be within the environment
1772 ;; (otherwise, a reference pointing to that element will count
1773 ;; the section instead).
1774 (with-temp-buffer
1775 (insert value)
1776 (goto-char (point-min))
1777 (forward-line)
1778 (insert
1779 (format "\\label{%s}\n" (org-export-solidify-link-text label)))
1780 (buffer-string))))))
1783 ;;;; Latex Fragment
1785 (defun org-latex-latex-fragment (latex-fragment contents info)
1786 "Transcode a LATEX-FRAGMENT object from Org to LaTeX.
1787 CONTENTS is nil. INFO is a plist holding contextual information."
1788 (let ((value (org-element-property :value latex-fragment)))
1789 ;; Trim math markers since the fragment is enclosed within
1790 ;; a latex-math-block object anyway.
1791 (cond ((string-match "\\`\\(\\$\\{1,2\\}\\)\\([^\000]*\\)\\1\\'" value)
1792 (match-string 2 value))
1793 ((string-match "\\`\\\\(\\([^\000]*\\)\\\\)\\'" value)
1794 (match-string 1 value))
1795 (t value))))
1798 ;;;; Line Break
1800 (defun org-latex-line-break (line-break contents info)
1801 "Transcode a LINE-BREAK object from Org to LaTeX.
1802 CONTENTS is nil. INFO is a plist holding contextual information."
1803 "\\\\\n")
1806 ;;;; Link
1808 (defun org-latex--inline-image (link info)
1809 "Return LaTeX code for an inline image.
1810 LINK is the link pointing to the inline image. INFO is a plist
1811 used as a communication channel."
1812 (let* ((parent (org-export-get-parent-element link))
1813 (path (let ((raw-path (org-element-property :path link)))
1814 (if (not (file-name-absolute-p raw-path)) raw-path
1815 (expand-file-name raw-path))))
1816 (filetype (file-name-extension path))
1817 (caption (org-latex--caption/label-string parent info))
1818 ;; Retrieve latex attributes from the element around.
1819 (attr (org-export-read-attribute :attr_latex parent))
1820 (float (let ((float (plist-get attr :float)))
1821 (cond ((and (not float) (plist-member attr :float)) nil)
1822 ((string= float "wrap") 'wrap)
1823 ((string= float "sideways") 'sideways)
1824 ((string= float "multicolumn") 'multicolumn)
1825 ((or float
1826 (org-element-property :caption parent)
1827 (org-string-nw-p (plist-get attr :caption)))
1828 'figure))))
1829 (placement
1830 (let ((place (plist-get attr :placement)))
1831 (cond
1832 (place (format "%s" place))
1833 ((eq float 'wrap) "{l}{0.5\\textwidth}")
1834 ((eq float 'figure)
1835 (format "[%s]" (plist-get info :latex-default-figure-position)))
1836 (t ""))))
1837 (comment-include (if (plist-get attr :comment-include) "%" ""))
1838 ;; It is possible to specify width and height in the
1839 ;; ATTR_LATEX line, and also via default variables.
1840 (width (cond ((plist-get attr :width))
1841 ((plist-get attr :height) "")
1842 ((eq float 'wrap) "0.48\\textwidth")
1843 (t (plist-get info :latex-image-default-width))))
1844 (height (cond ((plist-get attr :height))
1845 ((or (plist-get attr :width)
1846 (memq float '(figure wrap))) "")
1847 (t (plist-get info :latex-image-default-height))))
1848 (options (let ((opt (or (plist-get attr :options)
1849 (plist-get info :latex-image-default-option))))
1850 (if (not (string-match "\\`\\[\\(.*\\)\\]\\'" opt)) opt
1851 (match-string 1 opt))))
1852 image-code)
1853 (if (member filetype '("tikz" "pgf"))
1854 ;; For tikz images:
1855 ;; - use \input to read in image file.
1856 ;; - if options are present, wrap in a tikzpicture environment.
1857 ;; - if width or height are present, use \resizebox to change
1858 ;; the image size.
1859 (progn
1860 (setq image-code (format "\\input{%s}" path))
1861 (when (org-string-nw-p options)
1862 (setq image-code
1863 (format "\\begin{tikzpicture}[%s]\n%s\n\\end{tikzpicture}"
1864 options
1865 image-code)))
1866 (when (or (org-string-nw-p width) (org-string-nw-p height))
1867 (setq image-code (format "\\resizebox{%s}{%s}{%s}"
1868 (if (org-string-nw-p width) width "!")
1869 (if (org-string-nw-p height) height "!")
1870 image-code))))
1871 ;; For other images:
1872 ;; - add width and height to options.
1873 ;; - include the image with \includegraphics.
1874 (when (org-string-nw-p width)
1875 (setq options (concat options ",width=" width)))
1876 (when (org-string-nw-p height)
1877 (setq options (concat options ",height=" height)))
1878 (let ((search-option (org-element-property :search-option link)))
1879 (when (and search-option
1880 (equal filetype "pdf")
1881 (org-string-match-p "\\`[0-9]+\\'" search-option)
1882 (not (org-string-match-p "page=" options)))
1883 (setq options (concat options ",page=" search-option))))
1884 (setq image-code
1885 (format "\\includegraphics%s{%s}"
1886 (cond ((not (org-string-nw-p options)) "")
1887 ((= (aref options 0) ?,)
1888 (format "[%s]"(substring options 1)))
1889 (t (format "[%s]" options)))
1890 path))
1891 (when (equal filetype "svg")
1892 (setq image-code (replace-regexp-in-string "^\\\\includegraphics"
1893 "\\includesvg"
1894 image-code
1895 nil t))
1896 (setq image-code (replace-regexp-in-string "\\.svg}"
1898 image-code
1899 nil t))))
1900 ;; Return proper string, depending on FLOAT.
1901 (case float
1902 (wrap (format "\\begin{wrapfigure}%s
1903 \\centering
1904 %s%s
1905 %s\\end{wrapfigure}" placement comment-include image-code caption))
1906 (sideways (format "\\begin{sidewaysfigure}
1907 \\centering
1908 %s%s
1909 %s\\end{sidewaysfigure}" comment-include image-code caption))
1910 (multicolumn (format "\\begin{figure*}%s
1911 \\centering
1912 %s%s
1913 %s\\end{figure*}" placement comment-include image-code caption))
1914 (figure (format "\\begin{figure}%s
1915 \\centering
1916 %s%s
1917 %s\\end{figure}" placement comment-include image-code caption))
1918 (otherwise image-code))))
1920 (defun org-latex-link (link desc info)
1921 "Transcode a LINK object from Org to LaTeX.
1923 DESC is the description part of the link, or the empty string.
1924 INFO is a plist holding contextual information. See
1925 `org-export-data'."
1926 (let* ((type (org-element-property :type link))
1927 (raw-path (replace-regexp-in-string
1928 "%" "\\%" (org-element-property :path link) nil t))
1929 ;; Ensure DESC really exists, or set it to nil.
1930 (desc (and (not (string= desc "")) desc))
1931 (imagep (org-export-inline-image-p
1932 link (plist-get info :latex-inline-image-rules)))
1933 (path (cond
1934 ((member type '("http" "https" "ftp" "mailto"))
1935 (concat type ":" raw-path))
1936 ((and (string= type "file") (file-name-absolute-p raw-path))
1937 (concat "file:" raw-path))
1938 (t raw-path)))
1939 protocol)
1940 (cond
1941 ;; Image file.
1942 (imagep (org-latex--inline-image link info))
1943 ;; Radio link: Transcode target's contents and use them as link's
1944 ;; description.
1945 ((string= type "radio")
1946 (let ((destination (org-export-resolve-radio-link link info)))
1947 (if (not destination) desc
1948 (format "\\hyperref[%s]{%s}"
1949 (org-export-solidify-link-text
1950 (org-element-property :value destination))
1951 desc))))
1952 ;; Links pointing to a headline: Find destination and build
1953 ;; appropriate referencing command.
1954 ((member type '("custom-id" "fuzzy" "id"))
1955 (let ((destination (if (string= type "fuzzy")
1956 (org-export-resolve-fuzzy-link link info)
1957 (org-export-resolve-id-link link info))))
1958 (case (org-element-type destination)
1959 ;; Id link points to an external file.
1960 (plain-text
1961 (if desc (format "\\href{%s}{%s}" destination desc)
1962 (format "\\url{%s}" destination)))
1963 ;; Fuzzy link points nowhere.
1964 ('nil
1965 (format (plist-get info :latex-link-with-unknown-path-format)
1966 (or desc
1967 (org-export-data
1968 (org-element-property :raw-link link) info))))
1969 ;; LINK points to a headline. If headlines are numbered
1970 ;; and the link has no description, display headline's
1971 ;; number. Otherwise, display description or headline's
1972 ;; title.
1973 (headline
1974 (let* ((custom-label
1975 (and (plist-get info :latex-custom-id-labels)
1976 (org-element-property :CUSTOM_ID destination)))
1977 (label
1979 custom-label
1980 (format "sec-%s"
1981 (mapconcat
1982 #'number-to-string
1983 (org-export-get-headline-number destination info)
1984 "-")))))
1985 (if (and (not desc)
1986 (org-export-numbered-headline-p destination info))
1987 (format "\\ref{%s}" label)
1988 (format "\\hyperref[%s]{%s}" label
1989 (or desc
1990 (org-export-data
1991 (org-element-property :title destination) info))))))
1992 ;; Fuzzy link points to a target. Do as above.
1993 (otherwise
1994 (let ((path (org-export-solidify-link-text path)))
1995 (if (not desc) (format "\\ref{%s}" path)
1996 (format "\\hyperref[%s]{%s}" path desc)))))))
1997 ;; Coderef: replace link with the reference name or the
1998 ;; equivalent line number.
1999 ((string= type "coderef")
2000 (format (org-export-get-coderef-format path desc)
2001 (org-export-resolve-coderef path info)))
2002 ;; Link type is handled by a special function.
2003 ((functionp (setq protocol (nth 2 (assoc type org-link-protocols))))
2004 (funcall protocol (org-link-unescape path) desc 'latex))
2005 ;; External link with a description part.
2006 ((and path desc) (format "\\href{%s}{%s}" path desc))
2007 ;; External link without a description part.
2008 (path (format "\\url{%s}" path))
2009 ;; No path, only description. Try to do something useful.
2010 (t (format (plist-get info :latex-link-with-unknown-path-format) desc)))))
2013 ;;;; Node Property
2015 (defun org-latex-node-property (node-property contents info)
2016 "Transcode a NODE-PROPERTY element from Org to LaTeX.
2017 CONTENTS is nil. INFO is a plist holding contextual
2018 information."
2019 (format "%s:%s"
2020 (org-element-property :key node-property)
2021 (let ((value (org-element-property :value node-property)))
2022 (if value (concat " " value) ""))))
2025 ;;;; Paragraph
2027 (defun org-latex-paragraph (paragraph contents info)
2028 "Transcode a PARAGRAPH element from Org to LaTeX.
2029 CONTENTS is the contents of the paragraph, as a string. INFO is
2030 the plist used as a communication channel."
2031 contents)
2034 ;;;; Plain List
2036 (defun org-latex-plain-list (plain-list contents info)
2037 "Transcode a PLAIN-LIST element from Org to LaTeX.
2038 CONTENTS is the contents of the list. INFO is a plist holding
2039 contextual information."
2040 (let* ((type (org-element-property :type plain-list))
2041 (attr (org-export-read-attribute :attr_latex plain-list))
2042 (latex-type (let ((env (plist-get attr :environment)))
2043 (cond (env (format "%s" env))
2044 ((eq type 'ordered) "enumerate")
2045 ((eq type 'descriptive) "description")
2046 (t "itemize")))))
2047 (org-latex--wrap-label
2048 plain-list
2049 (format "\\begin{%s}%s\n%s\\end{%s}"
2050 latex-type
2051 (or (plist-get attr :options) "")
2052 contents
2053 latex-type))))
2056 ;;;; Plain Text
2058 (defun org-latex-plain-text (text info)
2059 "Transcode a TEXT string from Org to LaTeX.
2060 TEXT is the string to transcode. INFO is a plist holding
2061 contextual information."
2062 (let* ((specialp (plist-get info :with-special-strings))
2063 (output
2064 ;; Turn LaTeX into \LaTeX{} and TeX into \TeX{}.
2065 (let ((case-fold-search nil))
2066 (replace-regexp-in-string
2067 "\\<\\(?:La\\)?TeX\\>" "\\\\\\&{}"
2068 ;; Protect ^, ~, %, #, &, $, _, { and }. Also protect \.
2069 ;; However, if special strings are used, be careful not
2070 ;; to protect "\" in "\-" constructs.
2071 (replace-regexp-in-string
2072 (concat "[%$#&{}_~^]\\|\\\\" (and specialp "\\(?:[^-]\\|$\\)"))
2073 (lambda (m)
2074 (case (aref m 0)
2075 (?\\ "$\\\\backslash$")
2076 (?~ "\\\\textasciitilde{}")
2077 (?^ "\\\\^{}")
2078 (t "\\\\\\&")))
2079 text)))))
2080 ;; Activate smart quotes. Be sure to provide original TEXT string
2081 ;; since OUTPUT may have been modified.
2082 (when (plist-get info :with-smart-quotes)
2083 (setq output (org-export-activate-smart-quotes output :latex info text)))
2084 ;; Convert special strings.
2085 (when specialp
2086 (setq output (replace-regexp-in-string "\\.\\.\\." "\\\\ldots{}" output)))
2087 ;; Handle break preservation if required.
2088 (when (plist-get info :preserve-breaks)
2089 (setq output (replace-regexp-in-string
2090 "\\(?:[ \t]*\\\\\\\\\\)?[ \t]*\n" "\\\\\n" output nil t)))
2091 ;; Return value.
2092 output))
2095 ;;;; Planning
2097 (defun org-latex-planning (planning contents info)
2098 "Transcode a PLANNING element from Org to LaTeX.
2099 CONTENTS is nil. INFO is a plist holding contextual
2100 information."
2101 (concat
2102 "\\noindent"
2103 (mapconcat
2104 'identity
2105 (delq nil
2106 (list
2107 (let ((closed (org-element-property :closed planning)))
2108 (when closed
2109 (concat
2110 (format "\\textbf{%s} " org-closed-string)
2111 (format (plist-get info :latex-inactive-timestamp-format)
2112 (org-translate-time
2113 (org-element-property :raw-value closed))))))
2114 (let ((deadline (org-element-property :deadline planning)))
2115 (when deadline
2116 (concat
2117 (format "\\textbf{%s} " org-deadline-string)
2118 (format (plist-get info :latex-active-timestamp-format)
2119 (org-translate-time
2120 (org-element-property :raw-value deadline))))))
2121 (let ((scheduled (org-element-property :scheduled planning)))
2122 (when scheduled
2123 (concat
2124 (format "\\textbf{%s} " org-scheduled-string)
2125 (format (plist-get info :latex-active-timestamp-format)
2126 (org-translate-time
2127 (org-element-property :raw-value scheduled))))))))
2128 " ")
2129 "\\\\"))
2132 ;;;; Property Drawer
2134 (defun org-latex-property-drawer (property-drawer contents info)
2135 "Transcode a PROPERTY-DRAWER element from Org to LaTeX.
2136 CONTENTS holds the contents of the drawer. INFO is a plist
2137 holding contextual information."
2138 (and (org-string-nw-p contents)
2139 (format "\\begin{verbatim}\n%s\\end{verbatim}" contents)))
2142 ;;;; Pseudo Object: LaTeX Math Block
2144 (defun org-latex--wrap-latex-math-block (data info)
2145 "Merge contiguous math objects in a pseudo-object container.
2146 DATA is a parse tree or a secondary string. INFO is a plist
2147 containing export options. Modify DATA by side-effect and return it."
2148 (let ((valid-object-p
2149 (function
2150 ;; Non-nil when OBJ can be added to the latex math block.
2151 (lambda (obj)
2152 (case (org-element-type obj)
2153 (entity (org-element-property :latex-math-p obj))
2154 (latex-fragment
2155 (let ((value (org-element-property :value obj)))
2156 (or (org-string-match-p "\\`\\\\([^\000]*\\\\)\\'" value)
2157 (org-string-match-p "\\`\\$[^\000]*\\$\\'" value))))
2158 ((subscript superscript) t))))))
2159 (org-element-map data '(entity latex-fragment subscript superscript)
2160 (lambda (object)
2161 ;; Skip objects already wrapped.
2162 (when (and (not (eq (org-element-type
2163 (org-element-property :parent object))
2164 'latex-math-block))
2165 (funcall valid-object-p object))
2166 (let ((math-block (list 'latex-math-block nil))
2167 (next-elements (org-export-get-next-element object info t))
2168 (last object))
2169 ;; Wrap MATH-BLOCK around OBJECT in DATA.
2170 (org-element-insert-before math-block object)
2171 (org-element-extract-element object)
2172 (org-element-adopt-elements math-block object)
2173 (when (zerop (or (org-element-property :post-blank object) 0))
2174 ;; MATH-BLOCK swallows consecutive math objects.
2175 (catch 'exit
2176 (dolist (next next-elements)
2177 (if (not (funcall valid-object-p next)) (throw 'exit nil)
2178 (org-element-extract-element next)
2179 (org-element-adopt-elements math-block next)
2180 ;; Eschew the case: \beta$x$ -> \(\betax\).
2181 (unless (memq (org-element-type next)
2182 '(subscript superscript))
2183 (org-element-put-property last :post-blank 1))
2184 (setq last next)
2185 (when (> (or (org-element-property :post-blank next) 0) 0)
2186 (throw 'exit nil))))))
2187 (org-element-put-property
2188 math-block :post-blank (org-element-property :post-blank last)))))
2189 info nil '(subscript superscript latex-math-block) t)
2190 ;; Return updated DATA.
2191 data))
2193 (defun org-latex-math-block-tree-filter (tree backend info)
2194 (org-latex--wrap-latex-math-block tree info))
2196 (defun org-latex-math-block-options-filter (info backend)
2197 (dolist (prop '(:author :date :title) info)
2198 (plist-put info prop
2199 (org-latex--wrap-latex-math-block (plist-get info prop) info))))
2201 (defun org-latex-math-block (math-block contents info)
2202 "Transcode a MATH-BLOCK object from Org to LaTeX.
2203 CONTENTS is a string. INFO is a plist used as a communication
2204 channel."
2205 (when (org-string-nw-p contents)
2206 (format "\\(%s\\)" (org-trim contents))))
2208 ;;;; Quote Block
2210 (defun org-latex-quote-block (quote-block contents info)
2211 "Transcode a QUOTE-BLOCK element from Org to LaTeX.
2212 CONTENTS holds the contents of the block. INFO is a plist
2213 holding contextual information."
2214 (org-latex--wrap-label
2215 quote-block
2216 (format "\\begin{quote}\n%s\\end{quote}" contents)))
2219 ;;;; Radio Target
2221 (defun org-latex-radio-target (radio-target text info)
2222 "Transcode a RADIO-TARGET object from Org to LaTeX.
2223 TEXT is the text of the target. INFO is a plist holding
2224 contextual information."
2225 (format "\\label{%s}%s"
2226 (org-export-solidify-link-text
2227 (org-element-property :value radio-target))
2228 text))
2231 ;;;; Section
2233 (defun org-latex-section (section contents info)
2234 "Transcode a SECTION element from Org to LaTeX.
2235 CONTENTS holds the contents of the section. INFO is a plist
2236 holding contextual information."
2237 contents)
2240 ;;;; Special Block
2242 (defun org-latex-special-block (special-block contents info)
2243 "Transcode a SPECIAL-BLOCK element from Org to LaTeX.
2244 CONTENTS holds the contents of the block. INFO is a plist
2245 holding contextual information."
2246 (let ((type (org-element-property :type special-block))
2247 (opt (org-export-read-attribute :attr_latex special-block :options)))
2248 (concat (format "\\begin{%s}%s\n" type (or opt ""))
2249 ;; Insert any label or caption within the block
2250 ;; (otherwise, a reference pointing to that element will
2251 ;; count the section instead).
2252 (org-latex--caption/label-string special-block info)
2253 contents
2254 (format "\\end{%s}" type))))
2257 ;;;; Src Block
2259 (defun org-latex-src-block (src-block contents info)
2260 "Transcode a SRC-BLOCK element from Org to LaTeX.
2261 CONTENTS holds the contents of the item. INFO is a plist holding
2262 contextual information."
2263 (when (org-string-nw-p (org-element-property :value src-block))
2264 (let* ((lang (org-element-property :language src-block))
2265 (caption (org-element-property :caption src-block))
2266 (label (org-element-property :name src-block))
2267 (custom-env (and lang
2268 (cadr (assq (intern lang)
2269 org-latex-custom-lang-environments))))
2270 (num-start (case (org-element-property :number-lines src-block)
2271 (continued (org-export-get-loc src-block info))
2272 (new 0)))
2273 (retain-labels (org-element-property :retain-labels src-block))
2274 (attributes (org-export-read-attribute :attr_latex src-block))
2275 (float (plist-get attributes :float))
2276 (listings (plist-get info :latex-listings)))
2277 (cond
2278 ;; Case 1. No source fontification.
2279 ((not listings)
2280 (let* ((caption-str (org-latex--caption/label-string src-block info))
2281 (float-env
2282 (cond ((and (not float) (plist-member attributes :float)) "%s")
2283 ((string= "multicolumn" float)
2284 (format "\\begin{figure*}[%s]\n%%s%s\n\\end{figure*}"
2285 (plist-get info :latex-default-figure-position)
2286 caption-str))
2287 ((or caption float)
2288 (format "\\begin{figure}[H]\n%%s%s\n\\end{figure}"
2289 caption-str))
2290 (t "%s"))))
2291 (format
2292 float-env
2293 (concat (format "\\begin{verbatim}\n%s\\end{verbatim}"
2294 (org-export-format-code-default src-block info))))))
2295 ;; Case 2. Custom environment.
2296 (custom-env (format "\\begin{%s}\n%s\\end{%s}\n"
2297 custom-env
2298 (org-export-format-code-default src-block info)
2299 custom-env))
2300 ;; Case 3. Use minted package.
2301 ((eq listings 'minted)
2302 (let* ((caption-str (org-latex--caption/label-string src-block info))
2303 (float-env
2304 (cond ((and (not float) (plist-member attributes :float) caption)
2305 (format "%%s\n%s" (replace-regexp-in-string
2306 "\\\\caption" "\\captionof{listing}"
2307 caption-str t t)))
2308 ((and (not float) (plist-member attributes :float)) "%s")
2309 ((string= "multicolumn" float)
2310 (format "\\begin{listing*}\n%%s\n%s\\end{listing*}"
2311 caption-str))
2312 ((or caption float)
2313 (format "\\begin{listing}[H]\n%%s\n%s\\end{listing}"
2314 caption-str))
2315 (t "%s")))
2316 (options (plist-get info :latex-minted-options))
2317 (body
2318 (format
2319 "\\begin{minted}[%s]{%s}\n%s\\end{minted}"
2320 ;; Options.
2321 (concat
2322 (org-latex--make-option-string
2323 (if (or (not num-start) (assoc "linenos" options))
2324 options
2325 (append
2326 `(("linenos")
2327 ("firstnumber" ,(number-to-string (1+ num-start))))
2328 options)))
2329 (let ((local-options (plist-get attributes :options)))
2330 (and local-options (concat "," local-options))))
2331 ;; Language.
2332 (or (cadr (assq (intern lang)
2333 (plist-get info :latex-minted-langs)))
2334 (downcase lang))
2335 ;; Source code.
2336 (let* ((code-info (org-export-unravel-code src-block))
2337 (max-width
2338 (apply 'max
2339 (mapcar 'length
2340 (org-split-string (car code-info)
2341 "\n")))))
2342 (org-export-format-code
2343 (car code-info)
2344 (lambda (loc num ref)
2345 (concat
2347 (when ref
2348 ;; Ensure references are flushed to the right,
2349 ;; separated with 6 spaces from the widest line
2350 ;; of code.
2351 (concat (make-string (+ (- max-width (length loc)) 6)
2352 ?\s)
2353 (format "(%s)" ref)))))
2354 nil (and retain-labels (cdr code-info)))))))
2355 ;; Return value.
2356 (format float-env body)))
2357 ;; Case 4. Use listings package.
2359 (let ((lst-lang
2360 (or (cadr (assq (intern lang)
2361 (plist-get info :latex-listings-langs)))
2362 lang))
2363 (caption-str
2364 (when caption
2365 (let ((main (org-export-get-caption src-block))
2366 (secondary (org-export-get-caption src-block t)))
2367 (if (not secondary)
2368 (format "{%s}" (org-export-data main info))
2369 (format "{[%s]%s}"
2370 (org-export-data secondary info)
2371 (org-export-data main info))))))
2372 (lst-opt (plist-get info :latex-listings-options)))
2373 (concat
2374 ;; Options.
2375 (format
2376 "\\lstset{%s}\n"
2377 (concat
2378 (org-latex--make-option-string
2379 (append
2380 lst-opt
2381 (cond
2382 ((and (not float) (plist-member attributes :float)) nil)
2383 ((string= "multicolumn" float) '(("float" "*")))
2384 ((and float (not (assoc "float" lst-opt)))
2385 `(("float" ,(plist-get info :latex-default-figure-position)))))
2386 `(("language" ,lst-lang))
2387 (if label `(("label" ,label)) '(("label" " ")))
2388 (if caption-str `(("caption" ,caption-str)) '(("caption" " ")))
2389 (cond ((assoc "numbers" lst-opt) nil)
2390 ((not num-start) '(("numbers" "none")))
2391 ((zerop num-start) '(("numbers" "left")))
2392 (t `(("numbers" "left")
2393 ("firstnumber"
2394 ,(number-to-string (1+ num-start))))))))
2395 (let ((local-options (plist-get attributes :options)))
2396 (and local-options (concat "," local-options)))))
2397 ;; Source code.
2398 (format
2399 "\\begin{lstlisting}\n%s\\end{lstlisting}"
2400 (let* ((code-info (org-export-unravel-code src-block))
2401 (max-width
2402 (apply 'max
2403 (mapcar 'length
2404 (org-split-string (car code-info) "\n")))))
2405 (org-export-format-code
2406 (car code-info)
2407 (lambda (loc num ref)
2408 (concat
2410 (when ref
2411 ;; Ensure references are flushed to the right,
2412 ;; separated with 6 spaces from the widest line of
2413 ;; code
2414 (concat (make-string (+ (- max-width (length loc)) 6) ? )
2415 (format "(%s)" ref)))))
2416 nil (and retain-labels (cdr code-info))))))))))))
2419 ;;;; Statistics Cookie
2421 (defun org-latex-statistics-cookie (statistics-cookie contents info)
2422 "Transcode a STATISTICS-COOKIE object from Org to LaTeX.
2423 CONTENTS is nil. INFO is a plist holding contextual information."
2424 (replace-regexp-in-string
2425 "%" "\\%" (org-element-property :value statistics-cookie) nil t))
2428 ;;;; Strike-Through
2430 (defun org-latex-strike-through (strike-through contents info)
2431 "Transcode STRIKE-THROUGH from Org to LaTeX.
2432 CONTENTS is the text with strike-through markup. INFO is a plist
2433 holding contextual information."
2434 (org-latex--text-markup contents 'strike-through info))
2437 ;;;; Subscript
2439 (defun org-latex--script-size (object info)
2440 "Transcode a subscript or superscript object.
2441 OBJECT is an Org object. INFO is a plist used as a communication
2442 channel."
2443 (let ((type (org-element-type object))
2444 (output ""))
2445 (org-element-map (org-element-contents object)
2446 (cons 'plain-text org-element-all-objects)
2447 (lambda (obj)
2448 (case (org-element-type obj)
2449 ((entity latex-fragment)
2450 (let ((data (org-trim (org-export-data obj info))))
2451 (string-match
2452 "\\`\\(?:\\\\[([]\\|\\$+\\)?\\(.*?\\)\\(?:\\\\[])]\\|\\$+\\)?\\'"
2453 data)
2454 (setq output
2455 (concat output
2456 (match-string 1 data)
2457 (let ((blank (org-element-property :post-blank obj)))
2458 (and blank (> blank 0) "\\ "))))))
2459 (plain-text
2460 (setq output
2461 (format "%s\\text{%s}" output (org-export-data obj info))))
2462 (otherwise
2463 (setq output
2464 (concat output
2465 (org-export-data obj info)
2466 (let ((blank (org-element-property :post-blank obj)))
2467 (and blank (> blank 0) "\\ ")))))))
2468 info nil org-element-recursive-objects)
2469 ;; Result. Do not wrap into curly brackets if OUTPUT is a single
2470 ;; character.
2471 (concat (if (eq (org-element-type object) 'subscript) "_" "^")
2472 (and (> (length output) 1) "{")
2473 output
2474 (and (> (length output) 1) "}"))))
2476 (defun org-latex-subscript (subscript contents info)
2477 "Transcode a SUBSCRIPT object from Org to LaTeX.
2478 CONTENTS is the contents of the object. INFO is a plist holding
2479 contextual information."
2480 (org-latex--script-size subscript info))
2483 ;;;; Superscript
2485 (defun org-latex-superscript (superscript contents info)
2486 "Transcode a SUPERSCRIPT object from Org to LaTeX.
2487 CONTENTS is the contents of the object. INFO is a plist holding
2488 contextual information."
2489 (org-latex--script-size superscript info))
2492 ;;;; Table
2494 ;; `org-latex-table' is the entry point for table transcoding. It
2495 ;; takes care of tables with a "verbatim" mode. Otherwise, it
2496 ;; delegates the job to either `org-latex--table.el-table',
2497 ;; `org-latex--org-table' or `org-latex--math-table' functions,
2498 ;; depending of the type of the table and the mode requested.
2500 ;; `org-latex--align-string' is a subroutine used to build alignment
2501 ;; string for Org tables.
2503 (defun org-latex-table (table contents info)
2504 "Transcode a TABLE element from Org to LaTeX.
2505 CONTENTS is the contents of the table. INFO is a plist holding
2506 contextual information."
2507 (if (eq (org-element-property :type table) 'table.el)
2508 ;; "table.el" table. Convert it using appropriate tools.
2509 (org-latex--table.el-table table info)
2510 (let ((type (or (org-export-read-attribute :attr_latex table :mode)
2511 (plist-get info :latex-default-table-mode))))
2512 (cond
2513 ;; Case 1: Verbatim table.
2514 ((string= type "verbatim")
2515 (format "\\begin{verbatim}\n%s\n\\end{verbatim}"
2516 ;; Re-create table, without affiliated keywords.
2517 (org-trim (org-element-interpret-data
2518 `(table nil ,@(org-element-contents table))
2519 org-latex-pseudo-objects))))
2520 ;; Case 2: Matrix.
2521 ((or (string= type "math") (string= type "inline-math"))
2522 (org-latex--math-table table info))
2523 ;; Case 3: Standard table.
2524 (t (concat (org-latex--org-table table contents info)
2525 ;; When there are footnote references within the
2526 ;; table, insert their definition just after it.
2527 (org-latex--delayed-footnotes-definitions table info)))))))
2529 (defun org-latex--align-string (table info)
2530 "Return an appropriate LaTeX alignment string.
2531 TABLE is the considered table. INFO is a plist used as
2532 a communication channel."
2533 (or (org-export-read-attribute :attr_latex table :align)
2534 (let (align)
2535 ;; Extract column groups and alignment from first (non-rule)
2536 ;; row.
2537 (org-element-map
2538 (org-element-map table 'table-row
2539 (lambda (row)
2540 (and (eq (org-element-property :type row) 'standard) row))
2541 info 'first-match)
2542 'table-cell
2543 (lambda (cell)
2544 (let ((borders (org-export-table-cell-borders cell info)))
2545 ;; Check left border for the first cell only.
2546 (when (and (memq 'left borders) (not align))
2547 (push "|" align))
2548 (push (case (org-export-table-cell-alignment cell info)
2549 (left "l")
2550 (right "r")
2551 (center "c"))
2552 align)
2553 (when (memq 'right borders) (push "|" align))))
2554 info)
2555 (apply 'concat (nreverse align)))))
2557 (defun org-latex--org-table (table contents info)
2558 "Return appropriate LaTeX code for an Org table.
2560 TABLE is the table type element to transcode. CONTENTS is its
2561 contents, as a string. INFO is a plist used as a communication
2562 channel.
2564 This function assumes TABLE has `org' as its `:type' property and
2565 `table' as its `:mode' attribute."
2566 (let* ((caption (org-latex--caption/label-string table info))
2567 (attr (org-export-read-attribute :attr_latex table))
2568 ;; Determine alignment string.
2569 (alignment (org-latex--align-string table info))
2570 ;; Determine environment for the table: longtable, tabular...
2571 (table-env (or (plist-get attr :environment)
2572 (plist-get info :latex-default-table-environment)))
2573 ;; If table is a float, determine environment: table, table*
2574 ;; or sidewaystable.
2575 (float-env (unless (member table-env '("longtable" "longtabu"))
2576 (let ((float (plist-get attr :float)))
2577 (cond
2578 ((and (not float) (plist-member attr :float)) nil)
2579 ((or (string= float "sidewaystable")
2580 (string= float "sideways")) "sidewaystable")
2581 ((string= float "multicolumn") "table*")
2582 ((or float
2583 (org-element-property :caption table)
2584 (org-string-nw-p (plist-get attr :caption)))
2585 "table")))))
2586 ;; Extract others display options.
2587 (fontsize (let ((font (plist-get attr :font)))
2588 (and font (concat font "\n"))))
2589 (width (plist-get attr :width))
2590 (spreadp (plist-get attr :spread))
2591 (placement
2592 (or (plist-get attr :placement)
2593 (format "[%s]" (plist-get info :latex-default-figure-position))))
2594 (centerp (if (plist-member attr :center) (plist-get attr :center)
2595 (plist-get info :latex-tables-centered)))
2596 (caption-above-p (plist-get info :latex-table-caption-above)))
2597 ;; Prepare the final format string for the table.
2598 (cond
2599 ;; Longtable.
2600 ((equal "longtable" table-env)
2601 (concat (and fontsize (concat "{" fontsize))
2602 (format "\\begin{longtable}{%s}\n" alignment)
2603 (and caption-above-p
2604 (org-string-nw-p caption)
2605 (concat caption "\\\\\n"))
2606 contents
2607 (and (not caption-above-p)
2608 (org-string-nw-p caption)
2609 (concat caption "\\\\\n"))
2610 "\\end{longtable}\n"
2611 (and fontsize "}")))
2612 ;; Longtabu
2613 ((equal "longtabu" table-env)
2614 (concat (and fontsize (concat "{" fontsize))
2615 (format "\\begin{longtabu}%s{%s}\n"
2616 (if width
2617 (format " %s %s "
2618 (if spreadp "spread" "to") width) "")
2619 alignment)
2620 (and caption-above-p
2621 (org-string-nw-p caption)
2622 (concat caption "\\\\\n"))
2623 contents
2624 (and (not caption-above-p)
2625 (org-string-nw-p caption)
2626 (concat caption "\\\\\n"))
2627 "\\end{longtabu}\n"
2628 (and fontsize "}")))
2629 ;; Others.
2630 (t (concat (cond
2631 (float-env
2632 (concat (format "\\begin{%s}%s\n" float-env placement)
2633 (if caption-above-p caption "")
2634 (when centerp "\\centering\n")
2635 fontsize))
2636 (centerp (concat "\\begin{center}\n" fontsize))
2637 (fontsize (concat "{" fontsize)))
2638 (cond ((equal "tabu" table-env)
2639 (format "\\begin{tabu}%s{%s}\n%s\\end{tabu}"
2640 (if width (format
2641 (if spreadp " spread %s " " to %s ")
2642 width) "")
2643 alignment
2644 contents))
2645 (t (format "\\begin{%s}%s{%s}\n%s\\end{%s}"
2646 table-env
2647 (if width (format "{%s}" width) "")
2648 alignment
2649 contents
2650 table-env)))
2651 (cond
2652 (float-env
2653 (concat (if caption-above-p "" caption)
2654 (format "\n\\end{%s}" float-env)))
2655 (centerp "\n\\end{center}")
2656 (fontsize "}")))))))
2658 (defun org-latex--table.el-table (table info)
2659 "Return appropriate LaTeX code for a table.el table.
2661 TABLE is the table type element to transcode. INFO is a plist
2662 used as a communication channel.
2664 This function assumes TABLE has `table.el' as its `:type'
2665 property."
2666 (require 'table)
2667 ;; Ensure "*org-export-table*" buffer is empty.
2668 (with-current-buffer (get-buffer-create "*org-export-table*")
2669 (erase-buffer))
2670 (let ((output (with-temp-buffer
2671 (insert (org-element-property :value table))
2672 (goto-char 1)
2673 (re-search-forward "^[ \t]*|[^|]" nil t)
2674 (table-generate-source 'latex "*org-export-table*")
2675 (with-current-buffer "*org-export-table*"
2676 (org-trim (buffer-string))))))
2677 (kill-buffer (get-buffer "*org-export-table*"))
2678 ;; Remove left out comments.
2679 (while (string-match "^%.*\n" output)
2680 (setq output (replace-match "" t t output)))
2681 (let ((attr (org-export-read-attribute :attr_latex table)))
2682 (when (plist-get attr :rmlines)
2683 ;; When the "rmlines" attribute is provided, remove all hlines
2684 ;; but the the one separating heading from the table body.
2685 (let ((n 0) (pos 0))
2686 (while (and (< (length output) pos)
2687 (setq pos (string-match "^\\\\hline\n?" output pos)))
2688 (incf n)
2689 (unless (= n 2) (setq output (replace-match "" nil nil output))))))
2690 (let ((centerp (if (plist-member attr :center) (plist-get attr :center)
2691 (plist-get info :latex-tables-centered))))
2692 (if (not centerp) output
2693 (format "\\begin{center}\n%s\n\\end{center}" output))))))
2695 (defun org-latex--math-table (table info)
2696 "Return appropriate LaTeX code for a matrix.
2698 TABLE is the table type element to transcode. INFO is a plist
2699 used as a communication channel.
2701 This function assumes TABLE has `org' as its `:type' property and
2702 `inline-math' or `math' as its `:mode' attribute.."
2703 (let* ((caption (org-latex--caption/label-string table info))
2704 (attr (org-export-read-attribute :attr_latex table))
2705 (inlinep (equal (plist-get attr :mode) "inline-math"))
2706 (env (or (plist-get attr :environment)
2707 (plist-get info :latex-default-table-environment)))
2708 (contents
2709 (mapconcat
2710 (lambda (row)
2711 ;; Ignore horizontal rules.
2712 (when (eq (org-element-property :type row) 'standard)
2713 ;; Return each cell unmodified.
2714 (concat
2715 (mapconcat
2716 (lambda (cell)
2717 (substring
2718 (org-element-interpret-data cell org-latex-pseudo-objects)
2719 0 -1))
2720 (org-element-map row 'table-cell 'identity info) "&")
2721 (or (cdr (assoc env org-latex-table-matrix-macros)) "\\\\")
2722 "\n")))
2723 (org-element-map table 'table-row 'identity info) ""))
2724 ;; Variables related to math clusters (contiguous math tables
2725 ;; of the same type).
2726 (mode (org-export-read-attribute :attr_latex table :mode))
2727 (prev (org-export-get-previous-element table info))
2728 (next (org-export-get-next-element table info))
2729 (same-mode-p
2730 (lambda (table)
2731 ;; Non-nil when TABLE has the same mode as current table.
2732 (string= (or (org-export-read-attribute :attr_latex table :mode)
2733 (plist-get info :latex-default-table-mode))
2734 mode))))
2735 (concat
2736 ;; Opening string. If TABLE is in the middle of a table cluster,
2737 ;; do not insert any.
2738 (cond ((and prev
2739 (eq (org-element-type prev) 'table)
2740 (memq (org-element-property :post-blank prev) '(0 nil))
2741 (funcall same-mode-p prev))
2742 nil)
2743 (inlinep "\\(")
2744 ((org-string-nw-p caption) (concat "\\begin{equation}\n" caption))
2745 (t "\\["))
2746 ;; Prefix.
2747 (or (plist-get attr :math-prefix) "")
2748 ;; Environment. Also treat special cases.
2749 (cond ((equal env "array")
2750 (let ((align (org-latex--align-string table info)))
2751 (format "\\begin{array}{%s}\n%s\\end{array}" align contents)))
2752 ((assoc env org-latex-table-matrix-macros)
2753 (format "\\%s%s{\n%s}"
2755 (or (plist-get attr :math-arguments) "")
2756 contents))
2757 (t (format "\\begin{%s}\n%s\\end{%s}" env contents env)))
2758 ;; Suffix.
2759 (or (plist-get attr :math-suffix) "")
2760 ;; Closing string. If TABLE is in the middle of a table cluster,
2761 ;; do not insert any. If it closes such a cluster, be sure to
2762 ;; close the cluster with a string matching the opening string.
2763 (cond ((and next
2764 (eq (org-element-type next) 'table)
2765 (memq (org-element-property :post-blank table) '(0 nil))
2766 (funcall same-mode-p next))
2767 nil)
2768 (inlinep "\\)")
2769 ;; Find cluster beginning to know which environment to use.
2770 ((let ((cluster-beg table) prev)
2771 (while (and (setq prev (org-export-get-previous-element
2772 cluster-beg info))
2773 (memq (org-element-property :post-blank prev)
2774 '(0 nil))
2775 (funcall same-mode-p prev))
2776 (setq cluster-beg prev))
2777 (and (or (org-element-property :caption cluster-beg)
2778 (org-element-property :name cluster-beg))
2779 "\n\\end{equation}")))
2780 (t "\\]")))))
2783 ;;;; Table Cell
2785 (defun org-latex-table-cell (table-cell contents info)
2786 "Transcode a TABLE-CELL element from Org to LaTeX.
2787 CONTENTS is the cell contents. INFO is a plist used as
2788 a communication channel."
2789 (concat
2790 (let ((scientific-format (plist-get info :latex-table-scientific-notation)))
2791 (if (and contents
2792 scientific-format
2793 (string-match orgtbl-exp-regexp contents))
2794 ;; Use appropriate format string for scientific
2795 ;; notation.
2796 (format scientific-format
2797 (match-string 1 contents)
2798 (match-string 2 contents))
2799 contents))
2800 (when (org-export-get-next-element table-cell info) " & ")))
2803 ;;;; Table Row
2805 (defun org-latex-table-row (table-row contents info)
2806 "Transcode a TABLE-ROW element from Org to LaTeX.
2807 CONTENTS is the contents of the row. INFO is a plist used as
2808 a communication channel."
2809 (let* ((attr (org-export-read-attribute :attr_latex
2810 (org-export-get-parent table-row)))
2811 (booktabsp (if (plist-member attr :booktabs) (plist-get attr :booktabs)
2812 (plist-get info :latex-tables-booktabs)))
2813 (longtablep
2814 (member (or (plist-get attr :environment)
2815 (plist-get info :latex-default-table-environment))
2816 '("longtable" "longtabu"))))
2817 (if (eq (org-element-property :type table-row) 'rule)
2818 (cond
2819 ((not booktabsp) "\\hline")
2820 ((not (org-export-get-previous-element table-row info)) "\\toprule")
2821 ((not (org-export-get-next-element table-row info)) "\\bottomrule")
2822 ((and longtablep
2823 (org-export-table-row-ends-header-p
2824 (org-export-get-previous-element table-row info) info))
2826 (t "\\midrule"))
2827 (concat
2828 ;; When BOOKTABS are activated enforce top-rule even when no
2829 ;; hline was specifically marked.
2830 (and booktabsp (not (org-export-get-previous-element table-row info))
2831 "\\toprule\n")
2832 contents "\\\\\n"
2833 (cond
2834 ;; Special case for long tables. Define header and footers.
2835 ((and longtablep (org-export-table-row-ends-header-p table-row info))
2836 (let ((columns (cdr (org-export-table-dimensions
2837 (org-export-get-parent-table table-row) info))))
2838 (format "%s
2839 \\endfirsthead
2840 \\multicolumn{%d}{l}{%s} \\\\
2842 %s \\\\\n
2844 \\endhead
2845 %s\\multicolumn{%d}{r}{%s} \\\\
2846 \\endfoot
2847 \\endlastfoot"
2848 (if booktabsp "\\midrule" "\\hline")
2849 columns
2850 (org-latex--translate "Continued from previous page" info)
2851 (cond
2852 ((not (org-export-table-row-starts-header-p table-row info))
2854 (booktabsp "\\toprule\n")
2855 (t "\\hline\n"))
2856 contents
2857 (if booktabsp "\\midrule" "\\hline")
2858 (if booktabsp "\\midrule" "\\hline")
2859 columns
2860 (org-latex--translate "Continued on next page" info))))
2861 ;; When BOOKTABS are activated enforce bottom rule even when
2862 ;; no hline was specifically marked.
2863 ((and booktabsp (not (org-export-get-next-element table-row info)))
2864 "\\bottomrule"))))))
2867 ;;;; Target
2869 (defun org-latex-target (target contents info)
2870 "Transcode a TARGET object from Org to LaTeX.
2871 CONTENTS is nil. INFO is a plist holding contextual
2872 information."
2873 (format "\\label{%s}"
2874 (org-export-solidify-link-text (org-element-property :value target))))
2877 ;;;; Timestamp
2879 (defun org-latex-timestamp (timestamp contents info)
2880 "Transcode a TIMESTAMP object from Org to LaTeX.
2881 CONTENTS is nil. INFO is a plist holding contextual
2882 information."
2883 (let ((value (org-latex-plain-text (org-timestamp-translate timestamp) info)))
2884 (format
2885 (plist-get info
2886 (case (org-element-property :type timestamp)
2887 ((active active-range) :latex-active-timestamp-format)
2888 ((inactive inactive-range) :latex-inactive-timestamp-format)
2889 (otherwise :latex-diary-timestamp-format)))
2890 value)))
2893 ;;;; Underline
2895 (defun org-latex-underline (underline contents info)
2896 "Transcode UNDERLINE from Org to LaTeX.
2897 CONTENTS is the text with underline markup. INFO is a plist
2898 holding contextual information."
2899 (org-latex--text-markup contents 'underline info))
2902 ;;;; Verbatim
2904 (defun org-latex-verbatim (verbatim contents info)
2905 "Transcode a VERBATIM object from Org to LaTeX.
2906 CONTENTS is nil. INFO is a plist used as a communication
2907 channel."
2908 (org-latex--text-markup
2909 (org-element-property :value verbatim) 'verbatim info))
2912 ;;;; Verse Block
2914 (defun org-latex-verse-block (verse-block contents info)
2915 "Transcode a VERSE-BLOCK element from Org to LaTeX.
2916 CONTENTS is verse block contents. INFO is a plist holding
2917 contextual information."
2918 (org-latex--wrap-label
2919 verse-block
2920 ;; In a verse environment, add a line break to each newline
2921 ;; character and change each white space at beginning of a line
2922 ;; into a space of 1 em. Also change each blank line with
2923 ;; a vertical space of 1 em.
2924 (format "\\begin{verse}\n%s\\end{verse}"
2925 (replace-regexp-in-string
2926 "^[ \t]+" (lambda (m) (format "\\hspace*{%dem}" (length m)))
2927 (replace-regexp-in-string
2928 "^[ \t]*\\\\\\\\$" "\\vspace*{1em}"
2929 (replace-regexp-in-string
2930 "\\([ \t]*\\\\\\\\\\)?[ \t]*\n" "\\\\\n"
2931 contents nil t) nil t) nil t))))
2935 ;;; End-user functions
2937 ;;;###autoload
2938 (defun org-latex-export-as-latex
2939 (&optional async subtreep visible-only body-only ext-plist)
2940 "Export current buffer as a LaTeX buffer.
2942 If narrowing is active in the current buffer, only export its
2943 narrowed part.
2945 If a region is active, export that region.
2947 A non-nil optional argument ASYNC means the process should happen
2948 asynchronously. The resulting buffer should be accessible
2949 through the `org-export-stack' interface.
2951 When optional argument SUBTREEP is non-nil, export the sub-tree
2952 at point, extracting information from the headline properties
2953 first.
2955 When optional argument VISIBLE-ONLY is non-nil, don't export
2956 contents of hidden elements.
2958 When optional argument BODY-ONLY is non-nil, only write code
2959 between \"\\begin{document}\" and \"\\end{document}\".
2961 EXT-PLIST, when provided, is a property list with external
2962 parameters overriding Org default settings, but still inferior to
2963 file-local settings.
2965 Export is done in a buffer named \"*Org LATEX Export*\", which
2966 will be displayed when `org-export-show-temporary-export-buffer'
2967 is non-nil."
2968 (interactive)
2969 (org-export-to-buffer 'latex "*Org LATEX Export*"
2970 async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
2972 ;;;###autoload
2973 (defun org-latex-convert-region-to-latex ()
2974 "Assume the current region has org-mode syntax, and convert it to LaTeX.
2975 This can be used in any buffer. For example, you can write an
2976 itemized list in org-mode syntax in an LaTeX buffer and use this
2977 command to convert it."
2978 (interactive)
2979 (org-export-replace-region-by 'latex))
2981 ;;;###autoload
2982 (defun org-latex-export-to-latex
2983 (&optional async subtreep visible-only body-only ext-plist)
2984 "Export current buffer to a LaTeX file.
2986 If narrowing is active in the current buffer, only export its
2987 narrowed part.
2989 If a region is active, export that region.
2991 A non-nil optional argument ASYNC means the process should happen
2992 asynchronously. The resulting file should be accessible through
2993 the `org-export-stack' interface.
2995 When optional argument SUBTREEP is non-nil, export the sub-tree
2996 at point, extracting information from the headline properties
2997 first.
2999 When optional argument VISIBLE-ONLY is non-nil, don't export
3000 contents of hidden elements.
3002 When optional argument BODY-ONLY is non-nil, only write code
3003 between \"\\begin{document}\" and \"\\end{document}\".
3005 EXT-PLIST, when provided, is a property list with external
3006 parameters overriding Org default settings, but still inferior to
3007 file-local settings."
3008 (interactive)
3009 (let ((outfile (org-export-output-file-name ".tex" subtreep)))
3010 (org-export-to-file 'latex outfile
3011 async subtreep visible-only body-only ext-plist)))
3013 ;;;###autoload
3014 (defun org-latex-export-to-pdf
3015 (&optional async subtreep visible-only body-only ext-plist)
3016 "Export current buffer to LaTeX then process through to PDF.
3018 If narrowing is active in the current buffer, only export its
3019 narrowed part.
3021 If a region is active, export that region.
3023 A non-nil optional argument ASYNC means the process should happen
3024 asynchronously. The resulting file should be accessible through
3025 the `org-export-stack' interface.
3027 When optional argument SUBTREEP is non-nil, export the sub-tree
3028 at point, extracting information from the headline properties
3029 first.
3031 When optional argument VISIBLE-ONLY is non-nil, don't export
3032 contents of hidden elements.
3034 When optional argument BODY-ONLY is non-nil, only write code
3035 between \"\\begin{document}\" and \"\\end{document}\".
3037 EXT-PLIST, when provided, is a property list with external
3038 parameters overriding Org default settings, but still inferior to
3039 file-local settings.
3041 Return PDF file's name."
3042 (interactive)
3043 (let ((outfile (org-export-output-file-name ".tex" subtreep)))
3044 (org-export-to-file 'latex outfile
3045 async subtreep visible-only body-only ext-plist
3046 (lambda (file) (org-latex-compile file)))))
3048 (defun org-latex-compile (texfile &optional snippet)
3049 "Compile a TeX file.
3051 TEXFILE is the name of the file being compiled. Processing is
3052 done through the command specified in `org-latex-pdf-process'.
3054 When optional argument SNIPPET is non-nil, TEXFILE is a temporary
3055 file used to preview a LaTeX snippet. In this case, do not
3056 create a log buffer and do not bother removing log files.
3058 Return PDF file name or an error if it couldn't be produced."
3059 (let* ((base-name (file-name-sans-extension (file-name-nondirectory texfile)))
3060 (full-name (file-truename texfile))
3061 (out-dir (file-name-directory texfile))
3062 ;; Properly set working directory for compilation.
3063 (default-directory (if (file-name-absolute-p texfile)
3064 (file-name-directory full-name)
3065 default-directory))
3066 (time (current-time))
3067 warnings)
3068 (unless snippet (message (format "Processing LaTeX file %s..." texfile)))
3069 (save-window-excursion
3070 (cond
3071 ;; A function is provided: Apply it.
3072 ((functionp org-latex-pdf-process)
3073 (funcall org-latex-pdf-process (shell-quote-argument texfile)))
3074 ;; A list is provided: Replace %b, %f and %o with appropriate
3075 ;; values in each command before applying it. Output is
3076 ;; redirected to "*Org PDF LaTeX Output*" buffer.
3077 ((consp org-latex-pdf-process)
3078 (let ((outbuf (and (not snippet)
3079 (get-buffer-create "*Org PDF LaTeX Output*"))))
3080 (dolist (command org-latex-pdf-process)
3081 (shell-command
3082 (replace-regexp-in-string
3083 "%b" (shell-quote-argument base-name)
3084 (replace-regexp-in-string
3085 "%f" (shell-quote-argument full-name)
3086 (replace-regexp-in-string
3087 "%o" (shell-quote-argument out-dir) command t t) t t) t t)
3088 outbuf))
3089 ;; Collect standard errors from output buffer.
3090 (setq warnings (and (not snippet)
3091 (org-latex--collect-warnings outbuf)))))
3092 (t (error "No valid command to process to PDF")))
3093 (let ((pdffile (concat out-dir base-name ".pdf")))
3094 ;; Check for process failure. Provide collected errors if
3095 ;; possible.
3096 (if (or (not (file-exists-p pdffile))
3097 (time-less-p (nth 5 (file-attributes pdffile)) time))
3098 (error (format "PDF file %s wasn't produced" pdffile))
3099 ;; Else remove log files, when specified, and signal end of
3100 ;; process to user, along with any error encountered.
3101 (when (and (not snippet) org-latex-remove-logfiles)
3102 (dolist (file (directory-files
3103 out-dir t
3104 (concat (regexp-quote base-name)
3105 "\\(?:\\.[0-9]+\\)?"
3106 "\\."
3107 (regexp-opt org-latex-logfiles-extensions))))
3108 (delete-file file)))
3109 (message (concat "PDF file produced"
3110 (cond
3111 ((eq warnings 'error) " with errors.")
3112 (warnings (concat " with warnings: " warnings))
3113 (t ".")))))
3114 ;; Return output file name.
3115 pdffile))))
3117 (defun org-latex--collect-warnings (buffer)
3118 "Collect some warnings from \"pdflatex\" command output.
3119 BUFFER is the buffer containing output. Return collected
3120 warnings types as a string, `error' if a LaTeX error was
3121 encountered or nil if there was none."
3122 (with-current-buffer buffer
3123 (save-excursion
3124 (goto-char (point-max))
3125 (when (re-search-backward "^[ \t]*This is .*?TeX.*?Version" nil t)
3126 (if (re-search-forward "^!" nil t) 'error
3127 (let ((case-fold-search t)
3128 (warnings ""))
3129 (dolist (warning org-latex-known-warnings)
3130 (when (save-excursion (re-search-forward (car warning) nil t))
3131 (setq warnings (concat warnings " " (cdr warning)))))
3132 (org-string-nw-p (org-trim warnings))))))))
3134 ;;;###autoload
3135 (defun org-latex-publish-to-latex (plist filename pub-dir)
3136 "Publish an Org file to LaTeX.
3138 FILENAME is the filename of the Org file to be published. PLIST
3139 is the property list for the given project. PUB-DIR is the
3140 publishing directory.
3142 Return output file name."
3143 (org-publish-org-to 'latex filename ".tex" plist pub-dir))
3145 ;;;###autoload
3146 (defun org-latex-publish-to-pdf (plist filename pub-dir)
3147 "Publish an Org file to PDF (via LaTeX).
3149 FILENAME is the filename of the Org file to be published. PLIST
3150 is the property list for the given project. PUB-DIR is the
3151 publishing directory.
3153 Return output file name."
3154 ;; Unlike to `org-latex-publish-to-latex', PDF file is generated
3155 ;; in working directory and then moved to publishing directory.
3156 (org-publish-attachment
3157 plist
3158 (org-latex-compile
3159 (org-publish-org-to
3160 'latex filename ".tex" plist (file-name-directory filename)))
3161 pub-dir))
3164 (provide 'ox-latex)
3166 ;; Local variables:
3167 ;; generated-autoload-file: "org-loaddefs.el"
3168 ;; End:
3170 ;;; ox-latex.el ends here