Merge branch 'maint'
[org-mode.git] / lisp / ox-latex.el
blob2a315ef70057465c2197052319236bb969737a86
1 ;;; ox-latex.el --- LaTeX Back-End for Org Export Engine
3 ;; Copyright (C) 2011-2013 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; GNU Emacs is free software: you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21 ;;; Commentary:
23 ;; See Org manual for details.
25 ;;; Code:
27 (eval-when-compile (require 'cl))
28 (require 'ox)
29 (require 'ox-publish)
31 (defvar org-latex-default-packages-alist)
32 (defvar org-latex-packages-alist)
33 (defvar orgtbl-exp-regexp)
37 ;;; Define Back-End
39 (org-export-define-backend 'latex
40 '((bold . org-latex-bold)
41 (center-block . org-latex-center-block)
42 (clock . org-latex-clock)
43 (code . org-latex-code)
44 (comment . (lambda (&rest args) ""))
45 (comment-block . (lambda (&rest args) ""))
46 (drawer . org-latex-drawer)
47 (dynamic-block . org-latex-dynamic-block)
48 (entity . org-latex-entity)
49 (example-block . org-latex-example-block)
50 (export-block . org-latex-export-block)
51 (export-snippet . org-latex-export-snippet)
52 (fixed-width . org-latex-fixed-width)
53 (footnote-definition . org-latex-footnote-definition)
54 (footnote-reference . org-latex-footnote-reference)
55 (headline . org-latex-headline)
56 (horizontal-rule . org-latex-horizontal-rule)
57 (inline-src-block . org-latex-inline-src-block)
58 (inlinetask . org-latex-inlinetask)
59 (italic . org-latex-italic)
60 (item . org-latex-item)
61 (keyword . org-latex-keyword)
62 (latex-environment . org-latex-latex-environment)
63 (latex-fragment . org-latex-latex-fragment)
64 (line-break . org-latex-line-break)
65 (link . org-latex-link)
66 (paragraph . org-latex-paragraph)
67 (plain-list . org-latex-plain-list)
68 (plain-text . org-latex-plain-text)
69 (planning . org-latex-planning)
70 (property-drawer . (lambda (&rest args) ""))
71 (quote-block . org-latex-quote-block)
72 (quote-section . org-latex-quote-section)
73 (radio-target . org-latex-radio-target)
74 (section . org-latex-section)
75 (special-block . org-latex-special-block)
76 (src-block . org-latex-src-block)
77 (statistics-cookie . org-latex-statistics-cookie)
78 (strike-through . org-latex-strike-through)
79 (subscript . org-latex-subscript)
80 (superscript . org-latex-superscript)
81 (table . org-latex-table)
82 (table-cell . org-latex-table-cell)
83 (table-row . org-latex-table-row)
84 (target . org-latex-target)
85 (template . org-latex-template)
86 (timestamp . org-latex-timestamp)
87 (underline . org-latex-underline)
88 (verbatim . org-latex-verbatim)
89 (verse-block . org-latex-verse-block))
90 :export-block '("LATEX" "TEX")
91 :menu-entry
92 '(?l "Export to LaTeX"
93 ((?L "As LaTeX buffer" org-latex-export-as-latex)
94 (?l "As LaTeX file" org-latex-export-to-latex)
95 (?p "As PDF file" org-latex-export-to-pdf)
96 (?o "As PDF file and open"
97 (lambda (a s v b)
98 (if a (org-latex-export-to-pdf t s v b)
99 (org-open-file (org-latex-export-to-pdf nil s v b)))))))
100 :options-alist '((:latex-class "LATEX_CLASS" nil org-latex-default-class t)
101 (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
102 (:latex-header "LATEX_HEADER" nil nil newline)
103 (:latex-header-extra "LATEX_HEADER_EXTRA" nil nil newline)
104 (:latex-hyperref-p nil "texht" org-latex-with-hyperref t)
105 ;; Redefine regular options.
106 (:date "DATE" nil "\\today" t)))
110 ;;; Internal Variables
112 (defconst org-latex-babel-language-alist
113 '(("af" . "afrikaans")
114 ("bg" . "bulgarian")
115 ("bt-br" . "brazilian")
116 ("ca" . "catalan")
117 ("cs" . "czech")
118 ("cy" . "welsh")
119 ("da" . "danish")
120 ("de" . "germanb")
121 ("de-at" . "naustrian")
122 ("de-de" . "ngerman")
123 ("el" . "greek")
124 ("en" . "english")
125 ("en-au" . "australian")
126 ("en-ca" . "canadian")
127 ("en-gb" . "british")
128 ("en-ie" . "irish")
129 ("en-nz" . "newzealand")
130 ("en-us" . "american")
131 ("es" . "spanish")
132 ("et" . "estonian")
133 ("eu" . "basque")
134 ("fi" . "finnish")
135 ("fr" . "frenchb")
136 ("fr-ca" . "canadien")
137 ("gl" . "galician")
138 ("hr" . "croatian")
139 ("hu" . "hungarian")
140 ("id" . "indonesian")
141 ("is" . "icelandic")
142 ("it" . "italian")
143 ("la" . "latin")
144 ("ms" . "malay")
145 ("nl" . "dutch")
146 ("no-no" . "nynorsk")
147 ("pl" . "polish")
148 ("pt" . "portuguese")
149 ("ro" . "romanian")
150 ("ru" . "russian")
151 ("sa" . "sanskrit")
152 ("sb" . "uppersorbian")
153 ("sk" . "slovak")
154 ("sl" . "slovene")
155 ("sq" . "albanian")
156 ("sr" . "serbian")
157 ("sv" . "swedish")
158 ("ta" . "tamil")
159 ("tr" . "turkish")
160 ("uk" . "ukrainian"))
161 "Alist between language code and corresponding Babel option.")
163 (defconst org-latex-table-matrix-macros '(("bordermatrix" . "\\cr")
164 ("qbordermatrix" . "\\cr")
165 ("kbordermatrix" . "\\\\"))
166 "Alist between matrix macros and their row ending.")
170 ;;; User Configurable Variables
172 (defgroup org-export-latex nil
173 "Options for exporting Org mode files to LaTeX."
174 :tag "Org Export LaTeX"
175 :group 'org-export)
178 ;;;; Preamble
180 (defcustom org-latex-default-class "article"
181 "The default LaTeX class."
182 :group 'org-export-latex
183 :type '(string :tag "LaTeX class"))
185 (defcustom org-latex-classes
186 '(("article"
187 "\\documentclass[11pt]{article}"
188 ("\\section{%s}" . "\\section*{%s}")
189 ("\\subsection{%s}" . "\\subsection*{%s}")
190 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
191 ("\\paragraph{%s}" . "\\paragraph*{%s}")
192 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
193 ("report"
194 "\\documentclass[11pt]{report}"
195 ("\\part{%s}" . "\\part*{%s}")
196 ("\\chapter{%s}" . "\\chapter*{%s}")
197 ("\\section{%s}" . "\\section*{%s}")
198 ("\\subsection{%s}" . "\\subsection*{%s}")
199 ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
200 ("book"
201 "\\documentclass[11pt]{book}"
202 ("\\part{%s}" . "\\part*{%s}")
203 ("\\chapter{%s}" . "\\chapter*{%s}")
204 ("\\section{%s}" . "\\section*{%s}")
205 ("\\subsection{%s}" . "\\subsection*{%s}")
206 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
207 "Alist of LaTeX classes and associated header and structure.
208 If #+LATEX_CLASS is set in the buffer, use its value and the
209 associated information. Here is the structure of each cell:
211 \(class-name
212 header-string
213 \(numbered-section . unnumbered-section)
214 ...)
216 The header string
217 -----------------
219 The HEADER-STRING is the header that will be inserted into the
220 LaTeX file. It should contain the \\documentclass macro, and
221 anything else that is needed for this setup. To this header, the
222 following commands will be added:
224 - Calls to \\usepackage for all packages mentioned in the
225 variables `org-latex-default-packages-alist' and
226 `org-latex-packages-alist'. Thus, your header definitions
227 should avoid to also request these packages.
229 - Lines specified via \"#+LATEX_HEADER:\" and
230 \"#+LATEX_HEADER_EXTRA:\" keywords.
232 If you need more control about the sequence in which the header
233 is built up, or if you want to exclude one of these building
234 blocks for a particular class, you can use the following
235 macro-like placeholders.
237 [DEFAULT-PACKAGES] \\usepackage statements for default packages
238 [NO-DEFAULT-PACKAGES] do not include any of the default packages
239 [PACKAGES] \\usepackage statements for packages
240 [NO-PACKAGES] do not include the packages
241 [EXTRA] the stuff from #+LATEX_HEADER(_EXTRA)
242 [NO-EXTRA] do not include #+LATEX_HEADER(_EXTRA) stuff
244 So a header like
246 \\documentclass{article}
247 [NO-DEFAULT-PACKAGES]
248 [EXTRA]
249 \\providecommand{\\alert}[1]{\\textbf{#1}}
250 [PACKAGES]
252 will omit the default packages, and will include the
253 #+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
254 to \\providecommand, and then place \\usepackage commands based
255 on the content of `org-latex-packages-alist'.
257 If your header, `org-latex-default-packages-alist' or
258 `org-latex-packages-alist' inserts
259 \"\\usepackage[AUTO]{inputenc}\", AUTO will automatically be
260 replaced with a coding system derived from
261 `buffer-file-coding-system'. See also the variable
262 `org-latex-inputenc-alist' for a way to influence this mechanism.
264 The sectioning structure
265 ------------------------
267 The sectioning structure of the class is given by the elements
268 following the header string. For each sectioning level, a number
269 of strings is specified. A %s formatter is mandatory in each
270 section string and will be replaced by the title of the section.
272 Instead of a cons cell (numbered . unnumbered), you can also
273 provide a list of 2 or 4 elements,
275 \(numbered-open numbered-close)
279 \(numbered-open numbered-close unnumbered-open unnumbered-close)
281 providing opening and closing strings for a LaTeX environment
282 that should represent the document section. The opening clause
283 should have a %s to represent the section title.
285 Instead of a list of sectioning commands, you can also specify
286 a function name. That function will be called with two
287 parameters, the (reduced) level of the headline, and a predicate
288 non-nil when the headline should be numbered. It must return
289 a format string in which the section title will be added."
290 :group 'org-export-latex
291 :type '(repeat
292 (list (string :tag "LaTeX class")
293 (string :tag "LaTeX header")
294 (repeat :tag "Levels" :inline t
295 (choice
296 (cons :tag "Heading"
297 (string :tag " numbered")
298 (string :tag "unnumbered"))
299 (list :tag "Environment"
300 (string :tag "Opening (numbered)")
301 (string :tag "Closing (numbered)")
302 (string :tag "Opening (unnumbered)")
303 (string :tag "Closing (unnumbered)"))
304 (function :tag "Hook computing sectioning"))))))
306 (defcustom org-latex-inputenc-alist nil
307 "Alist of inputenc coding system names, and what should really be used.
308 For example, adding an entry
310 (\"utf8\" . \"utf8x\")
312 will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
313 are written as utf8 files."
314 :group 'org-export-latex
315 :type '(repeat
316 (cons
317 (string :tag "Derived from buffer")
318 (string :tag "Use this instead"))))
320 (defcustom org-latex-title-command "\\maketitle"
321 "The command used to insert the title just after \\begin{document}.
322 If this string contains the formatting specification \"%s\" then
323 it will be used as a formatting string, passing the title as an
324 argument."
325 :group 'org-export-latex
326 :type 'string)
328 (defcustom org-latex-toc-command "\\tableofcontents\n\n"
329 "LaTeX command to set the table of contents, list of figures, etc.
330 This command only applies to the table of contents generated with
331 the toc:nil option, not to those generated with #+TOC keyword."
332 :group 'org-export-latex
333 :type 'string)
335 (defcustom org-latex-with-hyperref t
336 "Toggle insertion of \\hypersetup{...} in the preamble."
337 :group 'org-export-latex
338 :type 'boolean)
341 ;;;; Headline
343 (defcustom org-latex-format-headline-function
344 'org-latex-format-headline-default-function
345 "Function for formatting the headline's text.
347 This function will be called with 5 arguments:
348 TODO the todo keyword (string or nil).
349 TODO-TYPE the type of todo (symbol: `todo', `done', nil)
350 PRIORITY the priority of the headline (integer or nil)
351 TEXT the main headline text (string).
352 TAGS the tags as a list of strings (list of strings or nil).
354 The function result will be used in the section format string.
356 Use `org-latex-format-headline-default-function' by default,
357 which format headlines like for Org version prior to 8.0."
358 :group 'org-export-latex
359 :version "24.4"
360 :package-version '(Org . "8.0")
361 :type 'function)
364 ;;;; Footnotes
366 (defcustom org-latex-footnote-separator "\\textsuperscript{,}\\,"
367 "Text used to separate footnotes."
368 :group 'org-export-latex
369 :type 'string)
372 ;;;; Timestamps
374 (defcustom org-latex-active-timestamp-format "\\textit{%s}"
375 "A printf format string to be applied to active timestamps."
376 :group 'org-export-latex
377 :type 'string)
379 (defcustom org-latex-inactive-timestamp-format "\\textit{%s}"
380 "A printf format string to be applied to inactive timestamps."
381 :group 'org-export-latex
382 :type 'string)
384 (defcustom org-latex-diary-timestamp-format "\\textit{%s}"
385 "A printf format string to be applied to diary timestamps."
386 :group 'org-export-latex
387 :type 'string)
390 ;;;; Links
392 (defcustom org-latex-image-default-option ""
393 "Default option for images."
394 :group 'org-export-latex
395 :version "24.4"
396 :package-version '(Org . "8.0")
397 :type 'string)
399 (defcustom org-latex-image-default-width ".9\\linewidth"
400 "Default width for images.
401 This value will not be used if a height is provided."
402 :group 'org-export-latex
403 :version "24.4"
404 :package-version '(Org . "8.0")
405 :type 'string)
407 (defcustom org-latex-image-default-height ""
408 "Default height for images.
409 This value will not be used if a width is provided, or if the
410 image is wrapped within a \"figure\" or \"wrapfigure\"
411 environment."
412 :group 'org-export-latex
413 :version "24.4"
414 :package-version '(Org . "8.0")
415 :type 'string)
417 (defcustom org-latex-default-figure-position "htb"
418 "Default position for latex figures."
419 :group 'org-export-latex
420 :type 'string)
422 (defcustom org-latex-inline-image-rules
423 '(("file" . "\\.\\(pdf\\|jpeg\\|jpg\\|png\\|ps\\|eps\\|tikz\\)\\'"))
424 "Rules characterizing image files that can be inlined into LaTeX.
426 A rule consists in an association whose key is the type of link
427 to consider, and value is a regexp that will be matched against
428 link's path.
430 Note that, by default, the image extension *actually* allowed
431 depend on the way the LaTeX file is processed. When used with
432 pdflatex, pdf, jpg and png images are OK. When processing
433 through dvi to Postscript, only ps and eps are allowed. The
434 default we use here encompasses both."
435 :group 'org-export-latex
436 :version "24.4"
437 :package-version '(Org . "8.0")
438 :type '(alist :key-type (string :tag "Type")
439 :value-type (regexp :tag "Path")))
441 (defcustom org-latex-link-with-unknown-path-format "\\texttt{%s}"
442 "Format string for links with unknown path type."
443 :group 'org-export-latex
444 :type 'string)
447 ;;;; Tables
449 (defcustom org-latex-default-table-environment "tabular"
450 "Default environment used to build tables."
451 :group 'org-export-latex
452 :version "24.4"
453 :package-version '(Org . "8.0")
454 :type 'string)
456 (defcustom org-latex-default-table-mode 'table
457 "Default mode for tables.
459 Value can be a symbol among:
461 `table' Regular LaTeX table.
463 `math' In this mode, every cell is considered as being in math
464 mode and the complete table will be wrapped within a math
465 environment. It is particularly useful to write matrices.
467 `inline-math' This mode is almost the same as `math', but the
468 math environment will be inlined.
470 `verbatim' The table is exported as it appears in the Org
471 buffer, within a verbatim environment.
473 This value can be overridden locally with, i.e. \":mode math\" in
474 LaTeX attributes.
476 When modifying this variable, it may be useful to change
477 `org-latex-default-table-environment' accordingly."
478 :group 'org-export-latex
479 :version "24.4"
480 :package-version '(Org . "8.0")
481 :type '(choice (const :tag "Table" table)
482 (const :tag "Matrix" math)
483 (const :tag "Inline matrix" inline-math)
484 (const :tag "Verbatim" verbatim)))
486 (defcustom org-latex-tables-centered t
487 "When non-nil, tables are exported in a center environment."
488 :group 'org-export-latex
489 :type 'boolean)
491 (defcustom org-latex-tables-booktabs nil
492 "When non-nil, display tables in a formal \"booktabs\" style.
493 This option assumes that the \"booktabs\" package is properly
494 loaded in the header of the document. This value can be ignored
495 locally with \":booktabs t\" and \":booktabs nil\" LaTeX
496 attributes."
497 :group 'org-export-latex
498 :version "24.4"
499 :package-version '(Org . "8.0")
500 :type 'boolean)
502 (defcustom org-latex-table-caption-above t
503 "When non-nil, place caption string at the beginning of the table.
504 Otherwise, place it near the end."
505 :group 'org-export-latex
506 :type 'boolean)
508 (defcustom org-latex-table-scientific-notation "%s\\,(%s)"
509 "Format string to display numbers in scientific notation.
510 The format should have \"%s\" twice, for mantissa and exponent
511 \(i.e., \"%s\\\\times10^{%s}\").
513 When nil, no transformation is made."
514 :group 'org-export-latex
515 :version "24.4"
516 :package-version '(Org . "8.0")
517 :type '(choice
518 (string :tag "Format string")
519 (const :tag "No formatting")))
522 ;;;; Text markup
524 (defcustom org-latex-text-markup-alist '((bold . "\\textbf{%s}")
525 (code . verb)
526 (italic . "\\emph{%s}")
527 (strike-through . "\\st{%s}")
528 (underline . "\\underline{%s}")
529 (verbatim . protectedtexttt))
530 "Alist of LaTeX expressions to convert text markup.
532 The key must be a symbol among `bold', `code', `italic',
533 `strike-through', `underline' and `verbatim'. The value is
534 a formatting string to wrap fontified text with.
536 Value can also be set to the following symbols: `verb' and
537 `protectedtexttt'. For the former, Org will use \"\\verb\" to
538 create a format string and select a delimiter character that
539 isn't in the string. For the latter, Org will use \"\\texttt\"
540 to typeset and try to protect special characters.
542 If no association can be found for a given markup, text will be
543 returned as-is."
544 :group 'org-export-latex
545 :type 'alist
546 :options '(bold code italic strike-through underline verbatim))
549 ;;;; Drawers
551 (defcustom org-latex-format-drawer-function nil
552 "Function called to format a drawer in LaTeX code.
554 The function must accept two parameters:
555 NAME the drawer name, like \"LOGBOOK\"
556 CONTENTS the contents of the drawer.
558 The function should return the string to be exported.
560 For example, the variable could be set to the following function
561 in order to mimic default behaviour:
563 \(defun org-latex-format-drawer-default \(name contents\)
564 \"Format a drawer element for LaTeX export.\"
565 contents\)"
566 :group 'org-export-latex
567 :type 'function)
570 ;;;; Inlinetasks
572 (defcustom org-latex-format-inlinetask-function nil
573 "Function called to format an inlinetask in LaTeX code.
575 The function must accept six parameters:
576 TODO the todo keyword, as a string
577 TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
578 PRIORITY the inlinetask priority, as a string
579 NAME the inlinetask name, as a string.
580 TAGS the inlinetask tags, as a list of strings.
581 CONTENTS the contents of the inlinetask, as a string.
583 The function should return the string to be exported.
585 For example, the variable could be set to the following function
586 in order to mimic default behaviour:
588 \(defun org-latex-format-inlinetask \(todo type priority name tags contents\)
589 \"Format an inline task element for LaTeX export.\"
590 \(let ((full-title
591 \(concat
592 \(when todo
593 \(format \"\\\\textbf{\\\\textsf{\\\\textsc{%s}}} \" todo))
594 \(when priority (format \"\\\\framebox{\\\\#%c} \" priority))
595 title
596 \(when tags
597 \(format \"\\\\hfill{}\\\\textsc{:%s:}\"
598 \(mapconcat 'identity tags \":\")))))
599 \(format (concat \"\\\\begin{center}\\n\"
600 \"\\\\fbox{\\n\"
601 \"\\\\begin{minipage}[c]{.6\\\\textwidth}\\n\"
602 \"%s\\n\\n\"
603 \"\\\\rule[.8em]{\\\\textwidth}{2pt}\\n\\n\"
604 \"%s\"
605 \"\\\\end{minipage}}\"
606 \"\\\\end{center}\")
607 full-title contents))"
608 :group 'org-export-latex
609 :type 'function)
612 ;; Src blocks
614 (defcustom org-latex-listings nil
615 "Non-nil means export source code using the listings package.
616 This package will fontify source code, possibly even with color.
617 If you want to use this, you also need to make LaTeX use the
618 listings package, and if you want to have color, the color
619 package. Just add these to `org-latex-packages-alist', for
620 example using customize, or with something like:
622 \(require 'ox-latex)
623 \(add-to-list 'org-latex-packages-alist '\(\"\" \"listings\"))
624 \(add-to-list 'org-latex-packages-alist '\(\"\" \"color\"))
626 Alternatively,
628 \(setq org-latex-listings 'minted)
630 causes source code to be exported using the minted package as
631 opposed to listings. If you want to use minted, you need to add
632 the minted package to `org-latex-packages-alist', for example
633 using customize, or with
635 \(require 'ox-latex)
636 \(add-to-list 'org-latex-packages-alist '\(\"\" \"minted\"))
638 In addition, it is necessary to install pygments
639 \(http://pygments.org), and to configure the variable
640 `org-latex-pdf-process' so that the -shell-escape option is
641 passed to pdflatex."
642 :group 'org-export-latex
643 :type '(choice
644 (const :tag "Use listings" t)
645 (const :tag "Use minted" 'minted)
646 (const :tag "Export verbatim" nil)))
648 (defcustom org-latex-listings-langs
649 '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
650 (c "C") (cc "C++")
651 (fortran "fortran")
652 (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
653 (html "HTML") (xml "XML")
654 (tex "TeX") (latex "TeX")
655 (shell-script "bash")
656 (gnuplot "Gnuplot")
657 (ocaml "Caml") (caml "Caml")
658 (sql "SQL") (sqlite "sql"))
659 "Alist mapping languages to their listing language counterpart.
660 The key is a symbol, the major mode symbol without the \"-mode\".
661 The value is the string that should be inserted as the language
662 parameter for the listings package. If the mode name and the
663 listings name are the same, the language does not need an entry
664 in this list - but it does not hurt if it is present."
665 :group 'org-export-latex
666 :type '(repeat
667 (list
668 (symbol :tag "Major mode ")
669 (string :tag "Listings language"))))
671 (defcustom org-latex-listings-options nil
672 "Association list of options for the latex listings package.
674 These options are supplied as a comma-separated list to the
675 \\lstset command. Each element of the association list should be
676 a list containing two strings: the name of the option, and the
677 value. For example,
679 (setq org-latex-listings-options
680 '((\"basicstyle\" \"\\small\")
681 (\"keywordstyle\" \"\\color{black}\\bfseries\\underbar\")))
683 will typeset the code in a small size font with underlined, bold
684 black keywords.
686 Note that the same options will be applied to blocks of all
687 languages."
688 :group 'org-export-latex
689 :type '(repeat
690 (list
691 (string :tag "Listings option name ")
692 (string :tag "Listings option value"))))
694 (defcustom org-latex-minted-langs
695 '((emacs-lisp "common-lisp")
696 (cc "c++")
697 (cperl "perl")
698 (shell-script "bash")
699 (caml "ocaml"))
700 "Alist mapping languages to their minted language counterpart.
701 The key is a symbol, the major mode symbol without the \"-mode\".
702 The value is the string that should be inserted as the language
703 parameter for the minted package. If the mode name and the
704 listings name are the same, the language does not need an entry
705 in this list - but it does not hurt if it is present.
707 Note that minted uses all lower case for language identifiers,
708 and that the full list of language identifiers can be obtained
709 with:
711 pygmentize -L lexers"
712 :group 'org-export-latex
713 :type '(repeat
714 (list
715 (symbol :tag "Major mode ")
716 (string :tag "Minted language"))))
718 (defcustom org-latex-minted-options nil
719 "Association list of options for the latex minted package.
721 These options are supplied within square brackets in
722 \\begin{minted} environments. Each element of the alist should
723 be a list containing two strings: the name of the option, and the
724 value. For example,
726 \(setq org-latex-minted-options
727 '\((\"bgcolor\" \"bg\") \(\"frame\" \"lines\")))
729 will result in src blocks being exported with
731 \\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
733 as the start of the minted environment. Note that the same
734 options will be applied to blocks of all languages."
735 :group 'org-export-latex
736 :type '(repeat
737 (list
738 (string :tag "Minted option name ")
739 (string :tag "Minted option value"))))
741 (defcustom org-latex-long-listings nil
742 "When non-nil no listing will be wrapped within a float.
744 Removing floats may break some functionalities. For example, it
745 will be impossible to use cross-references to listings when using
746 `minted' set-up when this variable is non-nil.
748 This value can be locally ignored with \":long-listing t\" and
749 \":long-listing nil\" LaTeX attributes."
750 :group 'org-export-latex
751 :version "24.4"
752 :package-version '(Org . "8.0")
753 :type 'boolean)
755 (defvar org-latex-custom-lang-environments nil
756 "Alist mapping languages to language-specific LaTeX environments.
758 It is used during export of src blocks by the listings and minted
759 latex packages. For example,
761 \(setq org-latex-custom-lang-environments
762 '\(\(python \"pythoncode\"\)\)\)
764 would have the effect that if org encounters begin_src python
765 during latex export it will output
767 \\begin{pythoncode}
768 <src block body>
769 \\end{pythoncode}")
772 ;;;; Compilation
774 (defcustom org-latex-pdf-process
775 '("pdflatex -interaction nonstopmode -output-directory %o %f"
776 "pdflatex -interaction nonstopmode -output-directory %o %f"
777 "pdflatex -interaction nonstopmode -output-directory %o %f")
778 "Commands to process a LaTeX file to a PDF file.
779 This is a list of strings, each of them will be given to the
780 shell as a command. %f in the command will be replaced by the
781 full file name, %b by the file base name (i.e. without directory
782 and extension parts) and %o by the base directory of the file.
784 The reason why this is a list is that it usually takes several
785 runs of `pdflatex', maybe mixed with a call to `bibtex'. Org
786 does not have a clever mechanism to detect which of these
787 commands have to be run to get to a stable result, and it also
788 does not do any error checking.
790 By default, Org uses 3 runs of `pdflatex' to do the processing.
791 If you have texi2dvi on your system and if that does not cause
792 the infamous egrep/locale bug:
794 http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
796 then `texi2dvi' is the superior choice. Org does offer it as one
797 of the customize options.
799 Alternatively, this may be a Lisp function that does the
800 processing, so you could use this to apply the machinery of
801 AUCTeX or the Emacs LaTeX mode. This function should accept the
802 file name as its single argument."
803 :group 'org-export-pdf
804 :type '(choice
805 (repeat :tag "Shell command sequence"
806 (string :tag "Shell command"))
807 (const :tag "2 runs of pdflatex"
808 ("pdflatex -interaction nonstopmode -output-directory %o %f"
809 "pdflatex -interaction nonstopmode -output-directory %o %f"))
810 (const :tag "3 runs of pdflatex"
811 ("pdflatex -interaction nonstopmode -output-directory %o %f"
812 "pdflatex -interaction nonstopmode -output-directory %o %f"
813 "pdflatex -interaction nonstopmode -output-directory %o %f"))
814 (const :tag "pdflatex,bibtex,pdflatex,pdflatex"
815 ("pdflatex -interaction nonstopmode -output-directory %o %f"
816 "bibtex %b"
817 "pdflatex -interaction nonstopmode -output-directory %o %f"
818 "pdflatex -interaction nonstopmode -output-directory %o %f"))
819 (const :tag "2 runs of xelatex"
820 ("xelatex -interaction nonstopmode -output-directory %o %f"
821 "xelatex -interaction nonstopmode -output-directory %o %f"))
822 (const :tag "3 runs of xelatex"
823 ("xelatex -interaction nonstopmode -output-directory %o %f"
824 "xelatex -interaction nonstopmode -output-directory %o %f"
825 "xelatex -interaction nonstopmode -output-directory %o %f"))
826 (const :tag "xelatex,bibtex,xelatex,xelatex"
827 ("xelatex -interaction nonstopmode -output-directory %o %f"
828 "bibtex %b"
829 "xelatex -interaction nonstopmode -output-directory %o %f"
830 "xelatex -interaction nonstopmode -output-directory %o %f"))
831 (const :tag "texi2dvi"
832 ("texi2dvi -p -b -c -V %f"))
833 (const :tag "rubber"
834 ("rubber -d --into %o %f"))
835 (function)))
837 (defcustom org-latex-logfiles-extensions
838 '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb")
839 "The list of file extensions to consider as LaTeX logfiles.
840 The logfiles will be remove if `org-latex-remove-logfiles' is
841 non-nil."
842 :group 'org-export-latex
843 :type '(repeat (string :tag "Extension")))
845 (defcustom org-latex-remove-logfiles t
846 "Non-nil means remove the logfiles produced by PDF production.
847 By default, logfiles are files with these extensions: .aux, .idx,
848 .log, .out, .toc, .nav, .snm and .vrb. To define the set of
849 logfiles to remove, set `org-latex-logfiles-extensions'."
850 :group 'org-export-latex
851 :type 'boolean)
853 (defcustom org-latex-known-errors
854 '(("Reference.*?undefined" . "[undefined reference]")
855 ("Citation.*?undefined" . "[undefined citation]")
856 ("Undefined control sequence" . "[undefined control sequence]")
857 ("^! LaTeX.*?Error" . "[LaTeX error]")
858 ("^! Package.*?Error" . "[package error]")
859 ("Runaway argument" . "Runaway argument"))
860 "Alist of regular expressions and associated messages for the user.
861 The regular expressions are used to find possible errors in the
862 log of a latex-run."
863 :group 'org-export-latex
864 :version "24.4"
865 :package-version '(Org . "8.0")
866 :type '(repeat
867 (cons
868 (string :tag "Regexp")
869 (string :tag "Message"))))
873 ;;; Internal Functions
875 (defun org-latex--caption/label-string (element info)
876 "Return caption and label LaTeX string for ELEMENT.
878 INFO is a plist holding contextual information. If there's no
879 caption nor label, return the empty string.
881 For non-floats, see `org-latex--wrap-label'."
882 (let* ((label (org-element-property :name element))
883 (label-str (if (not (org-string-nw-p label)) ""
884 (format "\\label{%s}"
885 (org-export-solidify-link-text label))))
886 (main (org-export-get-caption element))
887 (short (org-export-get-caption element t)))
888 (cond
889 ((and (not main) (equal label-str "")) "")
890 ((not main) (concat label-str "\n"))
891 ;; Option caption format with short name.
892 (short (format "\\caption[%s]{%s%s}\n"
893 (org-export-data short info)
894 label-str
895 (org-export-data main info)))
896 ;; Standard caption format.
897 (t (format "\\caption{%s%s}\n" label-str (org-export-data main info))))))
899 (defun org-latex-guess-inputenc (header)
900 "Set the coding system in inputenc to what the buffer is.
902 HEADER is the LaTeX header string. This function only applies
903 when specified inputenc option is \"AUTO\".
905 Return the new header, as a string."
906 (let* ((cs (or (ignore-errors
907 (latexenc-coding-system-to-inputenc
908 (or org-export-coding-system buffer-file-coding-system)))
909 "utf8")))
910 (if (not cs) header
911 ;; First translate if that is requested.
912 (setq cs (or (cdr (assoc cs org-latex-inputenc-alist)) cs))
913 ;; Then find the \usepackage statement and replace the option.
914 (replace-regexp-in-string "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
915 cs header t nil 1))))
917 (defun org-latex-guess-babel-language (header info)
918 "Set Babel's language according to LANGUAGE keyword.
920 HEADER is the LaTeX header string. INFO is the plist used as
921 a communication channel.
923 Insertion of guessed language only happens when Babel package has
924 explicitly been loaded. Then it is added to the rest of
925 package's options.
927 Return the new header."
928 (let ((language-code (plist-get info :language)))
929 ;; If no language is set or Babel package is not loaded, return
930 ;; HEADER as-is.
931 (if (or (not (stringp language-code))
932 (not (string-match "\\\\usepackage\\[\\(.*\\)\\]{babel}" header)))
933 header
934 (let ((options (save-match-data
935 (org-split-string (match-string 1 header) ",")))
936 (language (cdr (assoc language-code
937 org-latex-babel-language-alist))))
938 ;; If LANGUAGE is already loaded, return header. Otherwise,
939 ;; append LANGUAGE to other options.
940 (if (member language options) header
941 (replace-match (mapconcat 'identity
942 (append options (list language))
943 ",")
944 nil nil header 1))))))
946 (defun org-latex--find-verb-separator (s)
947 "Return a character not used in string S.
948 This is used to choose a separator for constructs like \\verb."
949 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
950 (loop for c across ll
951 when (not (string-match (regexp-quote (char-to-string c)) s))
952 return (char-to-string c))))
954 (defun org-latex--make-option-string (options)
955 "Return a comma separated string of keywords and values.
956 OPTIONS is an alist where the key is the options keyword as
957 a string, and the value a list containing the keyword value, or
958 nil."
959 (mapconcat (lambda (pair)
960 (concat (first pair)
961 (when (> (length (second pair)) 0)
962 (concat "=" (second pair)))))
963 options
964 ","))
966 (defun org-latex--wrap-label (element output)
967 "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
968 This function shouldn't be used for floats. See
969 `org-latex--caption/label-string'."
970 (let ((label (org-element-property :name element)))
971 (if (not (and (org-string-nw-p output) (org-string-nw-p label))) output
972 (concat (format "\\label{%s}\n" (org-export-solidify-link-text label))
973 output))))
975 (defun org-latex--text-markup (text markup)
976 "Format TEXT depending on MARKUP text markup.
977 See `org-latex-text-markup-alist' for details."
978 (let ((fmt (cdr (assq markup org-latex-text-markup-alist))))
979 (cond
980 ;; No format string: Return raw text.
981 ((not fmt) text)
982 ;; Handle the `verb' special case: Find and appropriate separator
983 ;; and use "\\verb" command.
984 ((eq 'verb fmt)
985 (let ((separator (org-latex--find-verb-separator text)))
986 (concat "\\verb" separator text separator)))
987 ;; Handle the `protectedtexttt' special case: Protect some
988 ;; special chars and use "\texttt{%s}" format string.
989 ((eq 'protectedtexttt fmt)
990 (let ((start 0)
991 (trans '(("\\" . "\\textbackslash{}")
992 ("~" . "\\textasciitilde{}")
993 ("^" . "\\textasciicircum{}")))
994 (rtn "")
995 char)
996 (while (string-match "[\\{}$%&_#~^]" text)
997 (setq char (match-string 0 text))
998 (if (> (match-beginning 0) 0)
999 (setq rtn (concat rtn (substring text 0 (match-beginning 0)))))
1000 (setq text (substring text (1+ (match-beginning 0))))
1001 (setq char (or (cdr (assoc char trans)) (concat "\\" char))
1002 rtn (concat rtn char)))
1003 (setq text (concat rtn text)
1004 fmt "\\texttt{%s}")
1005 (while (string-match "--" text)
1006 (setq text (replace-match "-{}-" t t text)))
1007 (format fmt text)))
1008 ;; Else use format string.
1009 (t (format fmt text)))))
1011 (defun org-latex--delayed-footnotes-definitions (element info)
1012 "Return footnotes definitions in ELEMENT as a string.
1014 INFO is a plist used as a communication channel.
1016 Footnotes definitions are returned within \"\\footnotetxt{}\"
1017 commands.
1019 This function is used within constructs that don't support
1020 \"\\footnote{}\" command (i.e. an item's tag). In that case,
1021 \"\\footnotemark\" is used within the construct and the function
1022 just outside of it."
1023 (mapconcat
1024 (lambda (ref)
1025 (format
1026 "\\footnotetext[%s]{%s}"
1027 (org-export-get-footnote-number ref info)
1028 (org-trim
1029 (org-export-data
1030 (org-export-get-footnote-definition ref info) info))))
1031 ;; Find every footnote reference in ELEMENT.
1032 (let* (all-refs
1033 search-refs ; For byte-compiler.
1034 (search-refs
1035 (function
1036 (lambda (data)
1037 ;; Return a list of all footnote references never seen
1038 ;; before in DATA.
1039 (org-element-map data 'footnote-reference
1040 (lambda (ref)
1041 (when (org-export-footnote-first-reference-p ref info)
1042 (push ref all-refs)
1043 (when (eq (org-element-property :type ref) 'standard)
1044 (funcall search-refs
1045 (org-export-get-footnote-definition ref info)))))
1046 info)
1047 (reverse all-refs)))))
1048 (funcall search-refs element))
1049 ""))
1053 ;;; Template
1055 (defun org-latex-template (contents info)
1056 "Return complete document string after LaTeX conversion.
1057 CONTENTS is the transcoded contents string. INFO is a plist
1058 holding export options."
1059 (let ((title (org-export-data (plist-get info :title) info)))
1060 (concat
1061 ;; Time-stamp.
1062 (and (plist-get info :time-stamp-file)
1063 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
1064 ;; Document class and packages.
1065 (let ((class (plist-get info :latex-class))
1066 (class-options (plist-get info :latex-class-options)))
1067 (org-element-normalize-string
1068 (let* ((header (nth 1 (assoc class org-latex-classes)))
1069 (document-class-string
1070 (and (stringp header)
1071 (if (not class-options) header
1072 (replace-regexp-in-string
1073 "^[ \t]*\\\\documentclass\\(\\(\\[[^]]*\\]\\)?\\)"
1074 class-options header t nil 1)))))
1075 (if (not document-class-string)
1076 (user-error "Unknown LaTeX class `%s'" class)
1077 (org-latex-guess-babel-language
1078 (org-latex-guess-inputenc
1079 (org-splice-latex-header
1080 document-class-string
1081 org-latex-default-packages-alist
1082 org-latex-packages-alist nil
1083 (concat (plist-get info :latex-header)
1084 (plist-get info :latex-header-extra))))
1085 info)))))
1086 ;; Possibly limit depth for headline numbering.
1087 (let ((sec-num (plist-get info :section-numbers)))
1088 (when (integerp sec-num)
1089 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
1090 ;; Author.
1091 (let ((author (and (plist-get info :with-author)
1092 (let ((auth (plist-get info :author)))
1093 (and auth (org-export-data auth info)))))
1094 (email (and (plist-get info :with-email)
1095 (org-export-data (plist-get info :email) info))))
1096 (cond ((and author email (not (string= "" email)))
1097 (format "\\author{%s\\thanks{%s}}\n" author email))
1098 ((or author email) (format "\\author{%s}\n" (or author email)))))
1099 ;; Date.
1100 (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
1101 (format "\\date{%s}\n" (org-export-data date info)))
1102 ;; Title
1103 (format "\\title{%s}\n" title)
1104 ;; Hyperref options.
1105 (when (plist-get info :latex-hyperref-p)
1106 (format "\\hypersetup{\n pdfkeywords={%s},\n pdfsubject={%s},\n pdfcreator={%s}}\n"
1107 (or (plist-get info :keywords) "")
1108 (or (plist-get info :description) "")
1109 (if (not (plist-get info :with-creator)) ""
1110 (plist-get info :creator))))
1111 ;; Document start.
1112 "\\begin{document}\n\n"
1113 ;; Title command.
1114 (org-element-normalize-string
1115 (cond ((string= "" title) nil)
1116 ((not (stringp org-latex-title-command)) nil)
1117 ((string-match "\\(?:[^%]\\|^\\)%s"
1118 org-latex-title-command)
1119 (format org-latex-title-command title))
1120 (t org-latex-title-command)))
1121 ;; Table of contents.
1122 (let ((depth (plist-get info :with-toc)))
1123 (when depth
1124 (concat (when (wholenump depth)
1125 (format "\\setcounter{tocdepth}{%d}\n" depth))
1126 org-latex-toc-command)))
1127 ;; Document's body.
1128 contents
1129 ;; Creator.
1130 (let ((creator-info (plist-get info :with-creator)))
1131 (cond
1132 ((not creator-info) "")
1133 ((eq creator-info 'comment)
1134 (format "%% %s\n" (plist-get info :creator)))
1135 (t (concat (plist-get info :creator) "\n"))))
1136 ;; Document end.
1137 "\\end{document}")))
1141 ;;; Transcode Functions
1143 ;;;; Bold
1145 (defun org-latex-bold (bold contents info)
1146 "Transcode BOLD from Org to LaTeX.
1147 CONTENTS is the text with bold markup. INFO is a plist holding
1148 contextual information."
1149 (org-latex--text-markup contents 'bold))
1152 ;;;; Center Block
1154 (defun org-latex-center-block (center-block contents info)
1155 "Transcode a CENTER-BLOCK element from Org to LaTeX.
1156 CONTENTS holds the contents of the center block. INFO is a plist
1157 holding contextual information."
1158 (org-latex--wrap-label
1159 center-block
1160 (format "\\begin{center}\n%s\\end{center}" contents)))
1163 ;;;; Clock
1165 (defun org-latex-clock (clock contents info)
1166 "Transcode a CLOCK element from Org to LaTeX.
1167 CONTENTS is nil. INFO is a plist holding contextual
1168 information."
1169 (concat
1170 "\\noindent"
1171 (format "\\textbf{%s} " org-clock-string)
1172 (format org-latex-inactive-timestamp-format
1173 (concat (org-translate-time
1174 (org-element-property :raw-value
1175 (org-element-property :value clock)))
1176 (let ((time (org-element-property :duration clock)))
1177 (and time (format " (%s)" time)))))
1178 "\\\\"))
1181 ;;;; Code
1183 (defun org-latex-code (code contents info)
1184 "Transcode a CODE object from Org to LaTeX.
1185 CONTENTS is nil. INFO is a plist used as a communication
1186 channel."
1187 (org-latex--text-markup (org-element-property :value code) 'code))
1190 ;;;; Drawer
1192 (defun org-latex-drawer (drawer contents info)
1193 "Transcode a DRAWER element from Org to LaTeX.
1194 CONTENTS holds the contents of the block. INFO is a plist
1195 holding contextual information."
1196 (let* ((name (org-element-property :drawer-name drawer))
1197 (output (if (functionp org-latex-format-drawer-function)
1198 (funcall org-latex-format-drawer-function
1199 name contents)
1200 ;; If there's no user defined function: simply
1201 ;; display contents of the drawer.
1202 contents)))
1203 (org-latex--wrap-label drawer output)))
1206 ;;;; Dynamic Block
1208 (defun org-latex-dynamic-block (dynamic-block contents info)
1209 "Transcode a DYNAMIC-BLOCK element from Org to LaTeX.
1210 CONTENTS holds the contents of the block. INFO is a plist
1211 holding contextual information. See `org-export-data'."
1212 (org-latex--wrap-label dynamic-block contents))
1215 ;;;; Entity
1217 (defun org-latex-entity (entity contents info)
1218 "Transcode an ENTITY object from Org to LaTeX.
1219 CONTENTS are the definition itself. INFO is a plist holding
1220 contextual information."
1221 (let ((ent (org-element-property :latex entity)))
1222 (if (org-element-property :latex-math-p entity) (format "$%s$" ent) ent)))
1225 ;;;; Example Block
1227 (defun org-latex-example-block (example-block contents info)
1228 "Transcode an EXAMPLE-BLOCK element from Org to LaTeX.
1229 CONTENTS is nil. INFO is a plist holding contextual
1230 information."
1231 (when (org-string-nw-p (org-element-property :value example-block))
1232 (org-latex--wrap-label
1233 example-block
1234 (format "\\begin{verbatim}\n%s\\end{verbatim}"
1235 (org-export-format-code-default example-block info)))))
1238 ;;;; Export Block
1240 (defun org-latex-export-block (export-block contents info)
1241 "Transcode a EXPORT-BLOCK element from Org to LaTeX.
1242 CONTENTS is nil. INFO is a plist holding contextual information."
1243 (when (member (org-element-property :type export-block) '("LATEX" "TEX"))
1244 (org-remove-indentation (org-element-property :value export-block))))
1247 ;;;; Export Snippet
1249 (defun org-latex-export-snippet (export-snippet contents info)
1250 "Transcode a EXPORT-SNIPPET object from Org to LaTeX.
1251 CONTENTS is nil. INFO is a plist holding contextual information."
1252 (when (eq (org-export-snippet-backend export-snippet) 'latex)
1253 (org-element-property :value export-snippet)))
1256 ;;;; Fixed Width
1258 (defun org-latex-fixed-width (fixed-width contents info)
1259 "Transcode a FIXED-WIDTH element from Org to LaTeX.
1260 CONTENTS is nil. INFO is a plist holding contextual information."
1261 (org-latex--wrap-label
1262 fixed-width
1263 (format "\\begin{verbatim}\n%s\\end{verbatim}"
1264 (org-remove-indentation
1265 (org-element-property :value fixed-width)))))
1268 ;;;; Footnote Reference
1270 ;; Footnote reference export is handled by
1271 ;; `org-latex-footnote-reference'.
1273 ;; Internally, `org-latex--get-footnote-counter' is used to restore
1274 ;; the value of the LaTeX "footnote" counter after a jump due to
1275 ;; a reference to an already defined footnote. It is only needed in
1276 ;; item tags since the optional argument to \footnotemark is not
1277 ;; allowed there.
1279 (defun org-latex--get-footnote-counter (footnote-reference info)
1280 "Return \"footnote\" counter before FOOTNOTE-REFERENCE is encountered.
1281 INFO is a plist used as a communication channel."
1282 ;; Find original counter value by counting number of footnote
1283 ;; references appearing for the first time before the current
1284 ;; footnote reference.
1285 (let* ((label (org-element-property :label footnote-reference))
1286 seen-refs
1287 search-ref ; For byte-compiler.
1288 (search-ref
1289 (function
1290 (lambda (data)
1291 ;; Search footnote references through DATA, filling
1292 ;; SEEN-REFS along the way.
1293 (org-element-map data 'footnote-reference
1294 (lambda (fn)
1295 (let ((fn-lbl (org-element-property :label fn)))
1296 (cond
1297 ;; Anonymous footnote match: return number.
1298 ((eq fn footnote-reference) (length seen-refs))
1299 ;; Anonymous footnote: it's always a new one.
1300 ;; Also, be sure to return nil from the `cond' so
1301 ;; `first-match' doesn't get us out of the loop.
1302 ((not fn-lbl) (push 'inline seen-refs) nil)
1303 ;; Label not seen so far: add it so SEEN-REFS.
1305 ;; Also search for subsequent references in
1306 ;; footnote definition so numbering follows
1307 ;; reading logic. Note that we don't care about
1308 ;; inline definitions, since `org-element-map'
1309 ;; already traverses them at the right time.
1310 ((not (member fn-lbl seen-refs))
1311 (push fn-lbl seen-refs)
1312 (funcall search-ref
1313 (org-export-get-footnote-definition fn info))))))
1314 ;; Don't enter footnote definitions since it will
1315 ;; happen when their first reference is found.
1316 info 'first-match 'footnote-definition)))))
1317 (funcall search-ref (plist-get info :parse-tree))))
1319 (defun org-latex-footnote-reference (footnote-reference contents info)
1320 "Transcode a FOOTNOTE-REFERENCE element from Org to LaTeX.
1321 CONTENTS is nil. INFO is a plist holding contextual information."
1322 (concat
1323 ;; Insert separator between two footnotes in a row.
1324 (let ((prev (org-export-get-previous-element footnote-reference info)))
1325 (when (eq (org-element-type prev) 'footnote-reference)
1326 org-latex-footnote-separator))
1327 (cond
1328 ;; Use \footnotemark if reference is within an item's tag.
1329 ((eq (org-element-type (org-export-get-parent-element footnote-reference))
1330 'item)
1331 (if (org-export-footnote-first-reference-p footnote-reference info)
1332 "\\footnotemark"
1333 ;; Since we can't specify footnote number as an optional
1334 ;; argument within an item tag, some extra work has to be done
1335 ;; when the footnote has already been referenced. In that
1336 ;; case, set footnote counter to the desired number, use the
1337 ;; footnotemark, then set counter back to its original value.
1338 (format
1339 "\\setcounter{footnote}{%s}\\footnotemark\\setcounter{footnote}{%s}"
1340 (1- (org-export-get-footnote-number footnote-reference info))
1341 (org-latex--get-footnote-counter footnote-reference info))))
1342 ;; Use \footnotemark if the footnote has already been defined.
1343 ((not (org-export-footnote-first-reference-p footnote-reference info))
1344 (format "\\footnotemark[%s]{}"
1345 (org-export-get-footnote-number footnote-reference info)))
1346 ;; Use \footnotemark if reference is within another footnote
1347 ;; reference, footnote definition or table cell.
1348 ((loop for parent in (org-export-get-genealogy footnote-reference)
1349 thereis (memq (org-element-type parent)
1350 '(footnote-reference footnote-definition table-cell)))
1351 "\\footnotemark")
1352 ;; Otherwise, define it with \footnote command.
1354 (let ((def (org-export-get-footnote-definition footnote-reference info)))
1355 (concat
1356 (format "\\footnote{%s}" (org-trim (org-export-data def info)))
1357 ;; Retrieve all footnote references within the footnote and
1358 ;; add their definition after it, since LaTeX doesn't support
1359 ;; them inside.
1360 (org-latex--delayed-footnotes-definitions def info)))))))
1363 ;;;; Headline
1365 (defun org-latex-headline (headline contents info)
1366 "Transcode a HEADLINE element from Org to LaTeX.
1367 CONTENTS holds the contents of the headline. INFO is a plist
1368 holding contextual information."
1369 (unless (org-element-property :footnote-section-p headline)
1370 (let* ((class (plist-get info :latex-class))
1371 (level (org-export-get-relative-level headline info))
1372 (numberedp (org-export-numbered-headline-p headline info))
1373 (class-sectionning (assoc class org-latex-classes))
1374 ;; Section formatting will set two placeholders: one for
1375 ;; the title and the other for the contents.
1376 (section-fmt
1377 (let ((sec (if (functionp (nth 2 class-sectionning))
1378 (funcall (nth 2 class-sectionning) level numberedp)
1379 (nth (1+ level) class-sectionning))))
1380 (cond
1381 ;; No section available for that LEVEL.
1382 ((not sec) nil)
1383 ;; Section format directly returned by a function. Add
1384 ;; placeholder for contents.
1385 ((stringp sec) (concat sec "\n%s"))
1386 ;; (numbered-section . unnumbered-section)
1387 ((not (consp (cdr sec)))
1388 (concat (funcall (if numberedp #'car #'cdr) sec) "\n%s"))
1389 ;; (numbered-open numbered-close)
1390 ((= (length sec) 2)
1391 (when numberedp (concat (car sec) "\n%s" (nth 1 sec))))
1392 ;; (num-in num-out no-num-in no-num-out)
1393 ((= (length sec) 4)
1394 (if numberedp (concat (car sec) "\n%s" (nth 1 sec))
1395 (concat (nth 2 sec) "\n%s" (nth 3 sec)))))))
1396 (text (org-export-data (org-element-property :title headline) info))
1397 (todo
1398 (and (plist-get info :with-todo-keywords)
1399 (let ((todo (org-element-property :todo-keyword headline)))
1400 (and todo (org-export-data todo info)))))
1401 (todo-type (and todo (org-element-property :todo-type headline)))
1402 (tags (and (plist-get info :with-tags)
1403 (org-export-get-tags headline info)))
1404 (priority (and (plist-get info :with-priority)
1405 (org-element-property :priority headline)))
1406 ;; Create the headline text along with a no-tag version.
1407 ;; The latter is required to remove tags from toc.
1408 (full-text (funcall org-latex-format-headline-function
1409 todo todo-type priority text tags))
1410 ;; Associate \label to the headline for internal links.
1411 (headline-label
1412 (format "\\label{sec-%s}\n"
1413 (mapconcat 'number-to-string
1414 (org-export-get-headline-number headline info)
1415 "-")))
1416 (pre-blanks
1417 (make-string (org-element-property :pre-blank headline) 10)))
1418 (if (or (not section-fmt) (org-export-low-level-p headline info))
1419 ;; This is a deep sub-tree: export it as a list item. Also
1420 ;; export as items headlines for which no section format has
1421 ;; been found.
1422 (let ((low-level-body
1423 (concat
1424 ;; If headline is the first sibling, start a list.
1425 (when (org-export-first-sibling-p headline info)
1426 (format "\\begin{%s}\n" (if numberedp 'enumerate 'itemize)))
1427 ;; Itemize headline
1428 "\\item " full-text "\n" headline-label pre-blanks contents)))
1429 ;; If headline is not the last sibling simply return
1430 ;; LOW-LEVEL-BODY. Otherwise, also close the list, before
1431 ;; any blank line.
1432 (if (not (org-export-last-sibling-p headline info)) low-level-body
1433 (replace-regexp-in-string
1434 "[ \t\n]*\\'"
1435 (format "\n\\\\end{%s}" (if numberedp 'enumerate 'itemize))
1436 low-level-body)))
1437 ;; This is a standard headline. Export it as a section. Add
1438 ;; an alternative heading when possible.
1439 (let ((opt-title
1440 (funcall org-latex-format-headline-function
1441 todo todo-type priority
1442 (org-export-data
1443 (org-export-get-alt-title headline info) info)
1444 (and (eq (plist-get info :with-tags) t) tags))))
1445 (if (and numberedp opt-title
1446 (string-match "\\`\\\\\\(.*?[^*]\\){" section-fmt))
1447 (format (replace-match "\\1[%s]" nil nil section-fmt 1)
1448 ;; Replace square brackets with parenthesis
1449 ;; since square brackets are not supported in
1450 ;; optional arguments.
1451 (replace-regexp-in-string
1452 "\\[" "(" (replace-regexp-in-string "\\]" ")" opt-title))
1453 full-text
1454 (concat headline-label pre-blanks contents))
1455 ;; Impossible to add an alternative heading. Fallback to
1456 ;; regular sectioning format string.
1457 (format section-fmt full-text
1458 (concat headline-label pre-blanks contents))))))))
1460 (defun org-latex-format-headline-default-function
1461 (todo todo-type priority text tags)
1462 "Default format function for a headline.
1463 See `org-latex-format-headline-function' for details."
1464 (concat
1465 (and todo (format "{\\bfseries\\sffamily %s} " todo))
1466 (and priority (format "\\framebox{\\#%c} " priority))
1467 text
1468 (and tags
1469 (format "\\hfill{}\\textsc{%s}" (mapconcat 'identity tags ":")))))
1472 ;;;; Horizontal Rule
1474 (defun org-latex-horizontal-rule (horizontal-rule contents info)
1475 "Transcode an HORIZONTAL-RULE object from Org to LaTeX.
1476 CONTENTS is nil. INFO is a plist holding contextual information."
1477 (let ((attr (org-export-read-attribute :attr_latex horizontal-rule))
1478 (prev (org-export-get-previous-element horizontal-rule info)))
1479 (concat
1480 ;; Make sure the rule doesn't start at the end of the current
1481 ;; line by separating it with a blank line from previous element.
1482 (when (and prev
1483 (let ((prev-blank (org-element-property :post-blank prev)))
1484 (or (not prev-blank) (zerop prev-blank))))
1485 "\n")
1486 (org-latex--wrap-label
1487 horizontal-rule
1488 (format "\\rule{%s}{%s}"
1489 (or (plist-get attr :width) "\\linewidth")
1490 (or (plist-get attr :thickness) "0.5pt"))))))
1493 ;;;; Inline Src Block
1495 (defun org-latex-inline-src-block (inline-src-block contents info)
1496 "Transcode an INLINE-SRC-BLOCK element from Org to LaTeX.
1497 CONTENTS holds the contents of the item. INFO is a plist holding
1498 contextual information."
1499 (let* ((code (org-element-property :value inline-src-block))
1500 (separator (org-latex--find-verb-separator code)))
1501 (cond
1502 ;; Do not use a special package: transcode it verbatim.
1503 ((not org-latex-listings)
1504 (concat "\\verb" separator code separator))
1505 ;; Use minted package.
1506 ((eq org-latex-listings 'minted)
1507 (let* ((org-lang (org-element-property :language inline-src-block))
1508 (mint-lang (or (cadr (assq (intern org-lang)
1509 org-latex-minted-langs))
1510 org-lang))
1511 (options (org-latex--make-option-string
1512 org-latex-minted-options)))
1513 (concat (format "\\mint%s{%s}"
1514 (if (string= options "") "" (format "[%s]" options))
1515 mint-lang)
1516 separator code separator)))
1517 ;; Use listings package.
1519 ;; Maybe translate language's name.
1520 (let* ((org-lang (org-element-property :language inline-src-block))
1521 (lst-lang (or (cadr (assq (intern org-lang)
1522 org-latex-listings-langs))
1523 org-lang))
1524 (options (org-latex--make-option-string
1525 (append org-latex-listings-options
1526 `(("language" ,lst-lang))))))
1527 (concat (format "\\lstinline[%s]" options)
1528 separator code separator))))))
1531 ;;;; Inlinetask
1533 (defun org-latex-inlinetask (inlinetask contents info)
1534 "Transcode an INLINETASK element from Org to LaTeX.
1535 CONTENTS holds the contents of the block. INFO is a plist
1536 holding contextual information."
1537 (let ((title (org-export-data (org-element-property :title inlinetask) info))
1538 (todo (and (plist-get info :with-todo-keywords)
1539 (let ((todo (org-element-property :todo-keyword inlinetask)))
1540 (and todo (org-export-data todo info)))))
1541 (todo-type (org-element-property :todo-type inlinetask))
1542 (tags (and (plist-get info :with-tags)
1543 (org-export-get-tags inlinetask info)))
1544 (priority (and (plist-get info :with-priority)
1545 (org-element-property :priority inlinetask))))
1546 ;; If `org-latex-format-inlinetask-function' is provided, call it
1547 ;; with appropriate arguments.
1548 (if (functionp org-latex-format-inlinetask-function)
1549 (funcall org-latex-format-inlinetask-function
1550 todo todo-type priority title tags contents)
1551 ;; Otherwise, use a default template.
1552 (org-latex--wrap-label
1553 inlinetask
1554 (let ((full-title
1555 (concat
1556 (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
1557 (when priority (format "\\framebox{\\#%c} " priority))
1558 title
1559 (when tags (format "\\hfill{}\\textsc{:%s:}"
1560 (mapconcat 'identity tags ":"))))))
1561 (format (concat "\\begin{center}\n"
1562 "\\fbox{\n"
1563 "\\begin{minipage}[c]{.6\\textwidth}\n"
1564 "%s\n\n"
1565 "\\rule[.8em]{\\textwidth}{2pt}\n\n"
1566 "%s"
1567 "\\end{minipage}\n"
1568 "}\n"
1569 "\\end{center}")
1570 full-title contents))))))
1573 ;;;; Italic
1575 (defun org-latex-italic (italic contents info)
1576 "Transcode ITALIC from Org to LaTeX.
1577 CONTENTS is the text with italic markup. INFO is a plist holding
1578 contextual information."
1579 (org-latex--text-markup contents 'italic))
1582 ;;;; Item
1584 (defun org-latex-item (item contents info)
1585 "Transcode an ITEM element from Org to LaTeX.
1586 CONTENTS holds the contents of the item. INFO is a plist holding
1587 contextual information."
1588 (let* ((counter
1589 (let ((count (org-element-property :counter item))
1590 (level
1591 ;; Determine level of current item to determine the
1592 ;; correct LaTeX counter to use (enumi, enumii...).
1593 (let ((parent item) (level 0))
1594 (while (memq (org-element-type
1595 (setq parent (org-export-get-parent parent)))
1596 '(plain-list item))
1597 (when (and (eq (org-element-type parent) 'plain-list)
1598 (eq (org-element-property :type parent)
1599 'ordered))
1600 (incf level)))
1601 level)))
1602 (and count
1603 (< level 5)
1604 (format "\\setcounter{enum%s}{%s}\n"
1605 (nth (1- level) '("i" "ii" "iii" "iv"))
1606 (1- count)))))
1607 (checkbox (case (org-element-property :checkbox item)
1608 (on "$\\boxtimes$ ")
1609 (off "$\\Box$ ")
1610 (trans "$\\boxminus$ ")))
1611 (tag (let ((tag (org-element-property :tag item)))
1612 ;; Check-boxes must belong to the tag.
1613 (and tag (format "[%s] "
1614 (concat checkbox
1615 (org-export-data tag info)))))))
1616 (concat counter "\\item" (or tag (concat " " checkbox))
1617 (and contents (org-trim contents))
1618 ;; If there are footnotes references in tag, be sure to
1619 ;; add their definition at the end of the item. This
1620 ;; workaround is necessary since "\footnote{}" command is
1621 ;; not supported in tags.
1622 (and tag
1623 (org-latex--delayed-footnotes-definitions
1624 (org-element-property :tag item) info)))))
1627 ;;;; Keyword
1629 (defun org-latex-keyword (keyword contents info)
1630 "Transcode a KEYWORD element from Org to LaTeX.
1631 CONTENTS is nil. INFO is a plist holding contextual information."
1632 (let ((key (org-element-property :key keyword))
1633 (value (org-element-property :value keyword)))
1634 (cond
1635 ((string= key "LATEX") value)
1636 ((string= key "INDEX") (format "\\index{%s}" value))
1637 ((string= key "TOC")
1638 (let ((value (downcase value)))
1639 (cond
1640 ((string-match "\\<headlines\\>" value)
1641 (let ((depth (or (and (string-match "[0-9]+" value)
1642 (string-to-number (match-string 0 value)))
1643 (plist-get info :with-toc))))
1644 (concat
1645 (when (wholenump depth)
1646 (format "\\setcounter{tocdepth}{%s}\n" depth))
1647 "\\tableofcontents")))
1648 ((string= "tables" value) "\\listoftables")
1649 ((string= "listings" value)
1650 (cond
1651 ((eq org-latex-listings 'minted) "\\listoflistings")
1652 (org-latex-listings "\\lstlistoflistings")
1653 ;; At the moment, src blocks with a caption are wrapped
1654 ;; into a figure environment.
1655 (t "\\listoffigures")))))))))
1658 ;;;; Latex Environment
1660 (defun org-latex-latex-environment (latex-environment contents info)
1661 "Transcode a LATEX-ENVIRONMENT element from Org to LaTeX.
1662 CONTENTS is nil. INFO is a plist holding contextual information."
1663 (when (plist-get info :with-latex)
1664 (let ((label (org-element-property :name latex-environment))
1665 (value (org-remove-indentation
1666 (org-element-property :value latex-environment))))
1667 (if (not (org-string-nw-p label)) value
1668 ;; Environment is labelled: label must be within the environment
1669 ;; (otherwise, a reference pointing to that element will count
1670 ;; the section instead).
1671 (with-temp-buffer
1672 (insert value)
1673 (goto-char (point-min))
1674 (forward-line)
1675 (insert
1676 (format "\\label{%s}\n" (org-export-solidify-link-text label)))
1677 (buffer-string))))))
1680 ;;;; Latex Fragment
1682 (defun org-latex-latex-fragment (latex-fragment contents info)
1683 "Transcode a LATEX-FRAGMENT object from Org to LaTeX.
1684 CONTENTS is nil. INFO is a plist holding contextual information."
1685 (when (plist-get info :with-latex)
1686 (org-element-property :value latex-fragment)))
1689 ;;;; Line Break
1691 (defun org-latex-line-break (line-break contents info)
1692 "Transcode a LINE-BREAK object from Org to LaTeX.
1693 CONTENTS is nil. INFO is a plist holding contextual information."
1694 "\\\\\n")
1697 ;;;; Link
1699 (defun org-latex--inline-image (link info)
1700 "Return LaTeX code for an inline image.
1701 LINK is the link pointing to the inline image. INFO is a plist
1702 used as a communication channel."
1703 (let* ((parent (org-export-get-parent-element link))
1704 (path (let ((raw-path (org-element-property :path link)))
1705 (if (not (file-name-absolute-p raw-path)) raw-path
1706 (expand-file-name raw-path))))
1707 (filetype (file-name-extension path))
1708 (caption (org-latex--caption/label-string parent info))
1709 ;; Retrieve latex attributes from the element around.
1710 (attr (org-export-read-attribute :attr_latex parent))
1711 (float (let ((float (plist-get attr :float)))
1712 (cond ((string= float "wrap") 'wrap)
1713 ((string= float "multicolumn") 'multicolumn)
1714 ((or (string= float "figure")
1715 (org-element-property :caption parent))
1716 'figure))))
1717 (placement
1718 (let ((place (plist-get attr :placement)))
1719 (cond (place (format "%s" place))
1720 ((eq float 'wrap) "{l}{0.5\\textwidth}")
1721 ((eq float 'figure)
1722 (format "[%s]" org-latex-default-figure-position))
1723 (t ""))))
1724 (comment-include (if (plist-get attr :comment-include) "%" ""))
1725 ;; It is possible to specify width and height in the
1726 ;; ATTR_LATEX line, and also via default variables.
1727 (width (cond ((plist-get attr :width))
1728 ((plist-get attr :height) "")
1729 ((eq float 'wrap) "0.48\\textwidth")
1730 (t org-latex-image-default-width)))
1731 (height (cond ((plist-get attr :height))
1732 ((or (plist-get attr :width)
1733 (memq float '(figure wrap))) "")
1734 (t org-latex-image-default-height)))
1735 (options (let ((opt (or (plist-get attr :options)
1736 org-latex-image-default-option)))
1737 (if (not (string-match "\\`\\[\\(.*\\)\\]\\'" opt)) opt
1738 (match-string 1 opt))))
1739 image-code)
1740 (if (equal filetype "tikz")
1741 ;; For tikz images:
1742 ;; - use \input to read in image file.
1743 ;; - if options are present, wrap in a tikzpicture environment.
1744 ;; - if width or height are present, use \resizebox to change
1745 ;; the image size.
1746 (progn
1747 (setq image-code (format "\\input{%s}" path))
1748 (when (org-string-nw-p options)
1749 (setq image-code
1750 (format "\\begin{tikzpicture}[%s]\n%s\n\\end{tikzpicture}"
1751 options
1752 image-code)))
1753 (when (or (org-string-nw-p width) (org-string-nw-p height))
1754 (setq image-code (format "\\resizebox{%s}{%s}{%s}"
1755 (if (org-string-nw-p width) width "!")
1756 (if (org-string-nw-p height) height "!")
1757 image-code))))
1758 ;; For other images:
1759 ;; - add width and height to options.
1760 ;; - include the image with \includegraphics.
1761 (when (org-string-nw-p width)
1762 (setq options (concat options ",width=" width)))
1763 (when (org-string-nw-p height)
1764 (setq options (concat options ",height=" height)))
1765 (setq image-code
1766 (format "\\includegraphics%s{%s}"
1767 (cond ((not (org-string-nw-p options)) "")
1768 ((= (aref options 0) ?,)
1769 (format "[%s]"(substring options 1)))
1770 (t (format "[%s]" options)))
1771 path)))
1772 ;; Return proper string, depending on FLOAT.
1773 (case float
1774 (wrap (format "\\begin{wrapfigure}%s
1775 \\centering
1776 %s%s
1777 %s\\end{wrapfigure}" placement comment-include image-code caption))
1778 (multicolumn (format "\\begin{figure*}%s
1779 \\centering
1780 %s%s
1781 %s\\end{figure*}" placement comment-include image-code caption))
1782 (figure (format "\\begin{figure}%s
1783 \\centering
1784 %s%s
1785 %s\\end{figure}" placement comment-include image-code caption))
1786 (otherwise image-code))))
1788 (defun org-latex-link (link desc info)
1789 "Transcode a LINK object from Org to LaTeX.
1791 DESC is the description part of the link, or the empty string.
1792 INFO is a plist holding contextual information. See
1793 `org-export-data'."
1794 (let* ((type (org-element-property :type link))
1795 (raw-path (org-element-property :path link))
1796 ;; Ensure DESC really exists, or set it to nil.
1797 (desc (and (not (string= desc "")) desc))
1798 (imagep (org-export-inline-image-p
1799 link org-latex-inline-image-rules))
1800 (path (cond
1801 ((member type '("http" "https" "ftp" "mailto"))
1802 (concat type ":" raw-path))
1803 ((string= type "file")
1804 (if (not (file-name-absolute-p raw-path)) raw-path
1805 (concat "file://" (expand-file-name raw-path))))
1806 (t raw-path)))
1807 protocol)
1808 (cond
1809 ;; Image file.
1810 (imagep (org-latex--inline-image link info))
1811 ;; Radio link: Transcode target's contents and use them as link's
1812 ;; description.
1813 ((string= type "radio")
1814 (let ((destination (org-export-resolve-radio-link link info)))
1815 (when destination
1816 (format "\\hyperref[%s]{%s}"
1817 (org-export-solidify-link-text path)
1818 (org-export-data (org-element-contents destination) info)))))
1819 ;; Links pointing to a headline: Find destination and build
1820 ;; appropriate referencing command.
1821 ((member type '("custom-id" "fuzzy" "id"))
1822 (let ((destination (if (string= type "fuzzy")
1823 (org-export-resolve-fuzzy-link link info)
1824 (org-export-resolve-id-link link info))))
1825 (case (org-element-type destination)
1826 ;; Id link points to an external file.
1827 (plain-text
1828 (if desc (format "\\href{%s}{%s}" destination desc)
1829 (format "\\url{%s}" destination)))
1830 ;; Fuzzy link points nowhere.
1831 ('nil
1832 (format org-latex-link-with-unknown-path-format
1833 (or desc
1834 (org-export-data
1835 (org-element-property :raw-link link) info))))
1836 ;; LINK points to a headline. If headlines are numbered
1837 ;; and the link has no description, display headline's
1838 ;; number. Otherwise, display description or headline's
1839 ;; title.
1840 (headline
1841 (let ((label
1842 (format "sec-%s"
1843 (mapconcat
1844 'number-to-string
1845 (org-export-get-headline-number destination info)
1846 "-"))))
1847 (if (and (plist-get info :section-numbers) (not desc))
1848 (format "\\ref{%s}" label)
1849 (format "\\hyperref[%s]{%s}" label
1850 (or desc
1851 (org-export-data
1852 (org-element-property :title destination) info))))))
1853 ;; Fuzzy link points to a target. Do as above.
1854 (otherwise
1855 (let ((path (org-export-solidify-link-text path)))
1856 (if (not desc) (format "\\ref{%s}" path)
1857 (format "\\hyperref[%s]{%s}" path desc)))))))
1858 ;; Coderef: replace link with the reference name or the
1859 ;; equivalent line number.
1860 ((string= type "coderef")
1861 (format (org-export-get-coderef-format path desc)
1862 (org-export-resolve-coderef path info)))
1863 ;; Link type is handled by a special function.
1864 ((functionp (setq protocol (nth 2 (assoc type org-link-protocols))))
1865 (funcall protocol (org-link-unescape path) desc 'latex))
1866 ;; External link with a description part.
1867 ((and path desc) (format "\\href{%s}{%s}" path desc))
1868 ;; External link without a description part.
1869 (path (format "\\url{%s}" path))
1870 ;; No path, only description. Try to do something useful.
1871 (t (format org-latex-link-with-unknown-path-format desc)))))
1874 ;;;; Paragraph
1876 (defun org-latex-paragraph (paragraph contents info)
1877 "Transcode a PARAGRAPH element from Org to LaTeX.
1878 CONTENTS is the contents of the paragraph, as a string. INFO is
1879 the plist used as a communication channel."
1880 contents)
1883 ;;;; Plain List
1885 (defun org-latex-plain-list (plain-list contents info)
1886 "Transcode a PLAIN-LIST element from Org to LaTeX.
1887 CONTENTS is the contents of the list. INFO is a plist holding
1888 contextual information."
1889 (let* ((type (org-element-property :type plain-list))
1890 (attr (org-export-read-attribute :attr_latex plain-list))
1891 (latex-type (let ((env (plist-get attr :environment)))
1892 (cond (env (format "%s" env))
1893 ((eq type 'ordered) "enumerate")
1894 ((eq type 'unordered) "itemize")
1895 ((eq type 'descriptive) "description")))))
1896 (org-latex--wrap-label
1897 plain-list
1898 (format "\\begin{%s}%s\n%s\\end{%s}"
1899 latex-type
1900 ;; Put optional arguments, if any inside square brackets
1901 ;; when necessary.
1902 (let ((options (format "%s" (or (plist-get attr :options) ""))))
1903 (cond ((equal options "") "")
1904 ((string-match "\\`\\[.*\\]\\'" options) options)
1905 (t (format "[%s]" options))))
1906 contents
1907 latex-type))))
1910 ;;;; Plain Text
1912 (defun org-latex-plain-text (text info)
1913 "Transcode a TEXT string from Org to LaTeX.
1914 TEXT is the string to transcode. INFO is a plist holding
1915 contextual information."
1916 (let ((specialp (plist-get info :with-special-strings))
1917 (output text))
1918 ;; Protect %, #, &, $, ^, _, { and }.
1919 (while (string-match "\\([^\\]\\|^\\)\\([%$#&{}^_]\\)" output)
1920 (setq output
1921 (replace-match
1922 (format "\\%s" (match-string 2 output)) nil t output 2)))
1923 ;; Protect \. If special strings are used, be careful not to
1924 ;; protect "\" in "\-" constructs.
1925 (let ((symbols (if specialp "-%$#&{}^_\\" "%$#&{}^_\\")))
1926 (setq output
1927 (replace-regexp-in-string
1928 (format "\\(?:[^\\]\\|^\\)\\(\\\\\\)\\(?:[^%s]\\|$\\)" symbols)
1929 "$\\backslash$" output nil t 1)))
1930 ;; Protect ~.
1931 (setq output
1932 (replace-regexp-in-string
1933 "\\([^\\]\\|^\\)\\(~\\)" "\\textasciitilde{}" output nil t 2))
1934 ;; Activate smart quotes. Be sure to provide original TEXT string
1935 ;; since OUTPUT may have been modified.
1936 (when (plist-get info :with-smart-quotes)
1937 (setq output (org-export-activate-smart-quotes output :latex info text)))
1938 ;; LaTeX into \LaTeX{} and TeX into \TeX{}.
1939 (let ((case-fold-search nil)
1940 (start 0))
1941 (while (string-match "\\<\\(\\(?:La\\)?TeX\\)\\>" output start)
1942 (setq output (replace-match
1943 (format "\\%s{}" (match-string 1 output)) nil t output)
1944 start (match-end 0))))
1945 ;; Convert special strings.
1946 (when specialp
1947 (setq output
1948 (replace-regexp-in-string "\\.\\.\\." "\\ldots{}" output nil t)))
1949 ;; Handle break preservation if required.
1950 (when (plist-get info :preserve-breaks)
1951 (setq output (replace-regexp-in-string
1952 "\\(\\\\\\\\\\)?[ \t]*\n" " \\\\\\\\\n" output)))
1953 ;; Return value.
1954 output))
1957 ;;;; Planning
1959 (defun org-latex-planning (planning contents info)
1960 "Transcode a PLANNING element from Org to LaTeX.
1961 CONTENTS is nil. INFO is a plist holding contextual
1962 information."
1963 (concat
1964 "\\noindent"
1965 (mapconcat
1966 'identity
1967 (delq nil
1968 (list
1969 (let ((closed (org-element-property :closed planning)))
1970 (when closed
1971 (concat
1972 (format "\\textbf{%s} " org-closed-string)
1973 (format org-latex-inactive-timestamp-format
1974 (org-translate-time
1975 (org-element-property :raw-value closed))))))
1976 (let ((deadline (org-element-property :deadline planning)))
1977 (when deadline
1978 (concat
1979 (format "\\textbf{%s} " org-deadline-string)
1980 (format org-latex-active-timestamp-format
1981 (org-translate-time
1982 (org-element-property :raw-value deadline))))))
1983 (let ((scheduled (org-element-property :scheduled planning)))
1984 (when scheduled
1985 (concat
1986 (format "\\textbf{%s} " org-scheduled-string)
1987 (format org-latex-active-timestamp-format
1988 (org-translate-time
1989 (org-element-property :raw-value scheduled))))))))
1990 " ")
1991 "\\\\"))
1994 ;;;; Quote Block
1996 (defun org-latex-quote-block (quote-block contents info)
1997 "Transcode a QUOTE-BLOCK element from Org to LaTeX.
1998 CONTENTS holds the contents of the block. INFO is a plist
1999 holding contextual information."
2000 (org-latex--wrap-label
2001 quote-block
2002 (format "\\begin{quote}\n%s\\end{quote}" contents)))
2005 ;;;; Quote Section
2007 (defun org-latex-quote-section (quote-section contents info)
2008 "Transcode a QUOTE-SECTION element from Org to LaTeX.
2009 CONTENTS is nil. INFO is a plist holding contextual information."
2010 (let ((value (org-remove-indentation
2011 (org-element-property :value quote-section))))
2012 (when value (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
2015 ;;;; Radio Target
2017 (defun org-latex-radio-target (radio-target text info)
2018 "Transcode a RADIO-TARGET object from Org to LaTeX.
2019 TEXT is the text of the target. INFO is a plist holding
2020 contextual information."
2021 (format "\\label{%s}%s"
2022 (org-export-solidify-link-text
2023 (org-element-property :value radio-target))
2024 text))
2027 ;;;; Section
2029 (defun org-latex-section (section contents info)
2030 "Transcode a SECTION element from Org to LaTeX.
2031 CONTENTS holds the contents of the section. INFO is a plist
2032 holding contextual information."
2033 contents)
2036 ;;;; Special Block
2038 (defun org-latex-special-block (special-block contents info)
2039 "Transcode a SPECIAL-BLOCK element from Org to LaTeX.
2040 CONTENTS holds the contents of the block. INFO is a plist
2041 holding contextual information."
2042 (let ((type (downcase (org-element-property :type special-block)))
2043 (opt (org-export-read-attribute :attr_latex special-block :options)))
2044 (concat (format "\\begin{%s}%s\n" type (or opt ""))
2045 ;; Insert any label or caption within the block
2046 ;; (otherwise, a reference pointing to that element will
2047 ;; count the section instead).
2048 (org-latex--caption/label-string special-block info)
2049 contents
2050 (format "\\end{%s}" type))))
2053 ;;;; Src Block
2055 (defun org-latex-src-block (src-block contents info)
2056 "Transcode a SRC-BLOCK element from Org to LaTeX.
2057 CONTENTS holds the contents of the item. INFO is a plist holding
2058 contextual information."
2059 (when (org-string-nw-p (org-element-property :value src-block))
2060 (let* ((lang (org-element-property :language src-block))
2061 (caption (org-element-property :caption src-block))
2062 (label (org-element-property :name src-block))
2063 (custom-env (and lang
2064 (cadr (assq (intern lang)
2065 org-latex-custom-lang-environments))))
2066 (num-start (case (org-element-property :number-lines src-block)
2067 (continued (org-export-get-loc src-block info))
2068 (new 0)))
2069 (retain-labels (org-element-property :retain-labels src-block))
2070 (long-listing
2071 (let ((attr (org-export-read-attribute :attr_latex src-block)))
2072 (if (plist-member attr :long-listing)
2073 (plist-get attr :long-listing)
2074 org-latex-long-listings))))
2075 (cond
2076 ;; Case 1. No source fontification.
2077 ((not org-latex-listings)
2078 (let* ((caption-str (org-latex--caption/label-string src-block info))
2079 (float-env (and (not long-listing)
2080 (or label caption)
2081 (format "\\begin{figure}[H]\n%s%%s\n\\end{figure}"
2082 caption-str))))
2083 (format
2084 (or float-env "%s")
2085 (concat (format "\\begin{verbatim}\n%s\\end{verbatim}"
2086 (org-export-format-code-default src-block info))))))
2087 ;; Case 2. Custom environment.
2088 (custom-env (format "\\begin{%s}\n%s\\end{%s}\n"
2089 custom-env
2090 (org-export-format-code-default src-block info)
2091 custom-env))
2092 ;; Case 3. Use minted package.
2093 ((eq org-latex-listings 'minted)
2094 (let ((float-env
2095 (and (not long-listing)
2096 (or label caption)
2097 (format "\\begin{listing}[H]\n%%s\n%s\\end{listing}"
2098 (org-latex--caption/label-string src-block info))))
2099 (body
2100 (format
2101 "\\begin{minted}[%s]{%s}\n%s\\end{minted}"
2102 ;; Options.
2103 (org-latex--make-option-string
2104 (if (or (not num-start)
2105 (assoc "linenos" org-latex-minted-options))
2106 org-latex-minted-options
2107 (append `(("linenos")
2108 ("firstnumber" ,(number-to-string (1+ num-start))))
2109 org-latex-minted-options)))
2110 ;; Language.
2111 (or (cadr (assq (intern lang) org-latex-minted-langs)) lang)
2112 ;; Source code.
2113 (let* ((code-info (org-export-unravel-code src-block))
2114 (max-width
2115 (apply 'max
2116 (mapcar 'length
2117 (org-split-string (car code-info)
2118 "\n")))))
2119 (org-export-format-code
2120 (car code-info)
2121 (lambda (loc num ref)
2122 (concat
2124 (when ref
2125 ;; Ensure references are flushed to the right,
2126 ;; separated with 6 spaces from the widest line
2127 ;; of code.
2128 (concat (make-string (+ (- max-width (length loc)) 6)
2129 ?\s)
2130 (format "(%s)" ref)))))
2131 nil (and retain-labels (cdr code-info)))))))
2132 ;; Return value.
2133 (if float-env (format float-env body) body)))
2134 ;; Case 4. Use listings package.
2136 (let ((lst-lang
2137 (or (cadr (assq (intern lang) org-latex-listings-langs)) lang))
2138 (caption-str
2139 (when caption
2140 (let ((main (org-export-get-caption src-block))
2141 (secondary (org-export-get-caption src-block t)))
2142 (if (not secondary)
2143 (format "{%s}" (org-export-data main info))
2144 (format "{[%s]%s}"
2145 (org-export-data secondary info)
2146 (org-export-data main info)))))))
2147 (concat
2148 ;; Options.
2149 (format "\\lstset{%s}\n"
2150 (org-latex--make-option-string
2151 (append
2152 org-latex-listings-options
2153 `(("language" ,lst-lang))
2154 (when label `(("label" ,label)))
2155 (when caption-str `(("caption" ,caption-str)))
2156 (cond ((assoc "numbers" org-latex-listings-options) nil)
2157 ((not num-start) '(("numbers" "none")))
2158 ((zerop num-start) '(("numbers" "left")))
2159 (t `(("numbers" "left")
2160 ("firstnumber"
2161 ,(number-to-string (1+ num-start)))))))))
2162 ;; Source code.
2163 (format
2164 "\\begin{lstlisting}\n%s\\end{lstlisting}"
2165 (let* ((code-info (org-export-unravel-code src-block))
2166 (max-width
2167 (apply 'max
2168 (mapcar 'length
2169 (org-split-string (car code-info) "\n")))))
2170 (org-export-format-code
2171 (car code-info)
2172 (lambda (loc num ref)
2173 (concat
2175 (when ref
2176 ;; Ensure references are flushed to the right,
2177 ;; separated with 6 spaces from the widest line of
2178 ;; code
2179 (concat (make-string (+ (- max-width (length loc)) 6) ? )
2180 (format "(%s)" ref)))))
2181 nil (and retain-labels (cdr code-info))))))))))))
2184 ;;;; Statistics Cookie
2186 (defun org-latex-statistics-cookie (statistics-cookie contents info)
2187 "Transcode a STATISTICS-COOKIE object from Org to LaTeX.
2188 CONTENTS is nil. INFO is a plist holding contextual information."
2189 (replace-regexp-in-string
2190 "%" "\\%" (org-element-property :value statistics-cookie) nil t))
2193 ;;;; Strike-Through
2195 (defun org-latex-strike-through (strike-through contents info)
2196 "Transcode STRIKE-THROUGH from Org to LaTeX.
2197 CONTENTS is the text with strike-through markup. INFO is a plist
2198 holding contextual information."
2199 (org-latex--text-markup contents 'strike-through))
2202 ;;;; Subscript
2204 (defun org-latex--script-size (object info)
2205 "Transcode a subscript or superscript object.
2206 OBJECT is an Org object. INFO is a plist used as a communication
2207 channel."
2208 (let ((in-script-p
2209 ;; Non-nil if object is already in a sub/superscript.
2210 (let ((parent object))
2211 (catch 'exit
2212 (while (setq parent (org-export-get-parent parent))
2213 (let ((type (org-element-type parent)))
2214 (cond ((memq type '(subscript superscript))
2215 (throw 'exit t))
2216 ((memq type org-element-all-elements)
2217 (throw 'exit nil))))))))
2218 (type (org-element-type object))
2219 (output ""))
2220 (org-element-map (org-element-contents object)
2221 (cons 'plain-text org-element-all-objects)
2222 (lambda (obj)
2223 (case (org-element-type obj)
2224 ((entity latex-fragment)
2225 (let ((data (org-trim (org-export-data obj info))))
2226 (string-match
2227 "\\`\\(?:\\\\[([]\\|\\$+\\)?\\(.*?\\)\\(?:\\\\[])]\\|\\$+\\)?\\'"
2228 data)
2229 (setq output
2230 (concat output
2231 (match-string 1 data)
2232 (let ((blank (org-element-property :post-blank obj)))
2233 (and blank (> blank 0) "\\ "))))))
2234 (plain-text
2235 (setq output
2236 (format "%s\\text{%s}" output (org-export-data obj info))))
2237 (otherwise
2238 (setq output
2239 (concat output
2240 (org-export-data obj info)
2241 (let ((blank (org-element-property :post-blank obj)))
2242 (and blank (> blank 0) "\\ ")))))))
2243 info nil org-element-recursive-objects)
2244 ;; Result. Do not wrap into math mode if already in a subscript
2245 ;; or superscript. Do not wrap into curly brackets if OUTPUT is
2246 ;; a single character. Also merge consecutive subscript and
2247 ;; superscript into the same math snippet.
2248 (concat (and (not in-script-p)
2249 (let ((prev (org-export-get-previous-element object info)))
2250 (or (not prev)
2251 (not (eq (org-element-type prev)
2252 (if (eq type 'subscript) 'superscript
2253 'subscript)))
2254 (let ((blank (org-element-property :post-blank prev)))
2255 (and blank (> blank 0)))))
2256 "$")
2257 (if (eq (org-element-type object) 'subscript) "_" "^")
2258 (and (> (length output) 1) "{")
2259 output
2260 (and (> (length output) 1) "}")
2261 (and (not in-script-p)
2262 (or (let ((blank (org-element-property :post-blank object)))
2263 (and blank (> blank 0)))
2264 (not (eq (org-element-type
2265 (org-export-get-next-element object info))
2266 (if (eq type 'subscript) 'superscript
2267 'subscript))))
2268 "$"))))
2270 (defun org-latex-subscript (subscript contents info)
2271 "Transcode a SUBSCRIPT object from Org to LaTeX.
2272 CONTENTS is the contents of the object. INFO is a plist holding
2273 contextual information."
2274 (org-latex--script-size subscript info))
2277 ;;;; Superscript
2279 (defun org-latex-superscript (superscript contents info)
2280 "Transcode a SUPERSCRIPT object from Org to LaTeX.
2281 CONTENTS is the contents of the object. INFO is a plist holding
2282 contextual information."
2283 (org-latex--script-size superscript info))
2286 ;;;; Table
2288 ;; `org-latex-table' is the entry point for table transcoding. It
2289 ;; takes care of tables with a "verbatim" mode. Otherwise, it
2290 ;; delegates the job to either `org-latex--table.el-table',
2291 ;; `org-latex--org-table' or `org-latex--math-table' functions,
2292 ;; depending of the type of the table and the mode requested.
2294 ;; `org-latex--align-string' is a subroutine used to build alignment
2295 ;; string for Org tables.
2297 (defun org-latex-table (table contents info)
2298 "Transcode a TABLE element from Org to LaTeX.
2299 CONTENTS is the contents of the table. INFO is a plist holding
2300 contextual information."
2301 (if (eq (org-element-property :type table) 'table.el)
2302 ;; "table.el" table. Convert it using appropriate tools.
2303 (org-latex--table.el-table table info)
2304 (let ((type (or (org-export-read-attribute :attr_latex table :mode)
2305 org-latex-default-table-mode)))
2306 (cond
2307 ;; Case 1: Verbatim table.
2308 ((string= type "verbatim")
2309 (format "\\begin{verbatim}\n%s\n\\end{verbatim}"
2310 ;; Re-create table, without affiliated keywords.
2311 (org-trim (org-element-interpret-data
2312 `(table nil ,@(org-element-contents table))))))
2313 ;; Case 2: Matrix.
2314 ((or (string= type "math") (string= type "inline-math"))
2315 (org-latex--math-table table info))
2316 ;; Case 3: Standard table.
2317 (t (concat (org-latex--org-table table contents info)
2318 ;; When there are footnote references within the
2319 ;; table, insert their definition just after it.
2320 (org-latex--delayed-footnotes-definitions table info)))))))
2322 (defun org-latex--align-string (table info)
2323 "Return an appropriate LaTeX alignment string.
2324 TABLE is the considered table. INFO is a plist used as
2325 a communication channel."
2326 (or (org-export-read-attribute :attr_latex table :align)
2327 (let (align)
2328 ;; Extract column groups and alignment from first (non-rule)
2329 ;; row.
2330 (org-element-map
2331 (org-element-map table 'table-row
2332 (lambda (row)
2333 (and (eq (org-element-property :type row) 'standard) row))
2334 info 'first-match)
2335 'table-cell
2336 (lambda (cell)
2337 (let ((borders (org-export-table-cell-borders cell info)))
2338 ;; Check left border for the first cell only.
2339 (when (and (memq 'left borders) (not align))
2340 (push "|" align))
2341 (push (case (org-export-table-cell-alignment cell info)
2342 (left "l")
2343 (right "r")
2344 (center "c"))
2345 align)
2346 (when (memq 'right borders) (push "|" align))))
2347 info)
2348 (apply 'concat (nreverse align)))))
2350 (defun org-latex--org-table (table contents info)
2351 "Return appropriate LaTeX code for an Org table.
2353 TABLE is the table type element to transcode. CONTENTS is its
2354 contents, as a string. INFO is a plist used as a communication
2355 channel.
2357 This function assumes TABLE has `org' as its `:type' property and
2358 `table' as its `:mode' attribute."
2359 (let* ((caption (org-latex--caption/label-string table info))
2360 (attr (org-export-read-attribute :attr_latex table))
2361 ;; Determine alignment string.
2362 (alignment (org-latex--align-string table info))
2363 ;; Determine environment for the table: longtable, tabular...
2364 (table-env (or (plist-get attr :environment)
2365 org-latex-default-table-environment))
2366 ;; If table is a float, determine environment: table, table*
2367 ;; or sidewaystable.
2368 (float-env (unless (member table-env '("longtable" "longtabu"))
2369 (let ((float (plist-get attr :float)))
2370 (cond
2371 ((string= float "sidewaystable") "sidewaystable")
2372 ((string= float "multicolumn") "table*")
2373 ((or (string= float "table")
2374 (org-element-property :caption table))
2375 "table")))))
2376 ;; Extract others display options.
2377 (fontsize (let ((font (plist-get attr :font)))
2378 (and font (concat font "\n"))))
2379 (width (plist-get attr :width))
2380 (spreadp (plist-get attr :spread))
2381 (placement (or (plist-get attr :placement)
2382 (format "[%s]" org-latex-default-figure-position)))
2383 (centerp (if (plist-member attr :center) (plist-get attr :center)
2384 org-latex-tables-centered)))
2385 ;; Prepare the final format string for the table.
2386 (cond
2387 ;; Longtable.
2388 ((equal "longtable" table-env)
2389 (concat (and fontsize (concat "{" fontsize))
2390 (format "\\begin{longtable}{%s}\n" alignment)
2391 (and org-latex-table-caption-above
2392 (org-string-nw-p caption)
2393 (concat caption "\\\\\n"))
2394 contents
2395 (and (not org-latex-table-caption-above)
2396 (org-string-nw-p caption)
2397 (concat caption "\\\\\n"))
2398 "\\end{longtable}\n"
2399 (and fontsize "}")))
2400 ;; Longtabu
2401 ((equal "longtabu" table-env)
2402 (concat (and fontsize (concat "{" fontsize))
2403 (format "\\begin{longtabu}%s{%s}\n"
2404 (if width
2405 (format " %s %s "
2406 (if spreadp "spread" "to") width) "")
2407 alignment)
2408 (and org-latex-table-caption-above
2409 (org-string-nw-p caption)
2410 (concat caption "\\\\\n"))
2411 contents
2412 (and (not org-latex-table-caption-above)
2413 (org-string-nw-p caption)
2414 (concat caption "\\\\\n"))
2415 "\\end{longtabu}\n"
2416 (and fontsize "}")))
2417 ;; Others.
2418 (t (concat (cond
2419 (float-env
2420 (concat (format "\\begin{%s}%s\n" float-env placement)
2421 (if org-latex-table-caption-above caption "")
2422 (when centerp "\\centering\n")
2423 fontsize))
2424 (centerp (concat "\\begin{center}\n" fontsize))
2425 (fontsize (concat "{" fontsize)))
2426 (cond ((equal "tabu" table-env)
2427 (format "\\begin{tabu}%s{%s}\n%s\\end{tabu}"
2428 (if width (format
2429 (if spreadp " spread %s " " to %s ")
2430 width) "")
2431 alignment
2432 contents))
2433 (t (format "\\begin{%s}%s{%s}\n%s\\end{%s}"
2434 table-env
2435 (if width (format "{%s}" width) "")
2436 alignment
2437 contents
2438 table-env)))
2439 (cond
2440 (float-env
2441 (concat (if org-latex-table-caption-above "" caption)
2442 (format "\n\\end{%s}" float-env)))
2443 (centerp "\n\\end{center}")
2444 (fontsize "}")))))))
2446 (defun org-latex--table.el-table (table info)
2447 "Return appropriate LaTeX code for a table.el table.
2449 TABLE is the table type element to transcode. INFO is a plist
2450 used as a communication channel.
2452 This function assumes TABLE has `table.el' as its `:type'
2453 property."
2454 (require 'table)
2455 ;; Ensure "*org-export-table*" buffer is empty.
2456 (with-current-buffer (get-buffer-create "*org-export-table*")
2457 (erase-buffer))
2458 (let ((output (with-temp-buffer
2459 (insert (org-element-property :value table))
2460 (goto-char 1)
2461 (re-search-forward "^[ \t]*|[^|]" nil t)
2462 (table-generate-source 'latex "*org-export-table*")
2463 (with-current-buffer "*org-export-table*"
2464 (org-trim (buffer-string))))))
2465 (kill-buffer (get-buffer "*org-export-table*"))
2466 ;; Remove left out comments.
2467 (while (string-match "^%.*\n" output)
2468 (setq output (replace-match "" t t output)))
2469 (let ((attr (org-export-read-attribute :attr_latex table)))
2470 (when (plist-get attr :rmlines)
2471 ;; When the "rmlines" attribute is provided, remove all hlines
2472 ;; but the the one separating heading from the table body.
2473 (let ((n 0) (pos 0))
2474 (while (and (< (length output) pos)
2475 (setq pos (string-match "^\\\\hline\n?" output pos)))
2476 (incf n)
2477 (unless (= n 2) (setq output (replace-match "" nil nil output))))))
2478 (let ((centerp (if (plist-member attr :center) (plist-get attr :center)
2479 org-latex-tables-centered)))
2480 (if (not centerp) output
2481 (format "\\begin{center}\n%s\n\\end{center}" output))))))
2483 (defun org-latex--math-table (table info)
2484 "Return appropriate LaTeX code for a matrix.
2486 TABLE is the table type element to transcode. INFO is a plist
2487 used as a communication channel.
2489 This function assumes TABLE has `org' as its `:type' property and
2490 `inline-math' or `math' as its `:mode' attribute.."
2491 (let* ((caption (org-latex--caption/label-string table info))
2492 (attr (org-export-read-attribute :attr_latex table))
2493 (inlinep (equal (plist-get attr :mode) "inline-math"))
2494 (env (or (plist-get attr :environment)
2495 org-latex-default-table-environment))
2496 (contents
2497 (mapconcat
2498 (lambda (row)
2499 ;; Ignore horizontal rules.
2500 (when (eq (org-element-property :type row) 'standard)
2501 ;; Return each cell unmodified.
2502 (concat
2503 (mapconcat
2504 (lambda (cell)
2505 (substring (org-element-interpret-data cell) 0 -1))
2506 (org-element-map row 'table-cell 'identity info) "&")
2507 (or (cdr (assoc env org-latex-table-matrix-macros)) "\\\\")
2508 "\n")))
2509 (org-element-map table 'table-row 'identity info) ""))
2510 ;; Variables related to math clusters (contiguous math tables
2511 ;; of the same type).
2512 (mode (org-export-read-attribute :attr_latex table :mode))
2513 (prev (org-export-get-previous-element table info))
2514 (next (org-export-get-next-element table info))
2515 (same-mode-p
2516 (lambda (table)
2517 ;; Non-nil when TABLE has the same mode as current table.
2518 (string= (or (org-export-read-attribute :attr_latex table :mode)
2519 org-latex-default-table-mode)
2520 mode))))
2521 (concat
2522 ;; Opening string. If TABLE is in the middle of a table cluster,
2523 ;; do not insert any.
2524 (cond ((and prev
2525 (eq (org-element-type prev) 'table)
2526 (memq (org-element-property :post-blank prev) '(0 nil))
2527 (funcall same-mode-p prev))
2528 nil)
2529 (inlinep "\\(")
2530 ((org-string-nw-p caption) (concat "\\begin{equation}\n" caption))
2531 (t "\\["))
2532 ;; Prefix.
2533 (or (plist-get attr :math-prefix) "")
2534 ;; Environment. Also treat special cases.
2535 (cond ((equal env "array")
2536 (let ((align (org-latex--align-string table info)))
2537 (format "\\begin{array}{%s}\n%s\\end{array}" align contents)))
2538 ((assoc env org-latex-table-matrix-macros)
2539 (format "\\%s%s{\n%s}"
2541 (or (plist-get attr :math-arguments) "")
2542 contents))
2543 (t (format "\\begin{%s}\n%s\\end{%s}" env contents env)))
2544 ;; Suffix.
2545 (or (plist-get attr :math-suffix) "")
2546 ;; Closing string. If TABLE is in the middle of a table cluster,
2547 ;; do not insert any. If it closes such a cluster, be sure to
2548 ;; close the cluster with a string matching the opening string.
2549 (cond ((and next
2550 (eq (org-element-type next) 'table)
2551 (memq (org-element-property :post-blank table) '(0 nil))
2552 (funcall same-mode-p next))
2553 nil)
2554 (inlinep "\\)")
2555 ;; Find cluster beginning to know which environment to use.
2556 ((let ((cluster-beg table) prev)
2557 (while (and (setq prev (org-export-get-previous-element
2558 cluster-beg info))
2559 (memq (org-element-property :post-blank prev)
2560 '(0 nil))
2561 (funcall same-mode-p prev))
2562 (setq cluster-beg prev))
2563 (and (or (org-element-property :caption cluster-beg)
2564 (org-element-property :name cluster-beg))
2565 "\n\\end{equation}")))
2566 (t "\\]")))))
2569 ;;;; Table Cell
2571 (defun org-latex-table-cell (table-cell contents info)
2572 "Transcode a TABLE-CELL element from Org to LaTeX.
2573 CONTENTS is the cell contents. INFO is a plist used as
2574 a communication channel."
2575 (concat (if (and contents
2576 org-latex-table-scientific-notation
2577 (string-match orgtbl-exp-regexp contents))
2578 ;; Use appropriate format string for scientific
2579 ;; notation.
2580 (format org-latex-table-scientific-notation
2581 (match-string 1 contents)
2582 (match-string 2 contents))
2583 contents)
2584 (when (org-export-get-next-element table-cell info) " & ")))
2587 ;;;; Table Row
2589 (defun org-latex-table-row (table-row contents info)
2590 "Transcode a TABLE-ROW element from Org to LaTeX.
2591 CONTENTS is the contents of the row. INFO is a plist used as
2592 a communication channel."
2593 ;; Rules are ignored since table separators are deduced from
2594 ;; borders of the current row.
2595 (when (eq (org-element-property :type table-row) 'standard)
2596 (let* ((attr (org-export-read-attribute :attr_latex
2597 (org-export-get-parent table-row)))
2598 (longtablep (member (or (plist-get attr :environment)
2599 org-latex-default-table-environment)
2600 '("longtable" "longtabu")))
2601 (booktabsp (if (plist-member attr :booktabs)
2602 (plist-get attr :booktabs)
2603 org-latex-tables-booktabs))
2604 ;; TABLE-ROW's borders are extracted from its first cell.
2605 (borders (org-export-table-cell-borders
2606 (car (org-element-contents table-row)) info)))
2607 (concat
2608 ;; When BOOKTABS are activated enforce top-rule even when no
2609 ;; hline was specifically marked.
2610 (cond ((and booktabsp (memq 'top borders)) "\\toprule\n")
2611 ((and (memq 'top borders) (memq 'above borders)) "\\hline\n"))
2612 contents "\\\\\n"
2613 (cond
2614 ;; Special case for long tables. Define header and footers.
2615 ((and longtablep (org-export-table-row-ends-header-p table-row info))
2616 (format "%s
2617 \\endhead
2618 %s\\multicolumn{%d}{r}{Continued on next page} \\\\
2619 \\endfoot
2620 \\endlastfoot"
2621 (if booktabsp "\\midrule" "\\hline")
2622 (if booktabsp "\\midrule" "\\hline")
2623 ;; Number of columns.
2624 (cdr (org-export-table-dimensions
2625 (org-export-get-parent-table table-row) info))))
2626 ;; When BOOKTABS are activated enforce bottom rule even when
2627 ;; no hline was specifically marked.
2628 ((and booktabsp (memq 'bottom borders)) "\\bottomrule")
2629 ((and (memq 'bottom borders) (memq 'below borders)) "\\hline")
2630 ((memq 'below borders) (if booktabsp "\\midrule" "\\hline")))))))
2633 ;;;; Target
2635 (defun org-latex-target (target contents info)
2636 "Transcode a TARGET object from Org to LaTeX.
2637 CONTENTS is nil. INFO is a plist holding contextual
2638 information."
2639 (format "\\label{%s}"
2640 (org-export-solidify-link-text (org-element-property :value target))))
2643 ;;;; Timestamp
2645 (defun org-latex-timestamp (timestamp contents info)
2646 "Transcode a TIMESTAMP object from Org to LaTeX.
2647 CONTENTS is nil. INFO is a plist holding contextual
2648 information."
2649 (let ((value (org-latex-plain-text
2650 (org-timestamp-translate timestamp) info)))
2651 (case (org-element-property :type timestamp)
2652 ((active active-range) (format org-latex-active-timestamp-format value))
2653 ((inactive inactive-range)
2654 (format org-latex-inactive-timestamp-format value))
2655 (otherwise (format org-latex-diary-timestamp-format value)))))
2658 ;;;; Underline
2660 (defun org-latex-underline (underline contents info)
2661 "Transcode UNDERLINE from Org to LaTeX.
2662 CONTENTS is the text with underline markup. INFO is a plist
2663 holding contextual information."
2664 (org-latex--text-markup contents 'underline))
2667 ;;;; Verbatim
2669 (defun org-latex-verbatim (verbatim contents info)
2670 "Transcode a VERBATIM object from Org to LaTeX.
2671 CONTENTS is nil. INFO is a plist used as a communication
2672 channel."
2673 (org-latex--text-markup (org-element-property :value verbatim) 'verbatim))
2676 ;;;; Verse Block
2678 (defun org-latex-verse-block (verse-block contents info)
2679 "Transcode a VERSE-BLOCK element from Org to LaTeX.
2680 CONTENTS is verse block contents. INFO is a plist holding
2681 contextual information."
2682 (org-latex--wrap-label
2683 verse-block
2684 ;; In a verse environment, add a line break to each newline
2685 ;; character and change each white space at beginning of a line
2686 ;; into a space of 1 em. Also change each blank line with
2687 ;; a vertical space of 1 em.
2688 (progn
2689 (setq contents (replace-regexp-in-string
2690 "^ *\\\\\\\\$" "\\\\vspace*{1em}"
2691 (replace-regexp-in-string
2692 "\\(\\\\\\\\\\)?[ \t]*\n" " \\\\\\\\\n" contents)))
2693 (while (string-match "^[ \t]+" contents)
2694 (let ((new-str (format "\\hspace*{%dem}"
2695 (length (match-string 0 contents)))))
2696 (setq contents (replace-match new-str nil t contents))))
2697 (format "\\begin{verse}\n%s\\end{verse}" contents))))
2701 ;;; End-user functions
2703 ;;;###autoload
2704 (defun org-latex-export-as-latex
2705 (&optional async subtreep visible-only body-only ext-plist)
2706 "Export current buffer as a LaTeX buffer.
2708 If narrowing is active in the current buffer, only export its
2709 narrowed part.
2711 If a region is active, export that region.
2713 A non-nil optional argument ASYNC means the process should happen
2714 asynchronously. The resulting buffer should be accessible
2715 through the `org-export-stack' interface.
2717 When optional argument SUBTREEP is non-nil, export the sub-tree
2718 at point, extracting information from the headline properties
2719 first.
2721 When optional argument VISIBLE-ONLY is non-nil, don't export
2722 contents of hidden elements.
2724 When optional argument BODY-ONLY is non-nil, only write code
2725 between \"\\begin{document}\" and \"\\end{document}\".
2727 EXT-PLIST, when provided, is a property list with external
2728 parameters overriding Org default settings, but still inferior to
2729 file-local settings.
2731 Export is done in a buffer named \"*Org LATEX Export*\", which
2732 will be displayed when `org-export-show-temporary-export-buffer'
2733 is non-nil."
2734 (interactive)
2735 (if async
2736 (org-export-async-start
2737 (lambda (output)
2738 (with-current-buffer (get-buffer-create "*Org LATEX Export*")
2739 (erase-buffer)
2740 (insert output)
2741 (goto-char (point-min))
2742 (LaTeX-mode)
2743 (org-export-add-to-stack (current-buffer) 'latex)))
2744 `(org-export-as 'latex ,subtreep ,visible-only ,body-only
2745 ',ext-plist))
2746 (let ((outbuf
2747 (org-export-to-buffer 'latex "*Org LATEX Export*"
2748 subtreep visible-only body-only ext-plist)))
2749 (with-current-buffer outbuf (LaTeX-mode))
2750 (when org-export-show-temporary-export-buffer
2751 (switch-to-buffer-other-window outbuf)))))
2753 ;;;###autoload
2754 (defun org-latex-convert-region-to-latex ()
2755 "Assume the current region has org-mode syntax, and convert it to LaTeX.
2756 This can be used in any buffer. For example, you can write an
2757 itemized list in org-mode syntax in an LaTeX buffer and use this
2758 command to convert it."
2759 (interactive)
2760 (org-export-replace-region-by 'latex))
2762 ;;;###autoload
2763 (defun org-latex-export-to-latex
2764 (&optional async subtreep visible-only body-only ext-plist)
2765 "Export current buffer to a LaTeX file.
2767 If narrowing is active in the current buffer, only export its
2768 narrowed part.
2770 If a region is active, export that region.
2772 A non-nil optional argument ASYNC means the process should happen
2773 asynchronously. The resulting file should be accessible through
2774 the `org-export-stack' interface.
2776 When optional argument SUBTREEP is non-nil, export the sub-tree
2777 at point, extracting information from the headline properties
2778 first.
2780 When optional argument VISIBLE-ONLY is non-nil, don't export
2781 contents of hidden elements.
2783 When optional argument BODY-ONLY is non-nil, only write code
2784 between \"\\begin{document}\" and \"\\end{document}\".
2786 EXT-PLIST, when provided, is a property list with external
2787 parameters overriding Org default settings, but still inferior to
2788 file-local settings.
2790 Return output file's name."
2791 (interactive)
2792 (let ((outfile (org-export-output-file-name ".tex" subtreep)))
2793 (if async
2794 (org-export-async-start
2795 (lambda (f) (org-export-add-to-stack f 'latex))
2796 `(expand-file-name
2797 (org-export-to-file
2798 'latex ,outfile ,subtreep ,visible-only ,body-only ',ext-plist)))
2799 (org-export-to-file
2800 'latex outfile subtreep visible-only body-only ext-plist))))
2802 ;;;###autoload
2803 (defun org-latex-export-to-pdf
2804 (&optional async subtreep visible-only body-only ext-plist)
2805 "Export current buffer to LaTeX then process through to PDF.
2807 If narrowing is active in the current buffer, only export its
2808 narrowed part.
2810 If a region is active, export that region.
2812 A non-nil optional argument ASYNC means the process should happen
2813 asynchronously. The resulting file should be accessible through
2814 the `org-export-stack' interface.
2816 When optional argument SUBTREEP is non-nil, export the sub-tree
2817 at point, extracting information from the headline properties
2818 first.
2820 When optional argument VISIBLE-ONLY is non-nil, don't export
2821 contents of hidden elements.
2823 When optional argument BODY-ONLY is non-nil, only write code
2824 between \"\\begin{document}\" and \"\\end{document}\".
2826 EXT-PLIST, when provided, is a property list with external
2827 parameters overriding Org default settings, but still inferior to
2828 file-local settings.
2830 Return PDF file's name."
2831 (interactive)
2832 (if async
2833 (let ((outfile (org-export-output-file-name ".tex" subtreep)))
2834 (org-export-async-start
2835 (lambda (f) (org-export-add-to-stack f 'latex))
2836 `(expand-file-name
2837 (org-latex-compile
2838 (org-export-to-file
2839 'latex ,outfile ,subtreep ,visible-only ,body-only
2840 ',ext-plist)))))
2841 (org-latex-compile
2842 (org-latex-export-to-latex
2843 nil subtreep visible-only body-only ext-plist))))
2845 (defun org-latex-compile (texfile &optional snippet)
2846 "Compile a TeX file.
2848 TEXFILE is the name of the file being compiled. Processing is
2849 done through the command specified in `org-latex-pdf-process'.
2851 When optional argument SNIPPET is non-nil, TEXFILE is a temporary
2852 file used to preview a LaTeX snippet. In this case, do not
2853 create a log buffer and do not bother removing log files.
2855 Return PDF file name or an error if it couldn't be produced."
2856 (let* ((base-name (file-name-sans-extension (file-name-nondirectory texfile)))
2857 (full-name (file-truename texfile))
2858 (out-dir (file-name-directory texfile))
2859 ;; Make sure `default-directory' is set to TEXFILE directory,
2860 ;; not to whatever value the current buffer may have.
2861 (default-directory (file-name-directory full-name))
2862 errors)
2863 (unless snippet (message (format "Processing LaTeX file %s..." texfile)))
2864 (save-window-excursion
2865 (cond
2866 ;; A function is provided: Apply it.
2867 ((functionp org-latex-pdf-process)
2868 (funcall org-latex-pdf-process (shell-quote-argument texfile)))
2869 ;; A list is provided: Replace %b, %f and %o with appropriate
2870 ;; values in each command before applying it. Output is
2871 ;; redirected to "*Org PDF LaTeX Output*" buffer.
2872 ((consp org-latex-pdf-process)
2873 (let ((outbuf (and (not snippet)
2874 (get-buffer-create "*Org PDF LaTeX Output*"))))
2875 (mapc
2876 (lambda (command)
2877 (shell-command
2878 (replace-regexp-in-string
2879 "%b" (shell-quote-argument base-name)
2880 (replace-regexp-in-string
2881 "%f" (shell-quote-argument full-name)
2882 (replace-regexp-in-string
2883 "%o" (shell-quote-argument out-dir) command t t) t t) t t)
2884 outbuf))
2885 org-latex-pdf-process)
2886 ;; Collect standard errors from output buffer.
2887 (setq errors (and (not snippet) (org-latex--collect-errors outbuf)))))
2888 (t (error "No valid command to process to PDF")))
2889 (let ((pdffile (concat out-dir base-name ".pdf")))
2890 ;; Check for process failure. Provide collected errors if
2891 ;; possible.
2892 (if (not (file-exists-p pdffile))
2893 (error (concat (format "PDF file %s wasn't produced" pdffile)
2894 (when errors (concat ": " errors))))
2895 ;; Else remove log files, when specified, and signal end of
2896 ;; process to user, along with any error encountered.
2897 (when (and (not snippet) org-latex-remove-logfiles)
2898 (dolist (ext org-latex-logfiles-extensions)
2899 (let ((file (concat out-dir base-name "." ext)))
2900 (when (file-exists-p file) (delete-file file)))))
2901 (message (concat "Process completed"
2902 (if (not errors) "."
2903 (concat " with errors: " errors)))))
2904 ;; Return output file name.
2905 pdffile))))
2907 (defun org-latex--collect-errors (buffer)
2908 "Collect some kind of errors from \"pdflatex\" command output.
2910 BUFFER is the buffer containing output.
2912 Return collected error types as a string, or nil if there was
2913 none."
2914 (with-current-buffer buffer
2915 (save-excursion
2916 (goto-char (point-max))
2917 (when (re-search-backward "^[ \t]*This is .*?TeX.*?Version" nil t)
2918 (let ((case-fold-search t)
2919 (errors ""))
2920 (dolist (latex-error org-latex-known-errors)
2921 (when (save-excursion (re-search-forward (car latex-error) nil t))
2922 (setq errors (concat errors " " (cdr latex-error)))))
2923 (and (org-string-nw-p errors) (org-trim errors)))))))
2925 ;;;###autoload
2926 (defun org-latex-publish-to-latex (plist filename pub-dir)
2927 "Publish an Org file to LaTeX.
2929 FILENAME is the filename of the Org file to be published. PLIST
2930 is the property list for the given project. PUB-DIR is the
2931 publishing directory.
2933 Return output file name."
2934 (org-publish-org-to 'latex filename ".tex" plist pub-dir))
2936 ;;;###autoload
2937 (defun org-latex-publish-to-pdf (plist filename pub-dir)
2938 "Publish an Org file to PDF (via LaTeX).
2940 FILENAME is the filename of the Org file to be published. PLIST
2941 is the property list for the given project. PUB-DIR is the
2942 publishing directory.
2944 Return output file name."
2945 ;; Unlike to `org-latex-publish-to-latex', PDF file is generated
2946 ;; in working directory and then moved to publishing directory.
2947 (org-publish-attachment
2948 plist
2949 (org-latex-compile (org-publish-org-to 'latex filename ".tex" plist))
2950 pub-dir))
2953 (provide 'ox-latex)
2955 ;; Local variables:
2956 ;; generated-autoload-file: "org-loaddefs.el"
2957 ;; End:
2959 ;;; ox-latex.el ends here