org-export: Fix some small bugs, include tests
[org-mode.git] / EXPERIMENTAL / org-e-latex.el
blob35561cfb59765f4e931bd78370f792479c35806a
1 ;;; org-e-latex.el --- LaTeX Back-End For Org Export Engine
3 ;; Copyright (C) 2011-2012 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This program 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 ;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
21 ;;; Commentary:
23 ;; This library implements a LaTeX back-end for Org generic exporter.
25 ;; To test it, run
27 ;; M-: (org-export-to-buffer 'e-latex "*Test e-LaTeX*") RET
29 ;; in an org-mode buffer then switch to the buffer to see the LaTeX
30 ;; export. See contrib/lisp/org-export.el for more details on how
31 ;; this exporter works.
33 ;; It introduces three new buffer keywords: "LATEX_CLASS",
34 ;; "LATEX_CLASS_OPTIONS" and "LATEX_HEADER".
36 ;;; Code:
38 (eval-when-compile (require 'cl))
40 (defvar org-export-latex-default-packages-alist)
41 (defvar org-export-latex-packages-alist)
43 (declare-function org-element-property "org-element" (property element))
44 (declare-function org-element-normalize-string "org-element" (s))
45 (declare-function org-element-parse-secondary-string
46 "org-element" (string restriction &optional buffer))
47 (defvar org-element-string-restrictions)
48 (defvar org-element-object-restrictions)
50 (declare-function org-export-clean-table "org-export" (table specialp))
51 (declare-function org-export-data "org-export" (data backend info))
52 (declare-function org-export-directory "org-export" (type plist))
53 (declare-function org-export-expand-macro "org-export" (macro info))
54 (declare-function org-export-first-sibling-p "org-export" (headline info))
55 (declare-function org-export-footnote-first-reference-p "org-export"
56 (footnote-reference info))
57 (declare-function org-export-get-coderef-format "org-export" (path desc))
58 (declare-function org-export-get-footnote-definition "org-export"
59 (footnote-reference info))
60 (declare-function org-export-get-footnote-number "org-export" (footnote info))
61 (declare-function org-export-get-previous-element "org-export" (blob info))
62 (declare-function org-export-get-relative-level "org-export" (headline info))
63 (declare-function org-export-handle-code
64 "org-export" (element info &optional num-fmt ref-fmt delayed))
65 (declare-function org-export-included-file "org-export" (keyword backend info))
66 (declare-function org-export-inline-image-p "org-export"
67 (link &optional extensions))
68 (declare-function org-export-last-sibling-p "org-export" (headline info))
69 (declare-function org-export-low-level-p "org-export" (headline info))
70 (declare-function org-export-output-file-name
71 "org-export" (extension &optional subtreep pub-dir))
72 (declare-function org-export-resolve-coderef "org-export" (ref info))
73 (declare-function org-export-resolve-fuzzy-link "org-export" (link info))
74 (declare-function org-export-secondary-string "org-export"
75 (secondary backend info))
76 (declare-function org-export-solidify-link-text "org-export" (s))
77 (declare-function org-export-table-format-info "org-export" (table))
78 (declare-function
79 org-export-to-buffer "org-export"
80 (backend buffer &optional subtreep visible-only body-only ext-plist))
81 (declare-function
82 org-export-to-file "org-export"
83 (backend file &optional subtreep visible-only body-only ext-plist))
87 ;;; Internal Variables
89 (defconst org-e-latex-option-alist
90 '((:date "DATE" nil org-e-latex-date-format t)
91 (:latex-class "LATEX_CLASS" nil org-e-latex-default-class t)
92 (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
93 (:latex-header-extra "LATEX_HEADER" nil nil newline))
94 "Alist between LaTeX export properties and ways to set them.
95 See `org-export-option-alist' for more information on the
96 structure of the value.")
100 ;;; User Configurable Variables
102 (defgroup org-export-e-latex nil
103 "Options for exporting Org mode files to LaTeX."
104 :tag "Org Export LaTeX"
105 :group 'org-export)
108 ;;;; Preamble
110 (defcustom org-e-latex-default-class "article"
111 "The default LaTeX class."
112 :group 'org-export-e-latex
113 :type '(string :tag "LaTeX class"))
115 (defcustom org-e-latex-classes
116 '(("article"
117 "\\documentclass[11pt]{article}"
118 ("\\section{%s}" . "\\section*{%s}")
119 ("\\subsection{%s}" . "\\subsection*{%s}")
120 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
121 ("\\paragraph{%s}" . "\\paragraph*{%s}")
122 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
123 ("report"
124 "\\documentclass[11pt]{report}"
125 ("\\part{%s}" . "\\part*{%s}")
126 ("\\chapter{%s}" . "\\chapter*{%s}")
127 ("\\section{%s}" . "\\section*{%s}")
128 ("\\subsection{%s}" . "\\subsection*{%s}")
129 ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
130 ("book"
131 "\\documentclass[11pt]{book}"
132 ("\\part{%s}" . "\\part*{%s}")
133 ("\\chapter{%s}" . "\\chapter*{%s}")
134 ("\\section{%s}" . "\\section*{%s}")
135 ("\\subsection{%s}" . "\\subsection*{%s}")
136 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
137 "Alist of LaTeX classes and associated header and structure.
138 If #+LaTeX_CLASS is set in the buffer, use its value and the
139 associated information. Here is the structure of each cell:
141 \(class-name
142 header-string
143 \(numbered-section . unnumbered-section\)
144 ...\)
146 The header string
147 -----------------
149 The HEADER-STRING is the header that will be inserted into the
150 LaTeX file. It should contain the \\documentclass macro, and
151 anything else that is needed for this setup. To this header, the
152 following commands will be added:
154 - Calls to \\usepackage for all packages mentioned in the
155 variables `org-export-latex-default-packages-alist' and
156 `org-export-latex-packages-alist'. Thus, your header
157 definitions should avoid to also request these packages.
159 - Lines specified via \"#+LaTeX_HEADER:\"
161 If you need more control about the sequence in which the header
162 is built up, or if you want to exclude one of these building
163 blocks for a particular class, you can use the following
164 macro-like placeholders.
166 [DEFAULT-PACKAGES] \\usepackage statements for default packages
167 [NO-DEFAULT-PACKAGES] do not include any of the default packages
168 [PACKAGES] \\usepackage statements for packages
169 [NO-PACKAGES] do not include the packages
170 [EXTRA] the stuff from #+LaTeX_HEADER
171 [NO-EXTRA] do not include #+LaTeX_HEADER stuff
172 [BEAMER-HEADER-EXTRA] the beamer extra headers
174 So a header like
176 \\documentclass{article}
177 [NO-DEFAULT-PACKAGES]
178 [EXTRA]
179 \\providecommand{\\alert}[1]{\\textbf{#1}}
180 [PACKAGES]
182 will omit the default packages, and will include the
183 #+LaTeX_HEADER lines, then have a call to \\providecommand, and
184 then place \\usepackage commands based on the content of
185 `org-export-latex-packages-alist'.
187 If your header, `org-export-latex-default-packages-alist' or
188 `org-export-latex-packages-alist' inserts
189 \"\\usepackage[AUTO]{inputenc}\", AUTO will automatically be
190 replaced with a coding system derived from
191 `buffer-file-coding-system'. See also the variable
192 `org-e-latex-inputenc-alist' for a way to influence this
193 mechanism.
195 The sectioning structure
196 ------------------------
198 The sectioning structure of the class is given by the elements
199 following the header string. For each sectioning level, a number
200 of strings is specified. A %s formatter is mandatory in each
201 section string and will be replaced by the title of the section.
203 Instead of a cons cell \(numbered . unnumbered\), you can also
204 provide a list of 2 or 4 elements,
206 \(numbered-open numbered-close\)
210 \(numbered-open numbered-close unnumbered-open unnumbered-close\)
212 providing opening and closing strings for a LaTeX environment
213 that should represent the document section. The opening clause
214 should have a %s to represent the section title.
216 Instead of a list of sectioning commands, you can also specify
217 a function name. That function will be called with two
218 parameters, the \(reduced) level of the headline, and a predicate
219 non-nil when the headline should be numbered. It must return
220 a format string in which the section title will be added."
221 :group 'org-export-e-latex
222 :type '(repeat
223 (list (string :tag "LaTeX class")
224 (string :tag "LaTeX header")
225 (repeat :tag "Levels" :inline t
226 (choice
227 (cons :tag "Heading"
228 (string :tag " numbered")
229 (string :tag "unnumbered"))
230 (list :tag "Environment"
231 (string :tag "Opening (numbered)")
232 (string :tag "Closing (numbered)")
233 (string :tag "Opening (unnumbered)")
234 (string :tag "Closing (unnumbered)"))
235 (function :tag "Hook computing sectioning"))))))
237 (defcustom org-e-latex-inputenc-alist nil
238 "Alist of inputenc coding system names, and what should really be used.
239 For example, adding an entry
241 (\"utf8\" . \"utf8x\")
243 will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
244 are written as utf8 files."
245 :group 'org-export-e-latex
246 :type '(repeat
247 (cons
248 (string :tag "Derived from buffer")
249 (string :tag "Use this instead"))))
251 (defcustom org-e-latex-date-format
252 "\\today"
253 "Format string for \\date{...}."
254 :group 'org-export-e-latex
255 :type 'boolean)
257 (defcustom org-e-latex-title-command "\\maketitle"
258 "The command used to insert the title just after \\begin{document}.
259 If this string contains the formatting specification \"%s\" then
260 it will be used as a formatting string, passing the title as an
261 argument."
262 :group 'org-export-e-latex
263 :type 'string)
266 ;;;; Headline
268 (defcustom org-e-latex-format-headline-function nil
269 "Function to format headline text.
271 This function will be called with 5 arguments:
272 TODO the todo keyword \(string or nil\).
273 TODO-TYPE the type of todo \(symbol: `todo', `done', nil\)
274 PRIORITY the priority of the headline \(integer or nil\)
275 TEXT the main headline text \(string\).
276 TAGS the tags string, separated with colons \(string or nil\).
278 The function result will be used in the section format string.
280 As an example, one could set the variable to the following, in
281 order to reproduce the default set-up:
283 \(defun org-e-latex-format-headline \(todo todo-type priority text tags\)
284 \"Default format function for an headline.\"
285 \(concat \(when todo
286 \(format \"\\\\textbf{\\\\textsc{\\\\textsf{%s}}} \" todo\)\)
287 \(when priority
288 \(format \"\\\\framebox{\\\\#%c} \" priority\)\)
289 text
290 \(when tags \(format \"\\\\hfill{}\\\\textsc{%s}\" tags\)\)\)\)"
291 :group 'org-export-e-latex
292 :type 'function)
295 ;;;; Emphasis
297 (defcustom org-e-latex-emphasis-alist
298 '(("*" . "\\textbf{%s}")
299 ("/" . "\\emph{%s}")
300 ("_" . "\\underline{%s}")
301 ("+" . "\\st{%s}")
302 ("=" . protectedtexttt)
303 ("~" . verb))
304 "Alist of LaTeX expressions to convert emphasis fontifiers.
306 The key is the character used as a marker for fontification. The
307 value is a formatting string to wrap fontified text with.
309 Value can also be set to the following symbols: `verb' and
310 `protectedtexttt'. For the former, Org will use \"\\verb\" to
311 create a format string and select a delimiter character that
312 isn't in the string. For the latter, Org will use \"\\texttt\"
313 to typeset and try to protect special characters."
314 :group 'org-export-e-latex
315 :type 'alist)
318 ;;;; Footnotes
320 (defcustom org-e-latex-footnote-separator "\\textsuperscript{,}\\,"
321 "Text used to separate footnotes."
322 :group 'org-export-e-latex
323 :type 'string)
326 ;;;; Time-stamps
328 (defcustom org-e-latex-active-timestamp-format "\\textit{%s}"
329 "A printf format string to be applied to active time-stamps."
330 :group 'org-export-e-latex
331 :type 'string)
333 (defcustom org-e-latex-inactive-timestamp-format "\\textit{%s}"
334 "A printf format string to be applied to inactive time-stamps."
335 :group 'org-export-e-latex
336 :type 'string)
338 (defcustom org-e-latex-diary-timestamp-format "\\textit{%s}"
339 "A printf format string to be applied to diary time-stamps."
340 :group 'org-export-e-latex
341 :type 'string)
344 ;;;; Links
346 (defcustom org-e-latex-image-default-option "width=.9\\linewidth"
347 "Default option for images."
348 :group 'org-export-e-latex
349 :type 'string)
351 (defcustom org-e-latex-default-figure-position "htb"
352 "Default position for latex figures."
353 :group 'org-export-e-latex
354 :type 'string)
356 (defcustom org-e-latex-inline-image-rules
357 '(("file" . "\\.\\(pdf\\|jpeg\\|jpg\\|png\\|ps\\|eps\\)\\'"))
358 "Rules characterizing image files that can be inlined into LaTeX.
360 A rule consists in an association whose key is the type of link
361 to consider, and value is a regexp that will be matched against
362 link's path.
364 Note that, by default, the image extension *actually* allowed
365 depend on the way the LaTeX file is processed. When used with
366 pdflatex, pdf, jpg and png images are OK. When processing
367 through dvi to Postscript, only ps and eps are allowed. The
368 default we use here encompasses both."
369 :group 'org-export-e-latex
370 :type '(alist :key-type (string :tag "Type")
371 :value-type (regexp :tag "Path")))
374 ;;;; Tables
376 (defcustom org-e-latex-default-table-environment "tabular"
377 "Default environment used to build tables."
378 :group 'org-export-e-latex
379 :type 'string)
381 (defcustom org-e-latex-tables-centered t
382 "When non-nil, tables are exported in a center environment."
383 :group 'org-export-e-latex
384 :type 'boolean)
386 (defcustom org-e-latex-tables-verbatim nil
387 "When non-nil, tables are exported verbatim."
388 :group 'org-export-e-latex
389 :type 'boolean)
391 (defcustom org-e-latex-tables-booktabs nil
392 "When non-nil, display tables in a formal \"booktabs\" style.
393 This option assumes that the \"booktabs\" package is properly
394 loaded in the header of the document. This value can be ignored
395 locally with \"booktabs=yes\" and \"booktabs=no\" LaTeX
396 attributes."
397 :group 'org-export-e-latex
398 :type 'boolean)
400 (defcustom org-e-latex-table-caption-above t
401 "When non-nil, place caption string at the beginning of the table.
402 Otherwise, place it near the end."
403 :group 'org-export-e-latex
404 :type 'boolean)
407 ;;;; Drawers
409 (defcustom org-e-latex-format-drawer-function nil
410 "Function called to format a drawer in LaTeX code.
412 The function must accept two parameters:
413 NAME the drawer name, like \"LOGBOOK\"
414 CONTENTS the contents of the drawer.
416 The function should return the string to be exported.
418 For example, the variable could be set to the following function
419 in order to mimic default behaviour:
421 \(defun org-e-latex-format-drawer-default \(name contents\)
422 \"Format a drawer element for LaTeX export.\"
423 contents\)"
424 :group 'org-export-e-latex
425 :type 'function)
428 ;;;; Inlinetasks
430 (defcustom org-e-latex-format-inlinetask-function nil
431 "Function called to format an inlinetask in LaTeX code.
433 The function must accept six parameters:
434 TODO the todo keyword, as a string
435 TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
436 PRIORITY the inlinetask priority, as a string
437 NAME the inlinetask name, as a string.
438 TAGS the inlinetask tags, as a string.
439 CONTENTS the contents of the inlinetask, as a string.
441 The function should return the string to be exported.
443 For example, the variable could be set to the following function
444 in order to mimic default behaviour:
446 \(defun org-e-latex-format-inlinetask \(todo type priority name tags contents\)
447 \"Format an inline task element for LaTeX export.\"
448 \(let \(\(full-title
449 \(concat
450 \(when todo
451 \(format \"\\\\textbf{\\\\textsf{\\\\textsc{%s}}} \" todo\)\)
452 \(when priority \(format \"\\\\framebox{\\\\#%c} \" priority\)\)
453 title
454 \(when tags \(format \"\\\\hfill{}\\\\textsc{%s}\" tags\)\)\)\)\)
455 \(format \(concat \"\\\\begin{center}\\n\"
456 \"\\\\fbox{\\n\"
457 \"\\\\begin{minipage}[c]{.6\\\\textwidth}\\n\"
458 \"%s\\n\\n\"
459 \"\\\\rule[.8em]{\\\\textwidth}{2pt}\\n\\n\"
460 \"%s\"
461 \"\\\\end{minipage}}\"
462 \"\\\\end{center}\"\)
463 full-title contents\)\)"
464 :group 'org-export-e-latex
465 :type 'function)
468 ;; Src blocks
470 (defcustom org-e-latex-listings nil
471 "Non-nil means export source code using the listings package.
472 This package will fontify source code, possibly even with color.
473 If you want to use this, you also need to make LaTeX use the
474 listings package, and if you want to have color, the color
475 package. Just add these to `org-export-latex-packages-alist',
476 for example using customize, or with something like:
478 \(require 'org-e-latex)
479 \(add-to-list 'org-export-latex-packages-alist '\(\"\" \"listings\"))
480 \(add-to-list 'org-export-latex-packages-alist '\(\"\" \"color\"))
482 Alternatively,
484 \(setq org-e-latex-listings 'minted)
486 causes source code to be exported using the minted package as
487 opposed to listings. If you want to use minted, you need to add
488 the minted package to `org-export-latex-packages-alist', for
489 example using customize, or with
491 \(require 'org-e-latex)
492 \(add-to-list 'org-export-latex-packages-alist '\(\"\" \"minted\"))
494 In addition, it is necessary to install pygments
495 \(http://pygments.org), and to configure the variable
496 `org-e-latex-pdf-process' so that the -shell-escape option is
497 passed to pdflatex."
498 :group 'org-export-e-latex
499 :type '(choice
500 (const :tag "Use listings" t)
501 (const :tag "Use minted" 'minted)
502 (const :tag "Export verbatim" nil)))
504 (defcustom org-e-latex-listings-langs
505 '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
506 (c "C") (cc "C++")
507 (fortran "fortran")
508 (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
509 (html "HTML") (xml "XML")
510 (tex "TeX") (latex "TeX")
511 (shell-script "bash")
512 (gnuplot "Gnuplot")
513 (ocaml "Caml") (caml "Caml")
514 (sql "SQL") (sqlite "sql"))
515 "Alist mapping languages to their listing language counterpart.
516 The key is a symbol, the major mode symbol without the \"-mode\".
517 The value is the string that should be inserted as the language
518 parameter for the listings package. If the mode name and the
519 listings name are the same, the language does not need an entry
520 in this list - but it does not hurt if it is present."
521 :group 'org-export-e-latex
522 :type '(repeat
523 (list
524 (symbol :tag "Major mode ")
525 (string :tag "Listings language"))))
527 (defcustom org-e-latex-listings-options nil
528 "Association list of options for the latex listings package.
530 These options are supplied as a comma-separated list to the
531 \\lstset command. Each element of the association list should be
532 a list containing two strings: the name of the option, and the
533 value. For example,
535 (setq org-e-latex-listings-options
536 '((\"basicstyle\" \"\\small\")
537 (\"keywordstyle\" \"\\color{black}\\bfseries\\underbar\")))
539 will typeset the code in a small size font with underlined, bold
540 black keywords.
542 Note that the same options will be applied to blocks of all
543 languages."
544 :group 'org-export-e-latex
545 :type '(repeat
546 (list
547 (string :tag "Listings option name ")
548 (string :tag "Listings option value"))))
550 (defcustom org-e-latex-minted-langs
551 '((emacs-lisp "common-lisp")
552 (cc "c++")
553 (cperl "perl")
554 (shell-script "bash")
555 (caml "ocaml"))
556 "Alist mapping languages to their minted language counterpart.
557 The key is a symbol, the major mode symbol without the \"-mode\".
558 The value is the string that should be inserted as the language
559 parameter for the minted package. If the mode name and the
560 listings name are the same, the language does not need an entry
561 in this list - but it does not hurt if it is present.
563 Note that minted uses all lower case for language identifiers,
564 and that the full list of language identifiers can be obtained
565 with:
567 pygmentize -L lexers"
568 :group 'org-export-e-latex
569 :type '(repeat
570 (list
571 (symbol :tag "Major mode ")
572 (string :tag "Minted language"))))
574 (defcustom org-e-latex-minted-options nil
575 "Association list of options for the latex minted package.
577 These options are supplied within square brackets in
578 \\begin{minted} environments. Each element of the alist should
579 be a list containing two strings: the name of the option, and the
580 value. For example,
582 \(setq org-e-latex-minted-options
583 '\((\"bgcolor\" \"bg\") \(\"frame\" \"lines\")))
585 will result in src blocks being exported with
587 \\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
589 as the start of the minted environment. Note that the same
590 options will be applied to blocks of all languages."
591 :group 'org-export-e-latex
592 :type '(repeat
593 (list
594 (string :tag "Minted option name ")
595 (string :tag "Minted option value"))))
597 (defvar org-e-latex-custom-lang-environments nil
598 "Alist mapping languages to language-specific LaTeX environments.
600 It is used during export of src blocks by the listings and minted
601 latex packages. For example,
603 \(setq org-e-latex-custom-lang-environments
604 '\(\(python \"pythoncode\"\)\)\)
606 would have the effect that if org encounters begin_src python
607 during latex export it will output
609 \\begin{pythoncode}
610 <src block body>
611 \\end{pythoncode}")
614 ;;;; Plain text
616 (defcustom org-e-latex-quotes
617 '(("fr" ("\\(\\s-\\|[[(]\\)\"" . "«~") ("\\(\\S-\\)\"" . "~»") ("\\(\\s-\\|(\\)'" . "'"))
618 ("en" ("\\(\\s-\\|[[(]\\)\"" . "``") ("\\(\\S-\\)\"" . "''") ("\\(\\s-\\|(\\)'" . "`")))
619 "Alist for quotes to use when converting english double-quotes.
621 The CAR of each item in this alist is the language code.
622 The CDR of each item in this alist is a list of three CONS:
623 - the first CONS defines the opening quote;
624 - the second CONS defines the closing quote;
625 - the last CONS defines single quotes.
627 For each item in a CONS, the first string is a regexp
628 for allowed characters before/after the quote, the second
629 string defines the replacement string for this quote."
630 :group 'org-export-e-latex
631 :type '(list
632 (cons :tag "Opening quote"
633 (string :tag "Regexp for char before")
634 (string :tag "Replacement quote "))
635 (cons :tag "Closing quote"
636 (string :tag "Regexp for char after ")
637 (string :tag "Replacement quote "))
638 (cons :tag "Single quote"
639 (string :tag "Regexp for char before")
640 (string :tag "Replacement quote "))))
643 ;;;; Compilation
645 (defcustom org-e-latex-pdf-process
646 '("pdflatex -interaction nonstopmode -output-directory %o %f"
647 "pdflatex -interaction nonstopmode -output-directory %o %f"
648 "pdflatex -interaction nonstopmode -output-directory %o %f")
649 "Commands to process a LaTeX file to a PDF file.
650 This is a list of strings, each of them will be given to the
651 shell as a command. %f in the command will be replaced by the
652 full file name, %b by the file base name \(i.e. without
653 extension) and %o by the base directory of the file.
655 The reason why this is a list is that it usually takes several
656 runs of `pdflatex', maybe mixed with a call to `bibtex'. Org
657 does not have a clever mechanism to detect which of these
658 commands have to be run to get to a stable result, and it also
659 does not do any error checking.
661 By default, Org uses 3 runs of `pdflatex' to do the processing.
662 If you have texi2dvi on your system and if that does not cause
663 the infamous egrep/locale bug:
665 http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
667 then `texi2dvi' is the superior choice. Org does offer it as one
668 of the customize options.
670 Alternatively, this may be a Lisp function that does the
671 processing, so you could use this to apply the machinery of
672 AUCTeX or the Emacs LaTeX mode. This function should accept the
673 file name as its single argument."
674 :group 'org-export-pdf
675 :type '(choice
676 (repeat :tag "Shell command sequence"
677 (string :tag "Shell command"))
678 (const :tag "2 runs of pdflatex"
679 ("pdflatex -interaction nonstopmode -output-directory %o %f"
680 "pdflatex -interaction nonstopmode -output-directory %o %f"))
681 (const :tag "3 runs of pdflatex"
682 ("pdflatex -interaction nonstopmode -output-directory %o %f"
683 "pdflatex -interaction nonstopmode -output-directory %o %f"
684 "pdflatex -interaction nonstopmode -output-directory %o %f"))
685 (const :tag "pdflatex,bibtex,pdflatex,pdflatex"
686 ("pdflatex -interaction nonstopmode -output-directory %o %f"
687 "bibtex %b"
688 "pdflatex -interaction nonstopmode -output-directory %o %f"
689 "pdflatex -interaction nonstopmode -output-directory %o %f"))
690 (const :tag "texi2dvi"
691 ("texi2dvi -p -b -c -V %f"))
692 (const :tag "rubber"
693 ("rubber -d --into %o %f"))
694 (function)))
696 (defcustom org-e-latex-logfiles-extensions
697 '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb")
698 "The list of file extensions to consider as LaTeX logfiles."
699 :group 'org-export-e-latex
700 :type '(repeat (string :tag "Extension")))
702 (defcustom org-e-latex-remove-logfiles t
703 "Non-nil means remove the logfiles produced by PDF production.
704 These are the .aux, .log, .out, and .toc files."
705 :group 'org-export-e-latex
706 :type 'boolean)
710 ;;; Internal Functions
712 (defun org-e-latex--caption/label-string (caption label info)
713 "Return caption and label LaTeX string for floats.
715 CAPTION is a cons cell of secondary strings, the car being the
716 standard caption and the cdr its short form. LABEL is a string
717 representing the label. INFO is a plist holding contextual
718 information.
720 If there's no caption nor label, return the empty string.
722 For non-floats, see `org-e-latex--wrap-label'."
723 (let ((label-str (if label (format "\\label{%s}" label) "")))
724 (cond
725 ((and (not caption) (not label)) "")
726 ((not caption) (format "\\label{%s}\n" label))
727 ;; Option caption format with short name.
728 ((cdr caption)
729 (format "\\caption[%s]{%s%s}\n"
730 (org-export-secondary-string (cdr caption) 'e-latex info)
731 label-str
732 (org-export-secondary-string (car caption) 'e-latex info)))
733 ;; Standard caption format.
734 (t (format "\\caption{%s%s}\n"
735 label-str
736 (org-export-secondary-string (car caption) 'e-latex info))))))
738 (defun org-e-latex--guess-inputenc (header)
739 "Set the coding system in inputenc to what the buffer is.
741 HEADER is the LaTeX header string.
743 Return the new header."
744 (let* ((cs (or (ignore-errors
745 (latexenc-coding-system-to-inputenc
746 buffer-file-coding-system))
747 "utf8")))
748 (if (not cs) header
749 ;; First translate if that is requested.
750 (setq cs (or (cdr (assoc cs org-e-latex-inputenc-alist)) cs))
751 ;; Then find the \usepackage statement and replace the option.
752 (replace-regexp-in-string "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
753 cs header t nil 1))))
755 (defun org-e-latex--find-verb-separator (s)
756 "Return a character not used in string S.
757 This is used to choose a separator for constructs like \\verb."
758 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
759 (loop for c across ll
760 when (not (string-match (regexp-quote (char-to-string c)) s))
761 return (char-to-string c))))
763 (defun org-e-latex--make-option-string (options)
764 "Return a comma separated string of keywords and values.
765 OPTIONS is an alist where the key is the options keyword as
766 a string, and the value a list containing the keyword value, or
767 nil."
768 (mapconcat (lambda (pair)
769 (concat (first pair)
770 (when (> (length (second pair)) 0)
771 (concat "=" (second pair)))))
772 options
773 ","))
775 (defun org-e-latex--quotation-marks (text info)
776 "Export quotation marks depending on language conventions.
777 TEXT is a string containing quotation marks to be replaced. INFO
778 is a plist used as a communication channel."
779 (mapc (lambda(l)
780 (let ((start 0))
781 (while (setq start (string-match (car l) text start))
782 (let ((new-quote (concat (match-string 1 text) (cdr l))))
783 (setq text (replace-match new-quote t t text))))))
784 (cdr (or (assoc (plist-get info :language) org-e-latex-quotes)
785 ;; Falls back on English.
786 (assoc "en" org-e-latex-quotes))))
787 text)
789 (defun org-e-latex--wrap-label (element output)
790 "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
791 This function shouldn't be used for floats. See
792 `org-e-latex--caption/label-string'."
793 (let ((label (org-element-property :name element)))
794 (if (or (not output) (not label) (string= output "") (string= label ""))
795 output
796 (concat (format "\\label{%s}\n" label) output))))
800 ;;; Template
802 (defun org-e-latex-template (contents info)
803 "Return complete document string after LaTeX conversion.
804 CONTENTS is the transcoded contents string. INFO is a plist
805 holding export options."
806 (let ((title (org-export-secondary-string
807 (plist-get info :title) 'e-latex info)))
808 (concat
809 ;; 1. Time-stamp.
810 (and (plist-get info :time-stamp-file)
811 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
812 ;; 2. Document class and packages.
813 (let ((class (plist-get info :latex-class))
814 (class-options (plist-get info :latex-class-options)))
815 (org-element-normalize-string
816 (let* ((header (nth 1 (assoc class org-e-latex-classes)))
817 (document-class-string
818 (and (stringp header)
819 (if class-options
820 (replace-regexp-in-string
821 "^[ \t]*\\\\documentclass\\(\\[.*?\\]\\)"
822 class-options header t nil 1)
823 header))))
824 (org-e-latex--guess-inputenc
825 (org-splice-latex-header
826 document-class-string
827 org-export-latex-default-packages-alist ; defined in org.el
828 org-export-latex-packages-alist nil ; defined in org.el
829 (plist-get info :latex-header-extra))))))
830 ;; 3. Define alert if not yet defined.
831 "\\providecommand{\\alert}[1]{\\textbf{#1}}\n"
832 ;; 4. Possibly limit depth for headline numbering.
833 (let ((sec-num (plist-get info :section-numbers)))
834 (when (integerp sec-num)
835 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
836 ;; 5. Author.
837 (let ((author (and (plist-get info :with-author)
838 (let ((auth (plist-get info :author)))
839 (and auth (org-export-secondary-string
840 auth 'e-latex info)))))
841 (email (and (plist-get info :with-email)
842 (org-export-secondary-string
843 (plist-get info :email) 'e-latex info))))
844 (cond ((and author email (not (string= "" email)))
845 (format "\\author{%s\\thanks{%s}}\n" author email))
846 (author (format "\\author{%s}\n" author))
847 (t "\\author{}\n")))
848 ;; 6. Date.
849 (let ((date (plist-get info :date)))
850 (and date (format "\\date{%s}\n" date)))
851 ;; 7. Title
852 (format "\\title{%s}\n" title)
853 ;; 8. Hyperref options.
854 (format "\\hypersetup{\n pdfkeywords={%s},\n pdfsubject={%s},\n pdfcreator={%s}}\n"
855 (or (plist-get info :keywords) "")
856 (or (plist-get info :description) "")
857 (if (not (plist-get info :with-creator)) ""
858 (plist-get info :creator)))
859 ;; 9. Document start.
860 "\\begin{document}\n\n"
861 ;; 10. Title command.
862 (org-element-normalize-string
863 (cond ((string= "" title) nil)
864 ((not (stringp org-e-latex-title-command)) nil)
865 ((string-match "\\(?:[^%]\\|^\\)%s"
866 org-e-latex-title-command)
867 (format org-e-latex-title-command title))
868 (t org-e-latex-title-command)))
869 ;; 11. Table of contents.
870 (let ((depth (plist-get info :with-toc)))
871 (when depth
872 (concat (when (wholenump depth)
873 (format "\\setcounter{tocdepth}{%d}\n" depth))
874 "\\tableofcontents\n\\vspace*{1cm}\n\n")))
875 ;; 12. Document's body.
876 contents
877 ;; 13. Creator.
878 (let ((creator-info (plist-get info :with-creator)))
879 (cond
880 ((not creator-info) "")
881 ((eq creator-info 'comment)
882 (format "%% %s\n" (plist-get info :creator)))
883 (t (concat (plist-get info :creator) "\n"))))
884 ;; 14. Document end.
885 "\\end{document}")))
889 ;;; Transcode Functions
891 ;;;; Block
893 (defun org-e-latex-center-block (center-block contents info)
894 "Transcode a CENTER-BLOCK element from Org to LaTeX.
895 CONTENTS holds the contents of the block. INFO is a plist
896 holding contextual information."
897 (org-e-latex--wrap-label
898 center-block
899 (format "\\begin{center}\n%s\\end{center}" contents)))
902 ;;;; Comment
904 ;; Comments are ignored.
907 ;;;; Comment Block
909 ;; Comment Blocks are ignored.
912 ;;;; Drawer
914 (defun org-e-latex-drawer (drawer contents info)
915 "Transcode a DRAWER element from Org to LaTeX.
916 CONTENTS holds the contents of the block. INFO is a plist
917 holding contextual information."
918 (let* ((name (org-element-property :drawer-name drawer))
919 (output (if (functionp org-e-latex-format-drawer-function)
920 (funcall org-e-latex-format-drawer-function
921 name contents)
922 ;; If there's no user defined function: simply
923 ;; display contents of the drawer.
924 contents)))
925 (org-e-latex--wrap-label drawer output)))
928 ;;;; Dynamic Block
930 (defun org-e-latex-dynamic-block (dynamic-block contents info)
931 "Transcode a DYNAMIC-BLOCK element from Org to LaTeX.
932 CONTENTS holds the contents of the block. INFO is a plist
933 holding contextual information. See
934 `org-export-data'."
935 (org-e-latex--wrap-label dynamic-block contents))
938 ;;;; Emphasis
940 (defun org-e-latex-emphasis (emphasis contents info)
941 "Transcode EMPHASIS from Org to LaTeX.
942 CONTENTS is the contents of the emphasized text. INFO is a plist
943 holding contextual information.."
944 (format (cdr (assoc (org-element-property :marker emphasis)
945 org-e-latex-emphasis-alist))
946 contents))
949 ;;;; Entity
951 (defun org-e-latex-entity (entity contents info)
952 "Transcode an ENTITY object from Org to LaTeX.
953 CONTENTS are the definition itself. INFO is a plist holding
954 contextual information."
955 (let ((ent (org-element-property :latex entity)))
956 (if (org-element-property :latex-math-p entity) (format "$%s$" ent) ent)))
959 ;;;; Example Block
961 (defun org-e-latex-example-block (example-block contents info)
962 "Transcode a EXAMPLE-BLOCK element from Org to LaTeX.
963 CONTENTS is nil. INFO is a plist holding contextual information."
964 (let* ((options (or (org-element-property :options example-block) ""))
965 (value (org-export-handle-code example-block info)))
966 (org-e-latex--wrap-label
967 example-block (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
970 ;;;; Export Snippet
972 (defun org-e-latex-export-snippet (export-snippet contents info)
973 "Transcode a EXPORT-SNIPPET object from Org to LaTeX.
974 CONTENTS is nil. INFO is a plist holding contextual information."
975 (org-element-property :value export-snippet))
978 ;;;; Export Block
980 (defun org-e-latex-export-block (export-block contents info)
981 "Transcode a EXPORT-BLOCK element from Org to LaTeX.
982 CONTENTS is nil. INFO is a plist holding contextual information."
983 (when (string= (org-element-property :type export-block) "latex")
984 (org-remove-indentation (org-element-property :value export-block))))
987 ;;;; Fixed Width
989 (defun org-e-latex-fixed-width (fixed-width contents info)
990 "Transcode a FIXED-WIDTH element from Org to LaTeX.
991 CONTENTS is nil. INFO is a plist holding contextual information."
992 (let* ((value (org-element-normalize-string
993 (replace-regexp-in-string
994 "^[ \t]*: ?" ""
995 (org-element-property :value fixed-width)))))
996 (org-e-latex--wrap-label
997 fixed-width (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
1000 ;;;; Footnote Definition
1002 ;; Footnote Definitions are ignored.
1005 ;;;; Footnote Reference
1007 (defun org-e-latex-footnote-reference (footnote-reference contents info)
1008 "Transcode a FOOTNOTE-REFERENCE element from Org to LaTeX.
1009 CONTENTS is nil. INFO is a plist holding contextual information."
1010 (concat
1011 ;; Insert separator between two footnotes in a row.
1012 (let ((prev (org-export-get-previous-element footnote-reference info)))
1013 (when (eq (org-element-type prev) 'footnote-reference)
1014 org-e-latex-footnote-separator))
1015 ;; Use \footnotemark if the footnote has already been defined.
1016 ;; Otherwise, define it with \footnote command.
1017 (cond
1018 ((not (org-export-footnote-first-reference-p footnote-reference info))
1019 (format "\\footnotemark[%s]"
1020 (org-export-get-footnote-number footnote-reference info)))
1021 ;; Inline definitions are secondary strings.
1022 ((eq (org-element-property :type footnote-reference) 'inline)
1023 (format "\\footnote{%s}"
1024 (org-trim
1025 (org-export-secondary-string
1026 (org-export-get-footnote-definition footnote-reference info)
1027 'e-latex info))))
1028 ;; Non-inline footnotes definitions are full Org data.
1030 (format "\\footnote{%s}"
1031 (org-trim
1032 (org-export-data
1033 (org-export-get-footnote-definition footnote-reference info)
1034 'e-latex info)))))))
1037 ;;;; Headline
1039 (defun org-e-latex-headline (headline contents info)
1040 "Transcode an HEADLINE element from Org to LaTeX.
1041 CONTENTS holds the contents of the headline. INFO is a plist
1042 holding contextual information."
1043 (let* ((class (plist-get info :latex-class))
1044 (numberedp (plist-get info :section-numbers))
1045 ;; Get level relative to current parsed data.
1046 (level (org-export-get-relative-level headline info))
1047 (class-sectionning (assoc class org-e-latex-classes))
1048 ;; Section formatting will set two placeholders: one for the
1049 ;; title and the other for the contents.
1050 (section-fmt
1051 (let ((sec (if (and (symbolp (nth 2 class-sectionning))
1052 (fboundp (nth 2 class-sectionning)))
1053 (funcall (nth 2 class-sectionning) level numberedp)
1054 (nth (1+ level) class-sectionning))))
1055 (cond
1056 ;; No section available for that LEVEL.
1057 ((not sec) nil)
1058 ;; Section format directly returned by a function.
1059 ((stringp sec) sec)
1060 ;; (numbered-section . unnumbered-section)
1061 ((not (consp (cdr sec)))
1062 (concat (funcall (if numberedp #'car #'cdr) sec) "\n%s"))
1063 ;; (numbered-open numbered-close)
1064 ((= (length sec) 2)
1065 (when numberedp (concat (car sec) "\n%s" (nth 1 sec))))
1066 ;; (num-in num-out no-num-in no-num-out)
1067 ((= (length sec) 4)
1068 (if numberedp
1069 (concat (car sec) "\n%s" (nth 1 sec))
1070 (concat (nth 2 sec) "\n%s" (nth 3 sec)))))))
1071 (text (org-export-secondary-string
1072 (org-element-property :title headline) 'e-latex info))
1073 (todo
1074 (and (plist-get info :with-todo-keywords)
1075 (let ((todo (org-element-property :todo-keyword headline)))
1076 (and todo (org-export-secondary-string todo 'e-latex info)))))
1077 (todo-type (and todo (org-element-property :todo-type headline)))
1078 (tags (and (plist-get info :with-tags)
1079 (org-element-property :tags headline)))
1080 (priority (and (plist-get info :with-priority)
1081 (org-element-property :priority headline)))
1082 ;; Create the headline text.
1083 (full-text (if (functionp org-e-latex-format-headline-function)
1084 ;; User-defined formatting function.
1085 (funcall org-e-latex-format-headline-function
1086 todo todo-type priority text tags)
1087 ;; Default formatting.
1088 (concat
1089 (when todo
1090 (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
1091 (when priority (format "\\framebox{\\#%c} " priority))
1092 text
1093 (when tags (format "\\hfill{}\\textsc{%s}" tags)))))
1094 ;; Associate some \label to the headline for internal links.
1095 (headline-label
1096 (format "\\label{sec-%s}\n"
1097 (mapconcat 'number-to-string
1098 (org-export-get-headline-number headline info)
1099 "-")))
1100 (pre-blanks
1101 (make-string (org-element-property :pre-blank headline) 10)))
1102 (cond
1103 ;; Case 1: This is a footnote section: ignore it.
1104 ((org-element-property :footnote-section-p headline) nil)
1105 ;; Case 2. This is a deep sub-tree: export it as a list item.
1106 ;; Also export as items headlines for which no section
1107 ;; format has been found.
1108 ((or (not section-fmt) (org-export-low-level-p headline info))
1109 ;; Build the real contents of the sub-tree.
1110 (let ((low-level-body
1111 (concat
1112 ;; If the headline is the first sibling, start a list.
1113 (when (org-export-first-sibling-p headline info)
1114 (format "\\begin{%s}\n" (if numberedp 'enumerate 'itemize)))
1115 ;; Itemize headline
1116 "\\item " full-text "\n" headline-label pre-blanks contents)))
1117 ;; If headline in the last sibling, close the list, before any
1118 ;; blank line. Otherwise, simply return LOW-LEVEL-BODY.
1119 (if (org-export-last-sibling-p headline info)
1120 (replace-regexp-in-string
1121 "[ \t\n]*\\'"
1122 (format "\n\\\\end{%s}" (if numberedp 'enumerate 'itemize))
1123 low-level-body)
1124 low-level-body)))
1125 ;; Case 3. Standard headline. Export it as a section.
1126 (t (format section-fmt full-text
1127 (concat headline-label pre-blanks contents))))))
1130 ;;;; Horizontal Rule
1132 (defun org-e-latex-horizontal-rule (horizontal-rule contents info)
1133 "Transcode an HORIZONTAL-RULE object from Org to LaTeX.
1134 CONTENTS is nil. INFO is a plist holding contextual information."
1135 (let ((attr (mapconcat #'identity
1136 (org-element-property :attr_latex horizontal-rule)
1137 " ")))
1138 (org-e-latex--wrap-label horizontal-rule (concat "\\hrule " attr))))
1141 ;;;; Inline Babel Call
1143 ;; Inline Babel Calls are ignored.
1146 ;;;; Inline Src Block
1148 (defun org-e-latex-inline-src-block (inline-src-block contents info)
1149 "Transcode an INLINE-SRC-BLOCK element from Org to LaTeX.
1150 CONTENTS holds the contents of the item. INFO is a plist holding
1151 contextual information."
1152 (let* ((code (org-element-property :value inline-src-block))
1153 (separator (org-e-latex--find-verb-separator code)))
1154 (cond
1155 ;; Do not use a special package: transcode it verbatim.
1156 ((not org-e-latex-listings)
1157 (concat "\\verb" separator code separator))
1158 ;; Use minted package.
1159 ((eq org-e-latex-listings 'minted)
1160 (let* ((org-lang (org-element-property :language inline-src-block))
1161 (mint-lang (or (cadr (assq (intern org-lang)
1162 org-e-latex-minted-langs))
1163 org-lang))
1164 (options (org-e-latex--make-option-string
1165 org-e-latex-minted-options)))
1166 (concat (format "\\mint%s{%s}"
1167 (if (string= options "") "" (format "[%s]" options))
1168 mint-lang)
1169 separator code separator)))
1170 ;; Use listings package.
1172 ;; Maybe translate language's name.
1173 (let* ((org-lang (org-element-property :language inline-src-block))
1174 (lst-lang (or (cadr (assq (intern org-lang)
1175 org-e-latex-listings-langs))
1176 org-lang))
1177 (options (org-e-latex--make-option-string
1178 (append org-e-latex-listings-options
1179 `(("language" ,lst-lang))))))
1180 (concat (format "\\lstinline[%s]" options)
1181 separator code separator))))))
1184 ;;;; Inlinetask
1186 (defun org-e-latex-inlinetask (inlinetask contents info)
1187 "Transcode an INLINETASK element from Org to LaTeX.
1188 CONTENTS holds the contents of the block. INFO is a plist
1189 holding contextual information."
1190 (let ((title (org-export-secondary-string
1191 (org-element-property :title inlinetask) 'e-latex info))
1192 (todo (and (plist-get info :with-todo-keywords)
1193 (let ((todo (org-element-property
1194 :todo-keyword inlinetask)))
1195 (and todo
1196 (org-export-secondary-string todo 'e-latex info)))))
1197 (todo-type (org-element-property :todo-type inlinetask))
1198 (tags (and (plist-get info :with-tags)
1199 (org-element-property :tags inlinetask)))
1200 (priority (and (plist-get info :with-priority)
1201 (org-element-property :priority inlinetask))))
1202 ;; If `org-e-latex-format-inlinetask-function' is provided, call it
1203 ;; with appropriate arguments.
1204 (if (functionp org-e-latex-format-inlinetask-function)
1205 (funcall org-e-latex-format-inlinetask-function
1206 todo todo-type priority title tags contents)
1207 ;; Otherwise, use a default template.
1208 (org-e-latex--wrap-label
1209 inlinetask
1210 (let ((full-title
1211 (concat
1212 (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
1213 (when priority (format "\\framebox{\\#%c} " priority))
1214 title
1215 (when tags (format "\\hfill{}\\textsc{%s}" tags)))))
1216 (format (concat "\\begin{center}\n"
1217 "\\fbox{\n"
1218 "\\begin{minipage}[c]{.6\\textwidth}\n"
1219 "%s\n\n"
1220 "\\rule[.8em]{\\textwidth}{2pt}\n\n"
1221 "%s"
1222 "\\end{minipage}\n"
1223 "}\n"
1224 "\\end{center}")
1225 full-title contents))))))
1228 ;;;; Item
1230 (defun org-e-latex-item (item contents info)
1231 "Transcode an ITEM element from Org to LaTeX.
1232 CONTENTS holds the contents of the item. INFO is a plist holding
1233 contextual information."
1234 ;; Grab `:level' from plain-list properties, which is always the
1235 ;; first element above current item.
1236 (let* ((level (org-element-property :level (org-export-get-parent item info)))
1237 (counter (let ((count (org-element-property :counter item)))
1238 (and count
1239 (< level 4)
1240 (format "\\setcounter{enum%s}{%s}\n"
1241 (nth level '("i" "ii" "iii" "iv"))
1242 (1- count)))))
1243 (checkbox (let ((checkbox (org-element-property :checkbox item)))
1244 (cond ((eq checkbox 'on) "$\\boxtimes$ ")
1245 ((eq checkbox 'off) "$\\Box$ ")
1246 ((eq checkbox 'trans) "$\\boxminus$ "))))
1247 (tag (let ((tag (org-element-property :tag item)))
1248 (and tag
1249 (format "[%s]" (org-export-secondary-string
1250 tag 'e-latex info))))))
1251 (concat counter "\\item" tag " " checkbox contents)))
1254 ;;;; Keyword
1256 (defun org-e-latex-keyword (keyword contents info)
1257 "Transcode a KEYWORD element from Org to LaTeX.
1258 CONTENTS is nil. INFO is a plist holding contextual information."
1259 (let ((key (downcase (org-element-property :key keyword)))
1260 (value (org-element-property :value keyword)))
1261 (cond
1262 ((string= key "latex") value)
1263 ((string= key "index") (format "\\index{%s}" value))
1264 ((string= key "target")
1265 (format "\\label{%s}" (org-export-solidify-link-text value)))
1266 ((string= key "toc")
1267 (let ((value (downcase value)))
1268 (cond
1269 ((string-match "\\<headlines\\>" value)
1270 (let ((depth (or (and (string-match "[0-9]+" value)
1271 (string-to-number (match-string 0 value)))
1272 (plist-get info :with-toc))))
1273 (concat
1274 (when (wholenump depth)
1275 (format "\\setcounter{tocdepth}{%s}\n" depth))
1276 "\\tableofcontents")))
1277 ((string= "tables" value) "\\listoftables")
1278 ((string= "figures" value) "\\listoffigures")
1279 ((string= "listings" value)
1280 (cond
1281 ((eq org-e-latex-listings 'minted) "\\listoflistings")
1282 (org-e-latex-listings "\\lstlistoflistings")
1283 ;; At the moment, src blocks with a caption are wrapped
1284 ;; into a figure environment.
1285 (t "\\listoffigures")))))))))
1288 ;;;; Latex Environment
1290 (defun org-e-latex-latex-environment (latex-environment contents info)
1291 "Transcode a LATEX-ENVIRONMENT element from Org to LaTeX.
1292 CONTENTS is nil. INFO is a plist holding contextual information."
1293 (let ((label (org-element-property :name latex-environment))
1294 (value (org-remove-indentation
1295 (org-element-property :value latex-environment))))
1296 (if (not (org-string-nw-p label)) value
1297 ;; Environment is labelled: label must be within the environment
1298 ;; (otherwise, a reference pointing to that element will count
1299 ;; the section instead).
1300 (with-temp-buffer
1301 (insert value)
1302 (goto-char (point-min))
1303 (forward-line)
1304 (insert (format "\\label{%s}\n" label))
1305 (buffer-string)))))
1308 ;;;; Latex Fragment
1310 (defun org-e-latex-latex-fragment (latex-fragment contents info)
1311 "Transcode a LATEX-FRAGMENT object from Org to LaTeX.
1312 CONTENTS is nil. INFO is a plist holding contextual information."
1313 (org-element-property :value latex-fragment))
1316 ;;;; Line Break
1318 (defun org-e-latex-line-break (line-break contents info)
1319 "Transcode a LINE-BREAK object from Org to LaTeX.
1320 CONTENTS is nil. INFO is a plist holding contextual information."
1321 "\\\\")
1324 ;;;; Link
1326 (defun org-e-latex-link--inline-image (link info)
1327 "Return LaTeX code for an inline image.
1328 LINK is the link pointing to the inline image. INFO is a plist
1329 used as a communication channel."
1330 (let* ((parent (org-export-get-parent-paragraph link info))
1331 (path (let ((raw-path (org-element-property :path link)))
1332 (if (not (file-name-absolute-p raw-path)) raw-path
1333 (expand-file-name raw-path))))
1334 (caption (org-e-latex--caption/label-string
1335 (org-element-property :caption parent)
1336 (org-element-property :name parent)
1337 info))
1338 ;; Retrieve latex attributes from the element around.
1339 (attr (let ((raw-attr
1340 (mapconcat #'identity
1341 (org-element-property :attr_latex parent)
1342 " ")))
1343 (unless (string= raw-attr "") raw-attr)))
1344 (disposition
1345 (cond
1346 ((and attr (string-match "\\<wrap\\>" attr)) 'wrap)
1347 ((and attr (string-match "\\<multicolumn\\>" attr)) 'multicolumn)
1348 ((or (and attr (string-match "\\<float\\>" attr))
1349 (not (string= caption "")))
1350 'float)))
1351 (placement
1352 (cond
1353 ((and attr (string-match "\\<placement=\\(\\S-+\\)" attr))
1354 (org-match-string-no-properties 1 attr))
1355 ((eq disposition 'wrap) "{l}{0.5\\textwidth}")
1356 ((eq disposition 'float)
1357 (concat "[" org-e-latex-default-figure-position "]"))
1358 (t ""))))
1359 ;; Now clear ATTR from any special keyword and set a default
1360 ;; value if nothing is left.
1361 (setq attr
1362 (if (not attr) ""
1363 (org-trim
1364 (replace-regexp-in-string
1365 "\\(wrap\\|multicolumn\\|float\\|placement=\\S-+\\)" "" attr))))
1366 (setq attr (cond ((not (string= attr "")) attr)
1367 ((eq disposition 'float) "width=0.7\\textwidth")
1368 ((eq disposition 'wrap) "width=0.48\\textwidth")
1369 (t (or org-e-latex-image-default-option ""))))
1370 ;; Return proper string, depending on DISPOSITION.
1371 (case disposition
1372 (wrap (format "\\begin{wrapfigure}%s
1373 \\centering
1374 \\includegraphics[%s]{%s}
1375 %s\\end{wrapfigure}" placement attr path caption))
1376 (mulicolumn (format "\\begin{figure*}%s
1377 \\centering
1378 \\includegraphics[%s]{%s}
1379 %s\\end{figure*}" placement attr path caption))
1380 (float (format "\\begin{figure}%s
1381 \\centering
1382 \\includegraphics[%s]{%s}
1383 %s\\end{figure}" placement attr path caption))
1384 (t (format "\\includegraphics[%s]{%s}" attr path)))))
1386 (defun org-e-latex-link (link desc info)
1387 "Transcode a LINK object from Org to LaTeX.
1389 DESC is the description part of the link, or the empty string.
1390 INFO is a plist holding contextual information. See
1391 `org-export-data'."
1392 (let* ((type (org-element-property :type link))
1393 (raw-path (org-element-property :path link))
1394 ;; Ensure DESC really exists, or set it to nil.
1395 (desc (and (not (string= desc "")) desc))
1396 (imagep (org-export-inline-image-p
1397 link org-e-latex-inline-image-rules))
1398 (path (cond
1399 ((member type '("http" "https" "ftp" "mailto"))
1400 (concat type ":" raw-path))
1401 ((string= type "file")
1402 (when (string-match "\\(.+\\)::.+" raw-path)
1403 (setq raw-path (match-string 1 raw-path)))
1404 (if (file-name-absolute-p raw-path)
1405 (concat "file://" (expand-file-name raw-path))
1406 ;; TODO: Not implemented yet. Concat also:
1407 ;; (org-export-directory :LaTeX info)
1408 (concat "file://" raw-path)))
1409 (t raw-path)))
1410 protocol)
1411 (cond
1412 ;; Image file.
1413 (imagep (org-e-latex-link--inline-image link info))
1414 ;; Radioed target: Target's name is obtained from original raw
1415 ;; link. Path is parsed and transcoded in order to have a proper
1416 ;; display of the contents.
1417 ((string= type "radio")
1418 (format "\\hyperref[%s]{%s}"
1419 (org-export-solidify-link-text path)
1420 (org-export-secondary-string
1421 (org-element-parse-secondary-string
1422 path (cdr (assq 'radio-target org-element-object-restrictions)))
1423 'e-latex info)))
1424 ;; Ref link: If no description is provided, reference label PATH
1425 ;; and display table number. Otherwise move to label but display
1426 ;; description instead.
1427 ((string= type "ref")
1428 (if (not desc) (format "\\ref{%s}" path)
1429 (format "\\hyperref[%s]{%s}" path desc)))
1430 ;; Links pointing to an headline: Find destination and build
1431 ;; appropriate referencing command.
1432 ((member type '("custom-id" "fuzzy" "id"))
1433 (let ((destination (if (string= type "fuzzy")
1434 (org-export-resolve-fuzzy-link link info)
1435 (org-export-resolve-id-link link info))))
1436 ;; Fuzzy link points to a target. Do as above.
1437 (case (org-element-type destination)
1438 (target
1439 (format "\\hyperref[%s]{%s}"
1440 (org-export-solidify-link-text
1441 (org-element-property :raw-value destination))
1442 (or desc
1443 (org-export-secondary-string
1444 (org-element-property :raw-link link)
1445 'e-latex info))))
1446 ;; Fuzzy link points to an headline. If headlines are
1447 ;; numbered and the link has no description, display
1448 ;; headline's number. Otherwise, display description or
1449 ;; headline's title.
1450 (headline
1451 (let ((label
1452 (format "sec-%s"
1453 (mapconcat
1454 'number-to-string
1455 (org-export-get-headline-number destination info)
1456 "-"))))
1457 (if (and (plist-get info :section-numbers) (not desc))
1458 (format "\\ref{%s}" label)
1459 (format "\\hyperref[%s]{%s}" label
1460 (or desc
1461 (org-export-secondary-string
1462 (org-element-property :title destination)
1463 'e-latex info))))))
1464 ;; Fuzzy link points nowhere.
1465 (otherwise
1466 (format "\\texttt{%s}"
1467 (or desc
1468 (org-export-secondary-string
1469 (org-element-property :raw-link link)
1470 'e-latex info)))))))
1471 ;; Coderef: replace link with the reference name or the
1472 ;; equivalent line number.
1473 ((string= type "coderef")
1474 (format (org-export-get-coderef-format path (or desc ""))
1475 (org-export-resolve-coderef path info)))
1476 ;; Link type is handled by a special function.
1477 ((functionp (setq protocol (nth 2 (assoc type org-link-protocols))))
1478 (funcall protocol (org-link-unescape path) desc 'latex))
1479 ;; External link with a description part.
1480 ((and path desc) (format "\\href{%s}{%s}" path desc))
1481 ;; External link without a description part.
1482 (path (format "\\url{%s}" path))
1483 ;; No path, only description. Try to do something useful.
1484 (t (format "\\texttt{%s}" desc)))))
1487 ;;;; Babel Call
1489 ;; Babel Calls are ignored.
1492 ;;;; Macro
1494 (defun org-e-latex-macro (macro contents info)
1495 "Transcode a MACRO element from Org to LaTeX.
1496 CONTENTS is nil. INFO is a plist holding contextual information."
1497 ;; Use available tools.
1498 (org-export-expand-macro macro info))
1501 ;;;; Paragraph
1503 (defun org-e-latex-paragraph (paragraph contents info)
1504 "Transcode a PARAGRAPH element from Org to LaTeX.
1505 CONTENTS is the contents of the paragraph, as a string. INFO is
1506 the plist used as a communication channel."
1507 contents)
1510 ;;;; Plain List
1512 (defun org-e-latex-plain-list (plain-list contents info)
1513 "Transcode a PLAIN-LIST element from Org to LaTeX.
1514 CONTENTS is the contents of the list. INFO is a plist holding
1515 contextual information."
1516 (let* ((type (org-element-property :type plain-list))
1517 (paralist-types '("inparaenum" "asparaenum" "inparaitem" "asparaitem"
1518 "inparadesc" "asparadesc"))
1519 (paralist-regexp (concat
1520 "\\("
1521 (mapconcat 'identity paralist-types "\\|")
1522 "\\)"))
1523 (attr (mapconcat #'identity
1524 (org-element-property :attr_latex plain-list)
1525 " "))
1526 (latex-type (cond
1527 ((and attr
1528 (string-match
1529 (format "\\<%s\\>" paralist-regexp) attr))
1530 (match-string 1 attr))
1531 ((eq type 'ordered) "enumerate")
1532 ((eq type 'unordered) "itemize")
1533 ((eq type 'descriptive) "description"))))
1534 (org-e-latex--wrap-label
1535 plain-list
1536 (format "\\begin{%s}%s\n%s\\end{%s}"
1537 latex-type
1538 ;; Once special environment, if any, has been removed, the
1539 ;; rest of the attributes will be optional arguments.
1540 ;; They will be put inside square brackets if necessary.
1541 (let ((opt (replace-regexp-in-string
1542 (format " *%s *" paralist-regexp) "" attr)))
1543 (cond ((string= opt "") "")
1544 ((string-match "\\`\\[[^][]+\\]\\'" opt) opt)
1545 (t (format "[%s]" opt))))
1546 contents
1547 latex-type))))
1550 ;;;; Plain Text
1552 (defun org-e-latex-plain-text (text info)
1553 "Transcode a TEXT string from Org to LaTeX.
1554 TEXT is the string to transcode. INFO is a plist holding
1555 contextual information."
1556 ;; Protect %, #, &, $, ~, ^, _, { and }.
1557 (while (string-match "\\([^\\]\\|^\\)\\([%$#&{}~^_]\\)" text)
1558 (setq text
1559 (replace-match (format "\\%s" (match-string 2 text)) nil t text 2)))
1560 ;; Protect \
1561 (setq text (replace-regexp-in-string
1562 "\\(?:[^\\]\\|^\\)\\(\\\\\\)\\(?:[^%$#&{}~^_\\]\\|$\\)"
1563 "$\\backslash$" text nil t 1))
1564 ;; LaTeX into \LaTeX{} and TeX into \TeX{}.
1565 (let ((case-fold-search nil)
1566 (start 0))
1567 (while (string-match "\\<\\(\\(?:La\\)?TeX\\)\\>" text start)
1568 (setq text (replace-match
1569 (format "\\%s{}" (match-string 1 text)) nil t text)
1570 start (match-end 0))))
1571 ;; Handle quotation marks
1572 (setq text (org-e-latex--quotation-marks text info))
1573 ;; Convert special strings.
1574 (when (plist-get info :with-special-strings)
1575 (while (string-match (regexp-quote "...") text)
1576 (setq text (replace-match "\\ldots{}" nil t text))))
1577 ;; Handle break preservation if required.
1578 (when (plist-get info :preserve-breaks)
1579 (setq text (replace-regexp-in-string "\\(\\\\\\\\\\)?[ \t]*\n" " \\\\\\\\\n"
1580 text)))
1581 ;; Return value.
1582 text)
1585 ;;;; Property Drawer
1587 (defun org-e-latex-property-drawer (property-drawer contents info)
1588 "Transcode a PROPERTY-DRAWER element from Org to LaTeX.
1589 CONTENTS is nil. INFO is a plist holding contextual
1590 information."
1591 ;; The property drawer isn't exported but we want separating blank
1592 ;; lines nonetheless.
1596 ;;;; Quote Block
1598 (defun org-e-latex-quote-block (quote-block contents info)
1599 "Transcode a QUOTE-BLOCK element from Org to LaTeX.
1600 CONTENTS holds the contents of the block. INFO is a plist
1601 holding contextual information."
1602 (org-e-latex--wrap-label
1603 quote-block
1604 (format "\\begin{quote}\n%s\\end{quote}" contents)))
1607 ;;;; Quote Section
1609 (defun org-e-latex-quote-section (quote-section contents info)
1610 "Transcode a QUOTE-SECTION element from Org to LaTeX.
1611 CONTENTS is nil. INFO is a plist holding contextual information."
1612 (let ((value (org-remove-indentation
1613 (org-element-property :value quote-section))))
1614 (when value (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
1617 ;;;; Section
1619 (defun org-e-latex-section (section contents info)
1620 "Transcode a SECTION element from Org to LaTeX.
1621 CONTENTS holds the contents of the section. INFO is a plist
1622 holding contextual information."
1623 contents)
1626 ;;;; Radio Target
1628 (defun org-e-latex-radio-target (radio-target text info)
1629 "Transcode a RADIO-TARGET object from Org to LaTeX.
1630 TEXT is the text of the target. INFO is a plist holding
1631 contextual information."
1632 (format "\\label{%s}%s"
1633 (org-export-solidify-link-text
1634 (org-element-property :raw-value radio-target))
1635 text))
1638 ;;;; Special Block
1640 (defun org-e-latex-special-block (special-block contents info)
1641 "Transcode a SPECIAL-BLOCK element from Org to LaTeX.
1642 CONTENTS holds the contents of the block. INFO is a plist
1643 holding contextual information."
1644 (let ((type (downcase (org-element-property :type special-block))))
1645 (org-e-latex--wrap-label
1646 special-block
1647 (format "\\begin{%s}\n%s\\end{%s}" type contents type))))
1650 ;;;; Src Block
1652 (defun org-e-latex-src-block (src-block contents info)
1653 "Transcode a SRC-BLOCK element from Org to LaTeX.
1654 CONTENTS holds the contents of the item. INFO is a plist holding
1655 contextual information."
1656 (let* ((lang (org-element-property :language src-block))
1657 (code (org-export-handle-code src-block info))
1658 (caption (org-element-property :caption src-block))
1659 (label (org-element-property :name src-block))
1660 (custom-env (and lang
1661 (cadr (assq (intern lang)
1662 org-e-latex-custom-lang-environments)))))
1663 (cond
1664 ;; No source fontification.
1665 ((not org-e-latex-listings)
1666 (let ((caption-str (org-e-latex--caption/label-string
1667 caption label info))
1668 (float-env (when caption "\\begin{figure}[H]\n%s\n\\end{figure}")))
1669 (format (or float-env "%s")
1670 (concat
1671 caption-str
1672 (format "\\begin{verbatim}\n%s\\end{verbatim}" code)))))
1673 ;; Custom environment.
1674 (custom-env
1675 (format "\\begin{%s}\n%s\\end{%s}\n" custom-env code custom-env))
1676 ;; Use minted package.
1677 ((eq org-e-latex-listings 'minted)
1678 (let* ((mint-lang (or (cadr (assq (intern lang) org-e-latex-minted-langs))
1679 lang))
1680 (float-env (when (or label caption)
1681 (format "\\begin{listing}[H]\n%%s\n%s\\end{listing}"
1682 (org-e-latex--caption/label-string
1683 caption label info))))
1684 (body (format "\\begin{minted}[%s]{%s}\n%s\\end{minted}"
1685 (org-e-latex--make-option-string
1686 org-e-latex-minted-options)
1687 mint-lang code)))
1688 (if float-env (format float-env body) body)))
1689 ;; Use listings package.
1691 (let ((lst-lang
1692 (or (cadr (assq (intern lang) org-e-latex-listings-langs)) lang))
1693 (caption-str
1694 (when caption
1695 (let ((main (org-export-secondary-string
1696 (car caption) 'e-latex info)))
1697 (if (not (cdr caption)) (format "{%s}" main)
1698 (format
1699 "{[%s]%s}"
1700 (org-export-secondary-string (cdr caption) 'e-latex info)
1701 main))))))
1702 (concat (format "\\lstset{%s}\n"
1703 (org-e-latex--make-option-string
1704 (append org-e-latex-listings-options
1705 `(("language" ,lst-lang))
1706 (when label `(("label" ,label)))
1707 (when caption-str
1708 `(("caption" ,caption-str))))))
1709 (format "\\begin{lstlisting}\n%s\\end{lstlisting}" code)))))))
1712 ;;;; Statistics Cookie
1714 (defun org-e-latex-statistics-cookie (statistics-cookie contents info)
1715 "Transcode a STATISTICS-COOKIE object from Org to LaTeX.
1716 CONTENTS is nil. INFO is a plist holding contextual information."
1717 (org-element-property :value statistics-cookie))
1720 ;;;; Subscript
1722 (defun org-e-latex-subscript (subscript contents info)
1723 "Transcode a SUBSCRIPT object from Org to LaTeX.
1724 CONTENTS is the contents of the object. INFO is a plist holding
1725 contextual information."
1726 (format (if (= (length contents) 1) "$_%s$" "$_{\\mathrm{%s}}$") contents))
1729 ;;;; Superscript
1731 (defun org-e-latex-superscript (superscript contents info)
1732 "Transcode a SUPERSCRIPT object from Org to LaTeX.
1733 CONTENTS is the contents of the object. INFO is a plist holding
1734 contextual information."
1735 (format (if (= (length contents) 1) "$^%s$" "$^{\\mathrm{%s}}$") contents))
1738 ;;;; Table
1740 (defun org-e-latex-table--format-string (table table-info info)
1741 "Return an appropriate format string for TABLE.
1743 TABLE-INFO is the plist containing format info about the table,
1744 as returned by `org-export-table-format-info'. INFO is a plist
1745 used as a communication channel.
1747 The format string leaves one placeholder for the body of the
1748 table."
1749 (let* ((label (org-element-property :name table))
1750 (caption (org-e-latex--caption/label-string
1751 (org-element-property :caption table) label info))
1752 (attr (mapconcat 'identity
1753 (org-element-property :attr_latex table)
1754 " "))
1755 ;; Determine alignment string.
1756 (alignment (org-e-latex-table--align-string attr table-info))
1757 ;; Determine environment for the table: longtable, tabular...
1758 (table-env (cond
1759 ((not attr) org-e-latex-default-table-environment)
1760 ((string-match "\\<longtable\\>" attr) "longtable")
1761 ((string-match "\\<tabular.?\\>" attr)
1762 (org-match-string-no-properties 0 attr))
1763 (t org-e-latex-default-table-environment)))
1764 ;; If table is a float, determine environment: table or table*.
1765 (float-env (cond
1766 ((string= "longtable" table-env) nil)
1767 ((and attr
1768 (or (string-match (regexp-quote "table*") attr)
1769 (string-match "\\<multicolumn\\>" attr)))
1770 "table*")
1771 ((or (not (string= caption "")) label) "table")))
1772 ;; Extract others display options.
1773 (width (and attr (string-match "\\<width=\\(\\S-+\\)" attr)
1774 (org-match-string-no-properties 1 attr)))
1775 (placement
1776 (if (and attr (string-match "\\<placement=\\(\\S-+\\)" attr))
1777 (org-match-string-no-properties 1 attr)
1778 (format "[%s]" org-e-latex-default-figure-position))))
1779 ;; Prepare the final format string for the table.
1780 (cond
1781 ;; Longtable.
1782 ((string= "longtable" table-env)
1783 (format
1784 "\\begin{longtable}{%s}\n%s\n%%s\n%s\\end{longtable}"
1785 alignment
1786 (if (or (not org-e-latex-table-caption-above) (string= "" caption)) ""
1787 (concat (org-trim caption) "\\\\"))
1788 (if (or org-e-latex-table-caption-above (string= "" caption)) ""
1789 (concat (org-trim caption) "\\\\\n"))))
1790 ;; Others.
1791 (t (concat (when float-env
1792 (concat
1793 (format "\\begin{%s}%s\n" float-env placement)
1794 (if org-e-latex-table-caption-above caption "")))
1795 (when org-e-latex-tables-centered "\\begin{center}\n")
1796 (format "\\begin{%s}%s{%s}\n%%s\n\\end{%s}"
1797 table-env
1798 (if width (format "{%s}" width) "") alignment table-env)
1799 (when org-e-latex-tables-centered "\n\\end{center}")
1800 (when float-env
1801 (concat (if org-e-latex-table-caption-above "" caption)
1802 (format "\n\\end{%s}" float-env))))))))
1804 (defun org-e-latex-table--align-string (attr table-info)
1805 "Return an appropriate LaTeX alignment string.
1806 ATTR is a string containing table's LaTeX specific attributes.
1807 TABLE-INFO is the plist containing format info about the table,
1808 as returned by `org-export-table-format-info'."
1809 (or (and attr
1810 (string-match "\\<align=\\(\\S-+\\)" attr)
1811 (match-string 1 attr))
1812 (let* ((align (copy-sequence (plist-get table-info :alignment)))
1813 (colgroups (copy-sequence (plist-get table-info :column-groups)))
1814 (cols (length align))
1815 (separators (make-vector (1+ cols) "")))
1816 ;; Ignore the first column if it's special.
1817 (when (plist-get table-info :special-column-p)
1818 (aset align 0 "") (aset colgroups 0 nil))
1819 (let ((col 0))
1820 (mapc (lambda (el)
1821 (let ((gr (aref colgroups col)))
1822 (when (memq gr '(start start-end))
1823 (aset separators col "|"))
1824 (when (memq gr '(end start-end))
1825 (aset separators (1+ col) "|")))
1826 (incf col))
1827 align))
1828 ;; Build the LaTeX specific alignment string.
1829 (loop for al across align
1830 for sep across separators
1831 concat (concat sep al) into output
1832 finally return (concat output (aref separators cols))))))
1834 (defun org-e-latex-table (table contents info)
1835 "Transcode a TABLE element from Org to LaTeX.
1836 CONTENTS is nil. INFO is a plist holding contextual information."
1837 (let ((attr (mapconcat #'identity
1838 (org-element-property :attr_latex table)
1839 " "))
1840 (raw-table (org-element-property :raw-table table)))
1841 (cond
1842 ;; Case 1: verbatim table.
1843 ((or org-e-latex-tables-verbatim
1844 (and attr (string-match "\\<verbatim\\>" attr)))
1845 (format "\\begin{verbatim}\n%s\n\\end{verbatim}"
1846 (org-export-clean-table
1847 raw-table
1848 (plist-get (org-export-table-format-info raw-table)
1849 :special-column-p))))
1850 ;; Case 2: table.el table. Convert it using appropriate tools.
1851 ((eq (org-element-property :type table) 'table.el)
1852 (require 'table)
1853 ;; Ensure "*org-export-table*" buffer is empty.
1854 (with-current-buffer (get-buffer-create "*org-export-table*")
1855 (erase-buffer))
1856 (let ((output (with-temp-buffer
1857 (insert raw-table)
1858 (goto-char 1)
1859 (re-search-forward "^[ \t]*|[^|]" nil t)
1860 (table-generate-source 'latex "*org-export-table*")
1861 (with-current-buffer "*org-export-table*"
1862 (org-trim (buffer-string))))))
1863 (kill-buffer (get-buffer "*org-export-table*"))
1864 ;; Remove left out comments.
1865 (while (string-match "^%.*\n" output)
1866 (setq output (replace-match "" t t output)))
1867 ;; When the "rmlines" attribute is provided, remove all hlines
1868 ;; but the the one separating heading from the table body.
1869 (when (and attr (string-match "\\<rmlines\\>" attr))
1870 (let ((n 0) (pos 0))
1871 (while (and (< (length output) pos)
1872 (setq pos (string-match "^\\\\hline\n?" output pos)))
1873 (incf n)
1874 (unless (= n 2)
1875 (setq output (replace-match "" nil nil output))))))
1876 (if (not org-e-latex-tables-centered) output
1877 (format "\\begin{center}\n%s\n\\end{center}" output))))
1878 ;; Case 3: Standard table.
1880 (let* ((table-info (org-export-table-format-info raw-table))
1881 (columns-number (length (plist-get table-info :alignment)))
1882 (longtablep (and attr (string-match "\\<longtable\\>" attr)))
1883 (booktabsp
1884 (or (and attr (string-match "\\<booktabs=\\(yes\\|t\\)\\>" attr))
1885 org-e-latex-tables-booktabs))
1886 ;; CLEAN-TABLE is a table turned into a list, much like
1887 ;; `org-table-to-lisp', with special column and
1888 ;; formatting cookies removed, and cells already
1889 ;; transcoded.
1890 (clean-table
1891 (mapcar
1892 (lambda (row)
1893 (if (string-match org-table-hline-regexp row) 'hline
1894 (mapcar
1895 (lambda (cell)
1896 (org-export-secondary-string
1897 (org-element-parse-secondary-string
1898 cell
1899 (cdr (assq 'table org-element-string-restrictions)))
1900 'e-latex info))
1901 (org-split-string row "[ \t]*|[ \t]*"))))
1902 (org-split-string
1903 (org-export-clean-table
1904 raw-table (plist-get table-info :special-column-p))
1905 "\n"))))
1906 ;; If BOOKTABSP is non-nil, remove any rule at the beginning
1907 ;; and the end of the table, since booktabs' special rules
1908 ;; will be inserted instead.
1909 (when booktabsp
1910 (when (eq (car clean-table) 'hline)
1911 (setq clean-table (cdr clean-table)))
1912 (when (eq (car (last clean-table)) 'hline)
1913 (setq clean-table (butlast clean-table))))
1914 ;; Convert ROWS to send them to `orgtbl-to-latex'. In
1915 ;; particular, send each cell to
1916 ;; `org-element-parse-secondary-string' to expand any Org
1917 ;; object within. Eventually, flesh the format string out
1918 ;; with the table.
1919 (format
1920 (org-e-latex-table--format-string table table-info info)
1921 (orgtbl-to-latex
1922 clean-table
1923 ;; Parameters passed to `orgtbl-to-latex'.
1924 `(:tstart ,(and booktabsp "\\toprule")
1925 :tend ,(and booktabsp "\\bottomrule")
1926 :hline ,(if booktabsp "\\midrule" "\\hline")
1927 ;; Longtable environment requires specific header
1928 ;; lines end string.
1929 :hlend ,(and longtablep
1930 (format "\\\\
1932 \\endhead
1933 %s\\multicolumn{%d}{r}{Continued on next page}\\\\
1934 \\endfoot
1935 \\endlastfoot"
1936 (if booktabsp "\\midrule" "\\hline")
1937 (if booktabsp "\\midrule" "\\hline")
1938 columns-number))))))))))
1941 ;;;; Target
1943 (defun org-e-latex-target (target text info)
1944 "Transcode a TARGET object from Org to LaTeX.
1945 TEXT is the text of the target. INFO is a plist holding
1946 contextual information."
1947 (format "\\label{%s}%s"
1948 (org-export-solidify-link-text
1949 (org-element-property :raw-value target))
1950 text))
1953 ;;;; Time-stamp
1955 (defun org-e-latex-time-stamp (time-stamp contents info)
1956 "Transcode a TIME-STAMP object from Org to LaTeX.
1957 CONTENTS is nil. INFO is a plist holding contextual
1958 information."
1959 (let ((value (org-element-property :value time-stamp))
1960 (type (org-element-property :type time-stamp))
1961 (appt-type (org-element-property :appt-type time-stamp)))
1962 (concat (cond ((eq appt-type 'scheduled)
1963 (format "\\textbf{\\textsc{%s}} " org-scheduled-string))
1964 ((eq appt-type 'deadline)
1965 (format "\\textbf{\\textsc{%s}} " org-deadline-string))
1966 ((eq appt-type 'closed)
1967 (format "\\textbf{\\textsc{%s}} " org-closed-string)))
1968 (cond ((memq type '(active active-range))
1969 (format org-e-latex-active-timestamp-format value))
1970 ((memq type '(inactive inactive-range))
1971 (format org-e-latex-inactive-timestamp-format value))
1973 (format org-e-latex-diary-timestamp-format value))))))
1976 ;;;; Verbatim
1978 (defun org-e-latex-verbatim (verbatim contents info)
1979 "Transcode a VERBATIM object from Org to LaTeX.
1980 CONTENTS is nil. INFO is a plist used as a communication
1981 channel."
1982 (let ((fmt (cdr (assoc (org-element-property :marker verbatim)
1983 org-e-latex-emphasis-alist)))
1984 (value (org-element-property :value verbatim)))
1985 (cond
1986 ;; Handle the `verb' special case.
1987 ((eq 'verb fmt)
1988 (let ((separator (org-e-latex--find-verb-separator value)))
1989 (concat "\\verb" separator value separator)))
1990 ;; Handle the `protectedtexttt' special case.
1991 ((eq 'protectedtexttt fmt)
1992 (let ((start 0)
1993 (trans '(("\\" . "\\textbackslash{}")
1994 ("~" . "\\textasciitilde{}")
1995 ("^" . "\\textasciicircum{}")))
1996 (rtn "")
1997 char)
1998 (while (string-match "[\\{}$%&_#~^]" value)
1999 (setq char (match-string 0 value))
2000 (if (> (match-beginning 0) 0)
2001 (setq rtn (concat rtn (substring value 0 (match-beginning 0)))))
2002 (setq value (substring value (1+ (match-beginning 0))))
2003 (setq char (or (cdr (assoc char trans)) (concat "\\" char))
2004 rtn (concat rtn char)))
2005 (setq value (concat rtn value)
2006 fmt "\\texttt{%s}")
2007 (while (string-match "--" value)
2008 (setq value (replace-match "-{}-" t t value)))
2009 (format fmt value)))
2010 ;; Else use format string.
2011 (t (format fmt value)))))
2014 ;;;; Verse Block
2016 (defun org-e-latex-verse-block (verse-block contents info)
2017 "Transcode a VERSE-BLOCK element from Org to LaTeX.
2018 CONTENTS is nil. INFO is a plist holding contextual information."
2019 (org-e-latex--wrap-label
2020 verse-block
2021 ;; In a verse environment, add a line break to each newline
2022 ;; character and change each white space at beginning of a line
2023 ;; into a space of 1 em. Also change each blank line with
2024 ;; a vertical space of 1 em.
2025 (progn
2026 (setq contents (replace-regexp-in-string
2027 "^ *\\\\\\\\$" "\\\\vspace*{1em}"
2028 (replace-regexp-in-string
2029 "\\(\\\\\\\\\\)?[ \t]*\n" " \\\\\\\\\n"
2030 (org-remove-indentation
2031 (org-export-secondary-string
2032 (org-element-property :value verse-block)
2033 'e-latex info)))))
2034 (while (string-match "^[ \t]+" contents)
2035 (let ((new-str (format "\\hspace*{%dem}"
2036 (length (match-string 0 contents)))))
2037 (setq contents (replace-match new-str nil t contents))))
2038 (format "\\begin{verse}\n%s\\end{verse}" contents))))
2042 ;;; Interactive functions
2044 (defun org-e-latex-export-to-latex
2045 (&optional subtreep visible-only body-only ext-plist pub-dir)
2046 "Export current buffer to a LaTeX file.
2048 If narrowing is active in the current buffer, only export its
2049 narrowed part.
2051 If a region is active, export that region.
2053 When optional argument SUBTREEP is non-nil, export the sub-tree
2054 at point, extracting information from the headline properties
2055 first.
2057 When optional argument VISIBLE-ONLY is non-nil, don't export
2058 contents of hidden elements.
2060 When optional argument BODY-ONLY is non-nil, only write code
2061 between \"\\begin{document}\" and \"\\end{document}\".
2063 EXT-PLIST, when provided, is a property list with external
2064 parameters overriding Org default settings, but still inferior to
2065 file-local settings.
2067 When optional argument PUB-DIR is set, use it as the publishing
2068 directory.
2070 Return output file's name."
2071 (interactive)
2072 (let ((outfile (org-export-output-file-name ".tex" subtreep pub-dir)))
2073 (org-export-to-file
2074 'e-latex outfile subtreep visible-only body-only ext-plist)))
2076 (defun org-e-latex-export-to-pdf
2077 (&optional subtreep visible-only body-only ext-plist pub-dir)
2078 "Export current buffer to LaTeX then process through to PDF.
2080 If narrowing is active in the current buffer, only export its
2081 narrowed part.
2083 If a region is active, export that region.
2085 When optional argument SUBTREEP is non-nil, export the sub-tree
2086 at point, extracting information from the headline properties
2087 first.
2089 When optional argument VISIBLE-ONLY is non-nil, don't export
2090 contents of hidden elements.
2092 When optional argument BODY-ONLY is non-nil, only write code
2093 between \"\\begin{document}\" and \"\\end{document}\".
2095 EXT-PLIST, when provided, is a property list with external
2096 parameters overriding Org default settings, but still inferior to
2097 file-local settings.
2099 When optional argument PUB-DIR is set, use it as the publishing
2100 directory.
2102 Return PDF file's name."
2103 (interactive)
2104 (org-e-latex-compile
2105 (org-e-latex-export-to-latex
2106 subtreep visible-only body-only ext-plist pub-dir)))
2108 (defun org-e-latex-compile (texfile)
2109 "Compile a TeX file.
2111 TEXFILE is the name of the file being compiled. Processing is
2112 done through the command specified in `org-e-latex-pdf-process'.
2114 Return PDF file name or an error if it couldn't be produced."
2115 (let* ((wconfig (current-window-configuration))
2116 (texfile (file-truename texfile))
2117 (base (file-name-sans-extension texfile))
2118 errors)
2119 (message (format "Processing LaTeX file %s ..." texfile))
2120 (unwind-protect
2121 (progn
2122 (cond
2123 ;; A function is provided: Apply it.
2124 ((functionp org-latex-to-pdf-process)
2125 (funcall org-latex-to-pdf-process (shell-quote-argument texfile)))
2126 ;; A list is provided: Replace %b, %f and %o with appropriate
2127 ;; values in each command before applying it. Output is
2128 ;; redirected to "*Org PDF LaTeX Output*" buffer.
2129 ((consp org-e-latex-pdf-process)
2130 (let* ((out-dir (or (file-name-directory texfile) "./"))
2131 (outbuf (get-buffer-create "*Org PDF LaTeX Output*")))
2132 (mapc
2133 (lambda (command)
2134 (shell-command
2135 (replace-regexp-in-string
2136 "%b" (shell-quote-argument base)
2137 (replace-regexp-in-string
2138 "%f" (shell-quote-argument texfile)
2139 (replace-regexp-in-string
2140 "%o" (shell-quote-argument out-dir) command)))
2141 outbuf))
2142 org-e-latex-pdf-process)
2143 ;; Collect standard errors from output buffer.
2144 (setq errors (org-e-latex-collect-errors outbuf))))
2145 (t (error "No valid command to process to PDF")))
2146 (let ((pdffile (concat base ".pdf")))
2147 ;; Check for process failure. Provide collected errors if
2148 ;; possible.
2149 (if (not (file-exists-p pdffile))
2150 (error (concat (format "PDF file %s wasn't produced" pdffile)
2151 (when errors (concat ": " errors))))
2152 ;; Else remove log files, when specified, and signal end of
2153 ;; process to user, along with any error encountered.
2154 (when org-e-latex-remove-logfiles
2155 (dolist (ext org-e-latex-logfiles-extensions)
2156 (let ((file (concat base "." ext)))
2157 (when (file-exists-p file) (delete-file file)))))
2158 (message (concat "Process completed"
2159 (if (not errors) "."
2160 (concat " with errors: " errors)))))
2161 ;; Return output file name.
2162 pdffile))
2163 (set-window-configuration wconfig))))
2165 (defun org-e-latex-collect-errors (buffer)
2166 "Collect some kind of errors from \"pdflatex\" command output.
2168 BUFFER is the buffer containing output.
2170 Return collected error types as a string, or nil if there was
2171 none."
2172 (with-current-buffer buffer
2173 (save-excursion
2174 (goto-char (point-max))
2175 ;; Find final "pdflatex" run.
2176 (when (re-search-backward "^[ \t]*This is pdf.*?TeX.*?Version" nil t)
2177 (let ((case-fold-search t)
2178 (errors ""))
2179 (when (save-excursion
2180 (re-search-forward "Reference.*?undefined" nil t))
2181 (setq errors (concat errors " [undefined reference]")))
2182 (when (save-excursion
2183 (re-search-forward "Citation.*?undefined" nil t))
2184 (setq errors (concat errors " [undefined citation]")))
2185 (when (save-excursion
2186 (re-search-forward "Undefined control sequence" nil t))
2187 (setq errors (concat errors " [undefined control sequence]")))
2188 (when (save-excursion
2189 (re-search-forward "^! LaTeX.*?Error" nil t))
2190 (setq errors (concat errors " [LaTeX error]")))
2191 (when (save-excursion
2192 (re-search-forward "^! Package.*?Error" nil t))
2193 (setq errors (concat errors " [package error]")))
2194 (and (org-string-nw-p errors) (org-trim errors)))))))
2197 (provide 'org-e-latex)
2198 ;;; org-e-latex.el ends here