1 ;;; org-latex.el --- LaTeX exporter for org-mode
3 ;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
5 ;; Emacs Lisp Archive Entry
6 ;; Filename: org-latex.el
7 ;; Author: Bastien Guerry <bzg AT gnu DOT org>
8 ;; Maintainer: Carsten Dominik <carsten.dominik AT gmail DOT com>
9 ;; Keywords: org, wp, tex
10 ;; Description: Converts an org-mode buffer into LaTeX
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; This library implements a LaTeX exporter for org-mode.
31 ;; It is part of Org and will be autoloaded
33 ;; The interactive functions are similar to those of the HTML exporter:
35 ;; M-x `org-export-as-latex'
36 ;; M-x `org-export-as-pdf'
37 ;; M-x `org-export-as-pdf-and-open'
38 ;; M-x `org-export-as-latex-batch'
39 ;; M-x `org-export-as-latex-to-buffer'
40 ;; M-x `org-export-region-as-latex'
41 ;; M-x `org-replace-region-by-latex'
55 (defvar org-export-latex-class nil
)
56 (defvar org-export-latex-class-options nil
)
57 (defvar org-export-latex-header nil
)
58 (defvar org-export-latex-append-header nil
)
59 (defvar org-export-latex-options-plist nil
)
60 (defvar org-export-latex-todo-keywords-1 nil
)
61 (defvar org-export-latex-complex-heading-re nil
)
62 (defvar org-export-latex-not-done-keywords nil
)
63 (defvar org-export-latex-done-keywords nil
)
64 (defvar org-export-latex-display-custom-times nil
)
65 (defvar org-export-latex-all-targets-re nil
)
66 (defvar org-export-latex-add-level
0)
67 (defvar org-export-latex-footmark-seen nil
68 "List of footnotes markers seen so far by exporter.")
69 (defvar org-export-latex-sectioning
"")
70 (defvar org-export-latex-sectioning-depth
0)
71 (defvar org-export-latex-special-keyword-regexp
72 (concat "\\<\\(" org-scheduled-string
"\\|"
73 org-deadline-string
"\\|"
74 org-closed-string
"\\)")
75 "Regexp matching special time planning keywords plus the time after it.")
76 (defvar org-re-quote
) ; dynamically scoped from org.el
77 (defvar org-commentsp
) ; dynamically scoped from org.el
81 (defgroup org-export-latex nil
82 "Options for exporting Org-mode files to LaTeX."
83 :tag
"Org Export LaTeX"
86 (defcustom org-export-latex-default-class
"article"
87 "The default LaTeX class."
88 :group
'org-export-latex
89 :type
'(string :tag
"LaTeX class"))
91 (defcustom org-export-latex-classes
93 "\\documentclass[11pt]{article}"
94 ("\\section{%s}" .
"\\section*{%s}")
95 ("\\subsection{%s}" .
"\\subsection*{%s}")
96 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")
97 ("\\paragraph{%s}" .
"\\paragraph*{%s}")
98 ("\\subparagraph{%s}" .
"\\subparagraph*{%s}"))
100 "\\documentclass[11pt]{report}"
101 ("\\part{%s}" .
"\\part*{%s}")
102 ("\\chapter{%s}" .
"\\chapter*{%s}")
103 ("\\section{%s}" .
"\\section*{%s}")
104 ("\\subsection{%s}" .
"\\subsection*{%s}")
105 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}"))
107 "\\documentclass[11pt]{book}"
108 ("\\part{%s}" .
"\\part*{%s}")
109 ("\\chapter{%s}" .
"\\chapter*{%s}")
110 ("\\section{%s}" .
"\\section*{%s}")
111 ("\\subsection{%s}" .
"\\subsection*{%s}")
112 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}"))
114 "\\documentclass{beamer}"
115 org-beamer-sectioning
117 "Alist of LaTeX classes and associated header and structure.
118 If #+LaTeX_CLASS is set in the buffer, use its value and the
119 associated information. Here is the structure of each cell:
123 (numbered-section . unnumbered-section\)
129 The HEADER-STRING is the header that will be inserted into the LaTeX file.
130 It should contain the \\documentclass macro, and anything else that is needed
131 for this setup. To this header, the following commands will be added:
133 - Calls to \\usepackage for all packages mentioned in the variables
134 `org-export-latex-default-packages-alist' and
135 `org-export-latex-packages-alist'. Thus, your header definitions should
136 avoid to also request these packages.
138 - Lines specified via \"#+LaTeX_HEADER:\"
140 If you need more control about the sequence in which the header is built
141 up, or if you want to exclude one of these building blocks for a particular
142 class, you can use the following macro-like placeholders.
144 [DEFAULT-PACKAGES] \\usepackage statements for default packages
145 [NO-DEFAULT-PACKAGES] do not include any of the default packages
146 [PACKAGES] \\usepackage statements for packages
147 [NO-PACKAGES] do not include the packages
148 [EXTRA] the stuff from #+LaTeX_HEADER
149 [NO-EXTRA] do not include #+LaTeX_HEADER stuff
150 [BEAMER-HEADER-EXTRA] the beamer extra headers
154 \\documentclass{article}
155 [NO-DEFAULT-PACKAGES]
157 \\providecommand{\\alert}[1]{\\textbf{#1}}
160 will omit the default packages, and will include the #+LaTeX_HEADER lines,
161 then have a call to \\providecommand, and then place \\usepackage commands
162 based on the content of `org-export-latex-packages-alist'.
164 If your header or `org-export-latex-default-packages-alist' inserts
165 \"\\usepackage[AUTO]{inputenc}\", AUTO will automatically be replaced with
166 a coding system derived from `buffer-file-coding-system'. See also the
167 variable `org-export-latex-inputenc-alist' for a way to influence this
170 The sectioning structure
171 ------------------------
173 The sectioning structure of the class is given by the elements following
174 the header string. For each sectioning level, a number of strings is
175 specified. A %s formatter is mandatory in each section string and will
176 be replaced by the title of the section.
178 Instead of a cons cell (numbered . unnumbered), you can also provide a list
181 (numbered-open numbered-close)
185 (numbered-open numbered-close unnumbered-open unnumbered-close)
187 providing opening and closing strings for a LaTeX environment that should
188 represent the document section. The opening clause should have a %s
189 to represent the section title.
191 Instead of a list of sectioning commands, you can also specify a
192 function name. That function will be called with two parameters,
193 the (reduced) level of the headline, and the headline text. The function
194 must return a cons cell with the (possibly modified) headline text, and the
195 sectioning list in the cdr."
196 :group
'org-export-latex
198 (list (string :tag
"LaTeX class")
199 (string :tag
"LaTeX header")
200 (repeat :tag
"Levels" :inline t
203 (string :tag
" numbered")
204 (string :tag
"unnumbered"))
205 (list :tag
"Environment"
206 (string :tag
"Opening (numbered)")
207 (string :tag
"Closing (numbered)")
208 (string :tag
"Opening (unnumbered)")
209 (string :tag
"Closing (unnumbered)"))
210 (function :tag
"Hook computing sectioning"))))))
212 (defcustom org-export-latex-inputenc-alist nil
213 "Alist of inputenc coding system names, and what should really be used.
214 For example, adding an entry
216 (\"utf8\" . \"utf8x\")
218 will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
219 are written as utf8 files."
220 :group
'org-export-latex
223 (string :tag
"Derived from buffer")
224 (string :tag
"Use this instead"))))
227 (defcustom org-export-latex-emphasis-alist
228 '(("*" "\\textbf{%s}" nil
)
229 ("/" "\\emph{%s}" nil
)
230 ("_" "\\underline{%s}" nil
)
232 ("=" "\\protectedtexttt" t
)
234 "Alist of LaTeX expressions to convert emphasis fontifiers.
235 Each element of the list is a list of three elements.
236 The first element is the character used as a marker for fontification.
237 The second element is a formatting string to wrap fontified text with.
238 If it is \"\\verb\", Org will automatically select a delimiter
239 character that is not in the string. \"\\protectedtexttt\" will use \\texttt
240 to typeset and try to protect special characters.
241 The third element decides whether to protect converted text from other
243 :group
'org-export-latex
246 (defcustom org-export-latex-title-command
"\\maketitle"
247 "The command used to insert the title just after \\begin{document}.
248 If this string contains the formatting specification \"%s\" then
249 it will be used as a formatting string, passing the title as an
251 :group
'org-export-latex
254 (defcustom org-export-latex-import-inbuffer-stuff nil
255 "Non-nil means define TeX macros for Org's inbuffer definitions.
256 For example \orgTITLE for #+TITLE."
257 :group
'org-export-latex
260 (defcustom org-export-latex-date-format
262 "Format string for \\date{...}."
263 :group
'org-export-latex
266 (defcustom org-export-latex-todo-keyword-markup
"\\textbf{%s}"
267 "Markup for TODO keywords, as a printf format.
268 This can be a single format for all keywords, a cons cell with separate
269 formats for not-done and done states, or an association list with setup
270 for individual keywords. If a keyword shows up for which there is no
271 markup defined, the first one in the association list will be used."
272 :group
'org-export-latex
274 (string :tag
"Default")
275 (cons :tag
"Distinguish undone and done"
276 (string :tag
"Not-DONE states")
277 (string :tag
"DONE states"))
278 (repeat :tag
"Per keyword markup"
280 (string :tag
"Keyword")
281 (string :tag
"Markup")))))
283 (defcustom org-export-latex-tag-markup
"\\textbf{%s}"
284 "Markup for tags, as a printf format."
285 :group
'org-export-latex
288 (defcustom org-export-latex-timestamp-markup
"\\textit{%s}"
289 "A printf format string to be applied to time stamps."
290 :group
'org-export-latex
293 (defcustom org-export-latex-timestamp-inactive-markup
"\\textit{%s}"
294 "A printf format string to be applied to inactive time stamps."
295 :group
'org-export-latex
298 (defcustom org-export-latex-timestamp-keyword-markup
"\\texttt{%s}"
299 "A printf format string to be applied to time stamps."
300 :group
'org-export-latex
303 (defcustom org-export-latex-href-format
"\\href{%s}{%s}"
304 "A printf format string to be applied to href links.
305 The format must contain either two %s instances or just one.
306 If it contains two %s instances, the first will be filled with
307 the link, the second with the link description. If it contains
308 only one, the %s will be filled with the link."
309 :group
'org-export-latex
312 (defcustom org-export-latex-hyperref-format
"\\hyperref[%s]{%s}"
313 "A printf format string to be applied to hyperref links.
314 The format must contain one or two %s instances. The first one
315 will be filled with the link, the second with its description."
316 :group
'org-export-latex
319 (defcustom org-export-latex-footnote-separator
"\\textsuperscript{,}\\,"
320 "Text used to separate footnotes."
321 :group
'org-export-latex
324 (defcustom org-export-latex-quotes
325 '(("fr" ("\\(\\s-\\|[[(]\\)\"" .
"«~") ("\\(\\S-\\)\"" .
"~»") ("\\(\\s-\\|(\\)'" .
"'"))
326 ("en" ("\\(\\s-\\|[[(]\\)\"" .
"``") ("\\(\\S-\\)\"" .
"''") ("\\(\\s-\\|(\\)'" .
"`")))
327 "Alist for quotes to use when converting english double-quotes.
329 The CAR of each item in this alist is the language code.
330 The CDR of each item in this alist is a list of three CONS:
331 - the first CONS defines the opening quote;
332 - the second CONS defines the closing quote;
333 - the last CONS defines single quotes.
335 For each item in a CONS, the first string is a regexp
336 for allowed characters before/after the quote, the second
337 string defines the replacement string for this quote."
338 :group
'org-export-latex
340 (cons :tag
"Opening quote"
341 (string :tag
"Regexp for char before")
342 (string :tag
"Replacement quote "))
343 (cons :tag
"Closing quote"
344 (string :tag
"Regexp for char after ")
345 (string :tag
"Replacement quote "))
346 (cons :tag
"Single quote"
347 (string :tag
"Regexp for char before")
348 (string :tag
"Replacement quote "))))
350 (defcustom org-export-latex-tables-verbatim nil
351 "When non-nil, tables are exported verbatim."
352 :group
'org-export-latex
355 (defcustom org-export-latex-tables-centered t
356 "When non-nil, tables are exported in a center environment."
357 :group
'org-export-latex
360 (defcustom org-export-latex-table-caption-above t
361 "When non-nil, the caption is set above the table. When nil,
362 the caption is set below the table."
363 :group
'org-export-latex
366 (defcustom org-export-latex-tables-column-borders nil
367 "When non-nil, grouping columns can cause outer vertical lines in tables.
368 When nil, grouping causes only separation lines between groups."
369 :group
'org-export-latex
372 (defcustom org-export-latex-low-levels
'itemize
373 "How to convert sections below the current level of sectioning.
374 This is specified by the `org-export-headline-levels' option or the
375 value of \"H:\" in Org's #+OPTION line.
377 This can be either nil (skip the sections), `description', `itemize',
378 or `enumerate' (convert the sections as the corresponding list type), or
379 a string to be used instead of \\section{%s}. In this latter case,
380 the %s stands here for the inserted headline and is mandatory.
382 It may also be a list of three string to define a user-defined environment
383 that should be used. The first string should be the like
384 \"\\begin{itemize}\", the second should be like \"\\item %s %s\" with up
385 to two occurrences of %s for the title and a label, respectively. The third
386 string should be like \"\\end{itemize\"."
387 :group
'org-export-latex
388 :type
'(choice (const :tag
"Ignore" nil
)
389 (const :tag
"Convert as descriptive list" description
)
390 (const :tag
"Convert as itemized list" itemize
)
391 (const :tag
"Convert as enumerated list" enumerate
)
392 (list :tag
"User-defined environment"
393 :value
("\\begin{itemize}" "\\end{itemize}" "\\item %s")
394 (string :tag
"Start")
396 (string :tag
"item"))
397 (string :tag
"Use a section string" :value
"\\subparagraph{%s}")))
399 (defcustom org-export-latex-list-parameters
400 '(:cbon
"$\\boxtimes$" :cboff
"$\\Box$" :cbtrans
"$\\boxminus$")
401 "Parameters for the LaTeX list exporter.
402 These parameters will be passed on to `org-list-to-latex', which in turn
403 will pass them (combined with the LaTeX default list parameters) to
404 `org-list-to-generic'."
405 :group
'org-export-latex
408 (defcustom org-export-latex-verbatim-wrap
409 '("\\begin{verbatim}\n" .
"\\end{verbatim}")
410 "Environment to be wrapped around a fixed-width section in LaTeX export.
411 This is a cons with two strings, to be added before and after the
414 Defaults to \\begin{verbatim} and \\end{verbatim}."
415 :group
'org-export-translation
416 :group
'org-export-latex
417 :type
'(cons (string :tag
"Open")
418 (string :tag
"Close")))
420 (defcustom org-export-latex-listings nil
421 "Non-nil means export source code using the listings package.
422 This package will fontify source code, possibly even with color.
423 If you want to use this, you also need to make LaTeX use the
424 listings package, and if you want to have color, the color
425 package. Just add these to `org-export-latex-packages-alist',
426 for example using customize, or with something like
429 (add-to-list 'org-export-latex-packages-alist '(\"\" \"listings\"))
430 (add-to-list 'org-export-latex-packages-alist '(\"\" \"color\"))
434 (setq org-export-latex-listings 'minted)
436 causes source code to be exported using the minted package as
437 opposed to listings. If you want to use minted, you need to add
438 the minted package to `org-export-latex-packages-alist', for
439 example using customize, or with
442 (add-to-list 'org-export-latex-packages-alist '(\"\" \"minted\"))
444 In addition, it is necessary to install
445 pygments (http://pygments.org), and to configure the variable
446 `org-latex-to-pdf-process' so that the -shell-escape option is
449 :group
'org-export-latex
452 (defcustom org-export-latex-listings-langs
453 '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
456 (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
457 (html "HTML") (xml "XML")
458 (tex "TeX") (latex "TeX")
459 (shell-script "bash")
461 (ocaml "Caml") (caml "Caml")
462 (sql "SQL") (sqlite "sql"))
463 "Alist mapping languages to their listing language counterpart.
464 The key is a symbol, the major mode symbol without the \"-mode\".
465 The value is the string that should be inserted as the language parameter
466 for the listings package. If the mode name and the listings name are
467 the same, the language does not need an entry in this list - but it does not
468 hurt if it is present."
469 :group
'org-export-latex
472 (symbol :tag
"Major mode ")
473 (string :tag
"Listings language"))))
475 (defcustom org-export-latex-listings-w-names t
476 "Non-nil means export names of named code blocks.
477 Code blocks exported with the listings package (controlled by the
478 `org-export-latex-listings' variable) can be named in the style
480 :group
'org-export-latex
483 (defcustom org-export-latex-minted-langs
484 '((emacs-lisp "common-lisp")
487 (shell-script "bash")
489 "Alist mapping languages to their minted language counterpart.
490 The key is a symbol, the major mode symbol without the \"-mode\".
491 The value is the string that should be inserted as the language parameter
492 for the minted package. If the mode name and the listings name are
493 the same, the language does not need an entry in this list - but it does not
494 hurt if it is present.
496 Note that minted uses all lower case for language identifiers,
497 and that the full list of language identifiers can be obtained
501 :group
'org-export-latex
504 (symbol :tag
"Major mode ")
505 (string :tag
"Listings language"))))
507 (defcustom org-export-latex-listings-options nil
508 "Association list of options for the latex listings package.
510 These options are supplied as a comma-separated list to the
511 \\lstset command. Each element of the association list should be
512 a list containing two strings: the name of the option, and the
515 (setq org-export-latex-listings-options
516 '((\"basicstyle\" \"\\small\")
517 (\"keywordstyle\" \"\\color{black}\\bfseries\\underbar\")))
519 will typeset the code in a small size font with underlined, bold
522 Note that the same options will be applied to blocks of all
524 :group
'org-export-latex
527 (string :tag
"Listings option name ")
528 (string :tag
"Listings option value"))))
530 (defcustom org-export-latex-minted-options nil
531 "Association list of options for the latex minted package.
533 These options are supplied within square brackets in
534 \\begin{minted} environments. Each element of the alist should be
535 a list containing two strings: the name of the option, and the
538 (setq org-export-latex-minted-options
539 '((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
541 will result in src blocks being exported with
543 \\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
545 as the start of the minted environment. Note that the same
546 options will be applied to blocks of all languages."
547 :group
'org-export-latex
550 (string :tag
"Minted option name ")
551 (string :tag
"Minted option value"))))
553 (defvar org-export-latex-custom-lang-environments nil
554 "Association list mapping languages to language-specific latex
555 environments used during export of src blocks by the listings
556 and minted latex packages. For example,
558 (setq org-export-latex-custom-lang-environments
559 '((python \"pythoncode\")))
561 would have the effect that if org encounters begin_src python
562 during latex export it will output
568 (defcustom org-export-latex-remove-from-headlines
569 '(:todo nil
:priority nil
:tags nil
)
570 "A plist of keywords to remove from headlines. OBSOLETE.
571 Non-nil means remove this keyword type from the headline.
573 Don't remove the keys, just change their values.
575 Obsolete, this variable is no longer used. Use the separate
576 variables `org-export-with-todo-keywords', `org-export-with-priority',
577 and `org-export-with-tags' instead."
579 :group
'org-export-latex
)
581 (defcustom org-export-latex-image-default-option
"width=.9\\linewidth"
582 "Default option for images."
583 :group
'org-export-latex
586 (defcustom org-latex-default-figure-position
"htb"
587 "Default position for latex figures."
588 :group
'org-export-latex
591 (defcustom org-export-latex-tabular-environment
"tabular"
592 "Default environment used to build tables."
593 :group
'org-export-latex
596 (defcustom org-export-latex-inline-image-extensions
597 '("pdf" "jpeg" "jpg" "png" "ps" "eps")
598 "Extensions of image files that can be inlined into LaTeX.
599 Note that the image extension *actually* allowed depend on the way the
600 LaTeX file is processed. When used with pdflatex, pdf, jpg and png images
601 are OK. When processing through dvi to Postscript, only ps and eps are
602 allowed. The default we use here encompasses both."
603 :group
'org-export-latex
604 :type
'(repeat (string :tag
"Extension")))
606 (defcustom org-export-latex-coding-system nil
607 "Coding system for the exported LaTeX file."
608 :group
'org-export-latex
609 :type
'coding-system
)
611 (defgroup org-export-pdf nil
612 "Options for exporting Org-mode files to PDF, via LaTeX."
613 :tag
"Org Export PDF"
614 :group
'org-export-latex
617 (defcustom org-latex-to-pdf-process
618 '("pdflatex -interaction nonstopmode -output-directory %o %f"
619 "pdflatex -interaction nonstopmode -output-directory %o %f"
620 "pdflatex -interaction nonstopmode -output-directory %o %f")
621 "Commands to process a LaTeX file to a PDF file.
622 This is a list of strings, each of them will be given to the shell
623 as a command. %f in the command will be replaced by the full file name, %b
624 by the file base name (i.e. without extension) and %o by the base directory
627 The reason why this is a list is that it usually takes several runs of
628 `pdflatex', maybe mixed with a call to `bibtex'. Org does not have a clever
629 mechanism to detect which of these commands have to be run to get to a stable
630 result, and it also does not do any error checking.
632 By default, Org uses 3 runs of `pdflatex' to do the processing. If you
633 have texi2dvi on your system and if that does not cause the infamous
636 http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
638 then `texi2dvi' is the superior choice. Org does offer it as one
639 of the customize options.
641 Alternatively, this may be a Lisp function that does the processing, so you
642 could use this to apply the machinery of AUCTeX or the Emacs LaTeX mode.
643 This function should accept the file name as its single argument."
644 :group
'org-export-pdf
646 (repeat :tag
"Shell command sequence"
647 (string :tag
"Shell command"))
648 (const :tag
"2 runs of pdflatex"
649 ("pdflatex -interaction nonstopmode -output-directory %o %f"
650 "pdflatex -interaction nonstopmode -output-directory %o %f"))
651 (const :tag
"3 runs of pdflatex"
652 ("pdflatex -interaction nonstopmode -output-directory %o %f"
653 "pdflatex -interaction nonstopmode -output-directory %o %f"
654 "pdflatex -interaction nonstopmode -output-directory %o %f"))
655 (const :tag
"pdflatex,bibtex,pdflatex,pdflatex"
656 ("pdflatex -interaction nonstopmode -output-directory %o %f"
658 "pdflatex -interaction nonstopmode -output-directory %o %f"
659 "pdflatex -interaction nonstopmode -output-directory %o %f"))
660 (const :tag
"texi2dvi"
661 ("texi2dvi -p -b -c -V %f"))
663 ("rubber -d --into %o %f"))
666 (defcustom org-export-pdf-logfiles
667 '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb")
668 "The list of file extensions to consider as LaTeX logfiles."
669 :group
'org-export-pdf
670 :type
'(repeat (string :tag
"Extension")))
672 (defcustom org-export-pdf-remove-logfiles t
673 "Non-nil means remove the logfiles produced by PDF production.
674 These are the .aux, .log, .out, and .toc files."
675 :group
'org-export-pdf
680 (defvar org-export-latex-after-initial-vars-hook nil
681 "Hook run before LaTeX export.
682 The exact moment is after the initial variables like org-export-latex-class
683 have been determined from the environment.")
685 (defvar org-export-latex-after-blockquotes-hook nil
686 "Hook run during LaTeX export, after blockquote, verse, center are done.")
688 (defvar org-export-latex-final-hook nil
689 "Hook run in the finalized LaTeX buffer.")
691 (defvar org-export-latex-after-save-hook nil
692 "Hook run in the finalized LaTeX buffer, after it has been saved.")
694 ;;; Autoload functions:
697 (defun org-export-as-latex-batch ()
698 "Call `org-export-as-latex', may be used in batch processing.
702 --load=$HOME/lib/emacs/org.el
703 --eval \"(setq org-export-headline-levels 2)\"
704 --visit=MyFile --funcall org-export-as-latex-batch"
705 (org-export-as-latex org-export-headline-levels
'hidden
))
708 (defun org-export-as-latex-to-buffer (arg)
709 "Call `org-export-as-latex` with output to a temporary buffer.
710 No file is created. The prefix ARG is passed through to `org-export-as-latex'."
712 (org-export-as-latex arg nil nil
"*Org LaTeX Export*")
713 (when org-export-show-temporary-export-buffer
714 (switch-to-buffer-other-window "*Org LaTeX Export*")))
717 (defun org-replace-region-by-latex (beg end
)
718 "Replace the region from BEG to END with its LaTeX export.
719 It assumes the region has `org-mode' syntax, and then convert it to
720 LaTeX. This can be used in any buffer. For example, you could
721 write an itemized list in `org-mode' syntax in an LaTeX buffer and
722 then use this command to convert it."
725 (save-window-excursion
726 (if (eq major-mode
'org-mode
)
727 (setq latex
(org-export-region-as-latex
729 (setq reg
(buffer-substring beg end
)
730 buf
(get-buffer-create "*Org tmp*"))
731 (with-current-buffer buf
735 (setq latex
(org-export-region-as-latex
736 (point-min) (point-max) t
'string
)))
738 (delete-region beg end
)
742 (defun org-export-region-as-latex (beg end
&optional body-only buffer
)
743 "Convert region from BEG to END in `org-mode' buffer to LaTeX.
744 If prefix arg BODY-ONLY is set, omit file header, footer, and table of
745 contents, and only produce the region of converted text, useful for
746 cut-and-paste operations.
747 If BUFFER is a buffer or a string, use/create that buffer as a target
748 of the converted LaTeX. If BUFFER is the symbol `string', return the
749 produced LaTeX as a string and leave no buffer behind. For example,
750 a Lisp program could call this function in the following way:
752 (setq latex (org-export-region-as-latex beg end t 'string))
754 When called interactively, the output buffer is selected, and shown
755 in a window. A non-interactive call will only return the buffer."
757 (when (org-called-interactively-p 'any
)
758 (setq buffer
"*Org LaTeX Export*"))
759 (let ((transient-mark-mode t
) (zmacs-regions t
)
761 (setq ext-plist
(plist-put ext-plist
:ignore-subtree-p t
))
763 (set-mark (point)) ;; to activate the region
765 (setq rtn
(org-export-as-latex
768 (if (fboundp 'deactivate-mark
) (deactivate-mark))
769 (if (and (org-called-interactively-p 'any
) (bufferp rtn
))
770 (switch-to-buffer-other-window rtn
)
774 (defun org-export-as-latex (arg &optional hidden ext-plist
775 to-buffer body-only pub-dir
)
776 "Export current buffer to a LaTeX file.
777 If there is an active region, export only the region. The prefix
778 ARG specifies how many levels of the outline should become
779 headlines. The default is 3. Lower levels will be exported
780 depending on `org-export-latex-low-levels'. The default is to
781 convert them as description lists.
782 HIDDEN is obsolete and does nothing.
783 EXT-PLIST is a property list with
784 external parameters overriding org-mode's default settings, but
785 still inferior to file-local settings. When TO-BUFFER is
786 non-nil, create a buffer with that name and export to that
787 buffer. If TO-BUFFER is the symbol `string', don't leave any
788 buffer behind but just return the resulting LaTeX as a string.
789 When BODY-ONLY is set, don't produce the file header and footer,
790 simply return the content of \\begin{document}...\\end{document},
791 without even the \\begin{document} and \\end{document} commands.
792 when PUB-DIR is set, use this as the publishing directory."
794 (when (and (not body-only
) arg
(listp arg
)) (setq body-only t
))
795 (run-hooks 'org-export-first-hook
)
797 ;; Make sure we have a file name when we need it.
798 (when (and (not (or to-buffer body-only
))
799 (not buffer-file-name
))
800 (if (buffer-base-buffer)
801 (org-set-local 'buffer-file-name
802 (with-current-buffer (buffer-base-buffer)
804 (error "Need a file name to be able to export")))
806 (message "Exporting to LaTeX...")
808 (let ((inhibit-read-only t
))
809 (remove-text-properties (point-min) (point-max)
810 '(:org-license-to-kill nil
))))
811 (org-update-radio-target-regexp)
812 (org-export-latex-set-initial-vars ext-plist arg
)
813 (setq org-export-opt-plist org-export-latex-options-plist
814 org-export-footnotes-data
(org-footnote-all-labels 'with-defs
)
815 org-export-footnotes-seen nil
816 org-export-latex-footmark-seen nil
)
817 (org-install-letbind)
818 (run-hooks 'org-export-latex-after-initial-vars-hook
)
819 (let* ((wcf (current-window-configuration))
821 (org-export-process-option-filters org-export-latex-options-plist
))
822 (region-p (org-region-active-p))
823 (rbeg (and region-p
(region-beginning)))
824 (rend (and region-p
(region-end)))
826 (if (plist-get opt-plist
:ignore-subtree-p
)
831 (and (org-at-heading-p)
832 (>= (org-end-of-subtree t t
) rend
))))))
833 (opt-plist (setq org-export-opt-plist
835 (org-export-add-subtree-options opt-plist rbeg
)
837 ;; Make sure the variable contains the updated values.
838 (org-export-latex-options-plist (setq org-export-opt-plist opt-plist
))
839 ;; The following two are dynamically scoped into other
841 (org-current-export-dir
842 (or pub-dir
(org-export-directory :html opt-plist
)))
843 (org-current-export-file buffer-file-name
)
844 (title (or (and subtree-p
(org-export-get-title-from-subtree))
845 (plist-get opt-plist
:title
)
847 (plist-get opt-plist
:skip-before-1st-heading
))
848 (org-export-grab-title-from-buffer))
849 (and buffer-file-name
850 (file-name-sans-extension
851 (file-name-nondirectory buffer-file-name
)))
856 (file-name-as-directory
858 (org-export-directory :LaTeX org-export-latex-options-plist
)))
859 (file-name-sans-extension
861 (org-entry-get rbeg
"EXPORT_FILE_NAME" t
))
862 (file-name-nondirectory ;sans-extension
864 (error "Don't know which export file to use")))))
868 (if (equal (file-truename filename
)
869 (file-truename (or buffer-file-name
"dummy.org")))
870 (concat filename
".tex")
872 (auto-insert nil
); Avoid any auto-insert stuff for the new file
873 (TeX-master (boundp 'TeX-master
))
874 (buffer (if to-buffer
876 ((eq to-buffer
'string
) (get-buffer-create
877 "*Org LaTeX Export*"))
878 (t (get-buffer-create to-buffer
)))
879 (find-file-noselect filename
)))
880 (odd org-odd-levels-only
)
881 (header (org-export-latex-make-header title opt-plist
))
882 (skip (cond (subtree-p nil
)
884 (t (plist-get opt-plist
:skip-before-1st-heading
))))
885 (text (plist-get opt-plist
:text
))
886 (org-export-preprocess-hook
888 `(lambda () (org-set-local 'org-complex-heading-regexp
889 ,org-export-latex-complex-heading-re
))
890 org-export-preprocess-hook
))
891 (first-lines (if skip
"" (org-export-latex-first-lines
898 (if region-p rend
))))
899 (coding-system (and (boundp 'buffer-file-coding-system
)
900 buffer-file-coding-system
))
901 (coding-system-for-write (or org-export-latex-coding-system
903 (save-buffer-coding-system (or org-export-latex-coding-system
905 (region (buffer-substring
906 (if region-p
(region-beginning) (point-min))
907 (if region-p
(region-end) (point-max))))
909 (and text
(string-match "\\S-" text
)
910 (org-export-preprocess-string
915 :tags
(plist-get opt-plist
:tags
)
916 :priority
(plist-get opt-plist
:priority
)
917 :footnotes
(plist-get opt-plist
:footnotes
)
918 :drawers
(plist-get opt-plist
:drawers
)
919 :timestamps
(plist-get opt-plist
:timestamps
)
920 :todo-keywords
(plist-get opt-plist
:todo-keywords
)
921 :tasks
(plist-get opt-plist
:tasks
)
923 :skip-before-1st-heading skip
926 :LaTeX-fragments nil
)))
928 (org-export-preprocess-string
933 :tags
(plist-get opt-plist
:tags
)
934 :priority
(plist-get opt-plist
:priority
)
935 :footnotes
(plist-get opt-plist
:footnotes
)
936 :drawers
(plist-get opt-plist
:drawers
)
937 :timestamps
(plist-get opt-plist
:timestamps
)
938 :todo-keywords
(plist-get opt-plist
:todo-keywords
)
939 :tasks
(plist-get opt-plist
:tasks
)
940 :add-text
(if (eq to-buffer
'string
) nil text
)
941 :skip-before-1st-heading skip
942 :select-tags
(plist-get opt-plist
:select-tags
)
943 :exclude-tags
(plist-get opt-plist
:exclude-tags
)
944 :LaTeX-fragments nil
)))
948 (org-install-letbind)
950 (and (fboundp 'set-buffer-file-coding-system
)
951 (set-buffer-file-coding-system coding-system-for-write
))
953 ;; insert the header and initial document commands
954 (unless (or (eq to-buffer
'string
) body-only
)
957 ;; insert text found in #+TEXT
958 (when (and text
(not (eq to-buffer
'string
)))
959 (insert (org-export-latex-content
960 text
'(lists tables fixed-width keywords
))
963 ;; insert lines before the first headline
964 (unless (or skip
(string-match "^\\*" first-lines
))
965 (insert first-lines
))
967 ;; export the content of headlines
968 (org-export-latex-global
970 (insert string-for-export
)
971 (goto-char (point-min))
972 (when (re-search-forward "^\\(\\*+\\) " nil t
)
973 (let* ((asters (length (match-string 1)))
974 (level (if odd
(- asters
2) (- asters
1))))
975 (setq org-export-latex-add-level
976 (if odd
(1- (/ (1+ asters
) 2)) (1- asters
)))
977 (org-export-latex-parse-global level odd
)))))
980 (unless body-only
(insert "\n\\end{document}"))
982 ;; Attach description terms to the \item macro
983 (goto-char (point-min))
984 (while (re-search-forward "^[ \t]*\\\\item\\([ \t]+\\)\\[" nil t
)
985 (delete-region (match-beginning 1) (match-end 1)))
987 ;; Relocate the table of contents
988 (goto-char (point-min))
989 (when (re-search-forward "\\[TABLE-OF-CONTENTS\\]" nil t
)
990 (goto-char (point-min))
991 (while (re-search-forward "\\\\tableofcontents\\>[ \t]*\n?" nil t
)
993 (goto-char (point-min))
994 (and (re-search-forward "\\[TABLE-OF-CONTENTS\\]" nil t
)
995 (replace-match "\\tableofcontents" t t
)))
997 ;; Cleanup forced line ends in items where they are not needed
998 (goto-char (point-min))
999 (while (re-search-forward
1000 "^[ \t]*\\\\item\\>.*\\(\\\\\\\\\\)[ \t]*\\(\n\\\\label.*\\)*\n\\\\begin"
1002 (delete-region (match-beginning 1) (match-end 1)))
1003 (goto-char (point-min))
1004 (while (re-search-forward
1005 "^[ \t]*\\\\item\\>.*\\(\\\\\\\\\\)[ \t]*\\(\n\\\\label.*\\)*"
1007 (if (looking-at "[\n \t]+")
1008 (replace-match "\n")))
1010 (run-hooks 'org-export-latex-final-hook
)
1012 (unless (eq major-mode
'latex-mode
) (latex-mode))
1014 (org-export-latex-fix-inputenc)
1015 (run-hooks 'org-export-latex-after-save-hook
)
1016 (goto-char (point-min))
1017 (or (org-export-push-to-kill-ring "LaTeX")
1018 (message "Exporting to LaTeX...done"))
1020 (if (eq to-buffer
'string
)
1021 (prog1 (buffer-substring (point-min) (point-max))
1022 (kill-buffer (current-buffer)))
1024 (set-window-configuration wcf
))))
1027 (defun org-export-as-pdf (arg &optional hidden ext-plist
1028 to-buffer body-only pub-dir
)
1029 "Export as LaTeX, then process through to PDF."
1031 (message "Exporting to PDF...")
1032 (let* ((wconfig (current-window-configuration))
1033 (lbuf (org-export-as-latex arg hidden ext-plist
1034 to-buffer body-only pub-dir
))
1035 (file (buffer-file-name lbuf
))
1036 (base (file-name-sans-extension (buffer-file-name lbuf
)))
1037 (pdffile (concat base
".pdf"))
1038 (cmds (if (eq org-export-latex-listings
'minted
)
1039 ;; automatically add -shell-escape when needed
1040 (mapcar (lambda (cmd)
1041 (replace-regexp-in-string
1042 "pdflatex " "pdflatex -shell-escape " cmd
))
1043 org-latex-to-pdf-process
)
1044 org-latex-to-pdf-process
))
1045 (outbuf (get-buffer-create "*Org PDF LaTeX Output*"))
1046 (bibtex-p (with-current-buffer lbuf
1048 (goto-char (point-min))
1049 (re-search-forward "\\\\bibliography{" nil t
))))
1050 cmd output-dir errors
)
1051 (with-current-buffer outbuf
(erase-buffer))
1052 (message (concat "Processing LaTeX file " file
"..."))
1053 (setq output-dir
(file-name-directory file
))
1054 (with-current-buffer lbuf
1056 (if (and cmds
(symbolp cmds
))
1057 (funcall cmds
(shell-quote-argument file
))
1059 (setq cmd
(pop cmds
))
1060 (while (string-match "%b" cmd
)
1061 (setq cmd
(replace-match
1063 (shell-quote-argument base
))
1065 (while (string-match "%f" cmd
)
1066 (setq cmd
(replace-match
1068 (shell-quote-argument file
))
1070 (while (string-match "%o" cmd
)
1071 (setq cmd
(replace-match
1073 (shell-quote-argument output-dir
))
1075 (shell-command cmd outbuf
)))))
1076 (message (concat "Processing LaTeX file " file
"...done"))
1077 (setq errors
(org-export-latex-get-error outbuf
))
1078 (if (not (file-exists-p pdffile
))
1079 (error (concat "PDF file " pdffile
" was not produced"
1080 (if errors
(concat ":" errors
"") "")))
1081 (set-window-configuration wconfig
)
1082 (when org-export-pdf-remove-logfiles
1083 (dolist (ext org-export-pdf-logfiles
)
1084 (setq file
(concat base
"." ext
))
1085 (and (file-exists-p file
) (delete-file file
))))
1087 "Exporting to PDF...done"
1089 (concat ", with some errors:" errors
)
1093 (defun org-export-latex-get-error (buf)
1094 "Collect the kinds of errors that remain in pdflatex processing."
1095 (with-current-buffer buf
1097 (goto-char (point-max))
1098 (when (re-search-backward "^[ \t]*This is pdf.*?TeX.*?Version" nil t
)
1099 ;; OK, we are at the location of the final run
1100 (let ((pos (point)) (errors "") (case-fold-search t
))
1101 (if (re-search-forward "Reference.*?undefined" nil t
)
1102 (setq errors
(concat errors
" [undefined reference]")))
1104 (if (re-search-forward "Citation.*?undefined" nil t
)
1105 (setq errors
(concat errors
" [undefined citation]")))
1107 (if (re-search-forward "Undefined control sequence" nil t
)
1108 (setq errors
(concat errors
" [undefined control sequence]")))
1109 (and (org-string-nw-p errors
) errors
))))))
1112 (defun org-export-as-pdf-and-open (arg)
1113 "Export as LaTeX, then process through to PDF, and open."
1115 (let ((pdffile (org-export-as-pdf arg
)))
1118 (org-open-file pdffile
)
1119 (when org-export-kill-product-buffer-when-displayed
1120 (kill-buffer (find-buffer-visiting
1121 (concat (file-name-sans-extension (buffer-file-name))
1123 (error "PDF file was not produced"))))
1125 ;;; Parsing functions:
1127 (defun org-export-latex-parse-global (level odd
)
1128 "Parse the current buffer recursively, starting at LEVEL.
1129 If ODD is non-nil, assume the buffer only contains odd sections.
1130 Return a list reflecting the document structure."
1132 (goto-char (point-min))
1133 (let* ((cnt 0) output
1134 (depth org-export-latex-sectioning-depth
))
1135 (while (org-re-search-forward-unprotected
1136 (concat "^\\(\\(?:\\*\\)\\{"
1137 (number-to-string (+ (if odd
2 1) level
))
1139 ;; make sure that there is no upper heading
1143 (org-re-search-forward-unprotected
1144 (concat "^\\(\\(?:\\*\\)\\{"
1145 (number-to-string level
)
1146 "\\}\\) \\(.*\\)$") nil t
)))) t
)
1148 (let* ((pos (match-beginning 0))
1149 (heading (match-string 2))
1150 (nlevel (if odd
(/ (+ 3 level
) 2) (1+ level
))))
1155 (if (org-re-search-forward-unprotected
1156 (concat "^\\(\\(?:\\*\\)\\{"
1157 (number-to-string (+ (if odd
2 1) level
))
1158 "\\}\\) \\(.*\\)$") nil t
)
1161 (goto-char (point-min))
1169 `(heading .
,heading
)
1170 `(content .
,(org-export-latex-parse-content))
1171 `(subcontent .
,(org-export-latex-parse-subcontent
1176 (defun org-export-latex-parse-content ()
1177 "Extract the content of a section."
1179 (end (if (org-re-search-forward-unprotected "^\\(\\*\\)+ .*$" nil t
)
1180 (progn (beginning-of-line) (point))
1182 (buffer-substring beg end
)))
1184 (defun org-export-latex-parse-subcontent (level odd
)
1185 "Extract the subcontent of a section at LEVEL.
1186 If ODD Is non-nil, assume subcontent only contains odd sections."
1187 (if (not (org-re-search-forward-unprotected
1188 (concat "^\\(\\(?:\\*\\)\\{"
1189 (number-to-string (+ (if odd
4 2) level
))
1192 nil
; subcontent is nil
1193 (org-export-latex-parse-global (+ (if odd
2 1) level
) odd
)))
1195 ;;; Rendering functions:
1196 (defun org-export-latex-global (content)
1197 "Export CONTENT to LaTeX.
1198 CONTENT is an element of the list produced by
1199 `org-export-latex-parse-global'."
1200 (if (eq (car content
) 'subcontent
)
1201 (mapc 'org-export-latex-sub
(cdr content
))
1202 (org-export-latex-sub (car content
))))
1204 (defun org-export-latex-sub (subcontent)
1205 "Export the list SUBCONTENT to LaTeX.
1206 SUBCONTENT is an alist containing information about the headline
1208 (let ((num (plist-get org-export-latex-options-plist
:section-numbers
)))
1209 (mapc (lambda(x) (org-export-latex-subcontent x num
)) subcontent
)))
1211 (defun org-export-latex-subcontent (subcontent num
)
1212 "Export each cell of SUBCONTENT to LaTeX.
1213 If NUM is non-nil export numbered sections, otherwise use unnumbered
1214 sections. If NUM is an integer, export the highest NUM levels as
1215 numbered sections and lower levels as unnumbered sections."
1216 (let* ((heading (cdr (assoc 'heading subcontent
)))
1217 (level (- (cdr (assoc 'level subcontent
))
1218 org-export-latex-add-level
))
1219 (occur (number-to-string (cdr (assoc 'occur subcontent
))))
1220 (content (cdr (assoc 'content subcontent
)))
1221 (subcontent (cadr (assoc 'subcontent subcontent
)))
1222 (label (org-get-text-property-any 0 'target heading
))
1223 (label-list (cons label
(cdr (assoc label
1224 org-export-target-aliases
))))
1225 (sectioning org-export-latex-sectioning
)
1226 (depth org-export-latex-sectioning-depth
)
1227 main-heading sub-heading
)
1228 (when (symbolp (car sectioning
))
1229 (setq sectioning
(funcall (car sectioning
) level heading
))
1231 (setq heading
(car sectioning
)
1232 sectioning
(cdr sectioning
)
1233 ;; target property migh have changed...
1234 label
(org-get-text-property-any 0 'target heading
)
1235 label-list
(cons label
(cdr (assoc label
1236 org-export-target-aliases
)))))
1237 (if sectioning
(setq sectioning
(make-list 10 sectioning
)))
1238 (setq depth
(if sectioning
10000 0)))
1239 (if (string-match "[ \t]*\\\\\\\\[ \t]*" heading
)
1240 (setq main-heading
(substring heading
0 (match-beginning 0))
1241 sub-heading
(substring heading
(match-end 0))))
1242 (setq heading
(org-export-latex-fontify-headline heading
)
1243 sub-heading
(and sub-heading
1244 (org-export-latex-fontify-headline sub-heading
))
1245 main-heading
(and main-heading
1246 (org-export-latex-fontify-headline main-heading
)))
1248 ;; Normal conversion
1250 (let* ((sec (nth (1- level
) sectioning
))
1251 (num (if (integerp num
)
1255 (if (consp (cdr sec
))
1256 (setq start
(nth (if num
0 2) sec
)
1257 end
(nth (if num
1 3) sec
))
1258 (setq start
(if num
(car sec
) (cdr sec
))))
1259 (insert (format start
(if main-heading main-heading heading
)
1260 (or sub-heading
"")))
1263 (insert (mapconcat (lambda (l) (format "\\label{%s}" l
))
1264 label-list
"\n") "\n"))
1265 (insert (org-export-latex-content content
))
1266 (cond ((stringp subcontent
) (insert subcontent
))
1268 (while (org-looking-back "\n\n") (backward-delete-char 1))
1269 (org-export-latex-sub subcontent
)))
1270 (when (and end
(string-match "[^ \t]" end
))
1271 (let ((hook (org-get-text-property-any 0 'org-insert-hook end
)))
1272 (and (functionp hook
) (funcall hook
)))
1273 (insert end
"\n"))))
1274 ;; At a level under the hl option: we can drop this subsection
1276 (cond ((eq org-export-latex-low-levels
'description
)
1277 (if (string-match "% ends low level$"
1278 (buffer-substring (point-at-bol 0) (point)))
1279 (delete-region (point-at-bol 0) (point))
1280 (insert "\\begin{description}\n"))
1281 (insert (format "\n\\item[%s]%s~\n"
1283 (if label
(format "\\label{%s}" label
) "")))
1284 (insert (org-export-latex-content content
))
1285 (cond ((stringp subcontent
) (insert subcontent
))
1286 ((listp subcontent
) (org-export-latex-sub subcontent
)))
1287 (insert "\\end{description} % ends low level\n"))
1288 ((memq org-export-latex-low-levels
'(itemize enumerate
))
1289 (if (string-match "% ends low level$"
1290 (buffer-substring (point-at-bol 0) (point)))
1291 (delete-region (point-at-bol 0) (point))
1292 (insert (format "\\begin{%s}\n"
1293 (symbol-name org-export-latex-low-levels
))))
1294 (insert (format "\n\\item %s\\\\\n%s%%"
1296 (if label
(format "\\label{%s}" label
) "")))
1297 (insert (org-export-latex-content content
))
1298 (cond ((stringp subcontent
) (insert subcontent
))
1299 ((listp subcontent
) (org-export-latex-sub subcontent
)))
1300 (insert (format "\\end{%s} %% ends low level\n"
1301 (symbol-name org-export-latex-low-levels
))))
1303 ((listp org-export-latex-low-levels
)
1304 (if (string-match "% ends low level$"
1305 (buffer-substring (point-at-bol 0) (point)))
1306 (delete-region (point-at-bol 0) (point))
1307 (insert (car org-export-latex-low-levels
) "\n"))
1308 (insert (format (nth 2 org-export-latex-low-levels
)
1310 (if label
(format "\\label{%s}" label
) "")))
1311 (insert (org-export-latex-content content
))
1312 (cond ((stringp subcontent
) (insert subcontent
))
1313 ((listp subcontent
) (org-export-latex-sub subcontent
)))
1314 (insert (nth 1 org-export-latex-low-levels
)
1315 " %% ends low level\n"))
1317 ((stringp org-export-latex-low-levels
)
1318 (insert (format org-export-latex-low-levels heading
) "\n")
1319 (when label
(insert (format "\\label{%s}\n" label
)))
1320 (insert (org-export-latex-content content
))
1321 (cond ((stringp subcontent
) (insert subcontent
))
1322 ((listp subcontent
) (org-export-latex-sub subcontent
)))))))))
1324 ;;; Exporting internals:
1325 (defun org-export-latex-set-initial-vars (ext-plist level
)
1326 "Store org local variables required for LaTeX export.
1327 EXT-PLIST is an optional additional plist.
1328 LEVEL indicates the default depth for export."
1329 (setq org-export-latex-todo-keywords-1 org-todo-keywords-1
1330 org-export-latex-done-keywords org-done-keywords
1331 org-export-latex-not-done-keywords org-not-done-keywords
1332 org-export-latex-complex-heading-re org-complex-heading-regexp
1333 org-export-latex-display-custom-times org-display-custom-times
1334 org-export-latex-all-targets-re
1335 (org-make-target-link-regexp (org-all-targets))
1336 org-export-latex-options-plist
1337 (org-combine-plists (org-default-export-plist) ext-plist
1338 (org-infile-export-plist))
1339 org-export-latex-class
1340 (or (and (org-region-active-p)
1342 (goto-char (region-beginning))
1343 (and (looking-at org-complex-heading-regexp
)
1344 (org-entry-get nil
"LaTeX_CLASS" 'selective
))))
1348 (goto-char (point-min))
1349 (and (re-search-forward "^#\\+LaTeX_CLASS:[ \t]*\\([-/a-zA-Z]+\\)" nil t
)
1351 (plist-get org-export-latex-options-plist
:latex-class
)
1352 org-export-latex-default-class
)
1353 org-export-latex-class-options
1354 (or (and (org-region-active-p)
1356 (goto-char (region-beginning))
1357 (and (looking-at org-complex-heading-regexp
)
1358 (org-entry-get nil
"LaTeX_CLASS_OPTIONS" 'selective
))))
1362 (goto-char (point-min))
1363 (and (re-search-forward "^#\\+LaTeX_CLASS_OPTIONS:[ \t]*\\(.*?\\)[ \t]*$" nil t
)
1365 (plist-get org-export-latex-options-plist
:latex-class-options
))
1366 org-export-latex-class
1367 (or (car (assoc org-export-latex-class org-export-latex-classes
))
1368 (error "No definition for class `%s' in `org-export-latex-classes'"
1369 org-export-latex-class
))
1370 org-export-latex-header
1371 (cadr (assoc org-export-latex-class org-export-latex-classes
))
1372 org-export-latex-sectioning
1373 (cddr (assoc org-export-latex-class org-export-latex-classes
))
1374 org-export-latex-sectioning-depth
1377 (plist-get org-export-latex-options-plist
:headline-levels
))
1378 (sec-depth (length org-export-latex-sectioning
)))
1379 (if (> hl-levels sec-depth
) sec-depth hl-levels
))))
1380 (when (and org-export-latex-class-options
1381 (string-match "\\S-" org-export-latex-class-options
)
1382 (string-match "^[ \t]*\\(\\\\documentclass\\)\\(\\[.*?\\]\\)?"
1383 org-export-latex-header
))
1384 (setq org-export-latex-header
1385 (concat (substring org-export-latex-header
0 (match-end 1))
1386 org-export-latex-class-options
1387 (substring org-export-latex-header
(match-end 0))))))
1389 (defvar org-export-latex-format-toc-function
1390 'org-export-latex-format-toc-default
1391 "The function formatting returning the string to create the table of contents.
1392 The function mus take one parameter, the depth of the table of contents.")
1394 (defun org-export-latex-make-header (title opt-plist
)
1395 "Make the LaTeX header and return it as a string.
1396 TITLE is the current title from the buffer or region.
1397 OPT-PLIST is the options plist for current buffer."
1398 (let ((toc (plist-get opt-plist
:table-of-contents
))
1399 (author (org-export-apply-macros-in-string
1400 (plist-get opt-plist
:author
)))
1401 (email (replace-regexp-in-string
1403 (org-export-apply-macros-in-string
1404 (plist-get opt-plist
:email
))))
1405 (description (org-export-apply-macros-in-string
1406 (plist-get opt-plist
:description
)))
1407 (keywords (org-export-apply-macros-in-string
1408 (plist-get opt-plist
:keywords
))))
1410 (if (plist-get opt-plist
:time-stamp-file
)
1411 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
1412 ;; insert LaTeX custom header and packages from the list
1413 (org-splice-latex-header
1414 (org-export-apply-macros-in-string org-export-latex-header
)
1415 org-export-latex-default-packages-alist
1416 org-export-latex-packages-alist nil
1417 (org-export-apply-macros-in-string
1418 (plist-get opt-plist
:latex-header-extra
)))
1419 ;; append another special variable
1420 (org-export-apply-macros-in-string org-export-latex-append-header
)
1421 ;; define alert if not yet defined
1422 "\n\\providecommand{\\alert}[1]{\\textbf{#1}}"
1426 (org-export-latex-fontify-headline title
))
1427 ;; insert author info
1428 (if (plist-get opt-plist
:author-info
)
1429 (format "\\author{%s%s}\n"
1430 (org-export-latex-fontify-headline (or author user-full-name
))
1431 (if (and (plist-get opt-plist
:email-info
) email
1432 (string-match "\\S-" email
))
1433 (format "\\thanks{%s}" email
)
1435 (format "%%\\author{%s}\n"
1436 (org-export-latex-fontify-headline (or author user-full-name
))))
1438 (format "\\date{%s}\n"
1440 (or (plist-get opt-plist
:date
)
1441 org-export-latex-date-format
)))
1442 ;; add some hyperref options
1443 ;; FIXME: let's have a defcustom for this?
1444 (format "\\hypersetup{\n pdfkeywords={%s},\n pdfsubject={%s},\n pdfcreator={%s}}\n"
1445 (org-export-latex-fontify-headline keywords
)
1446 (org-export-latex-fontify-headline description
)
1447 (concat "Emacs Org-mode version " org-version
))
1448 ;; beginning of the document
1449 "\n\\begin{document}\n\n"
1450 ;; insert the title command
1451 (when (string-match "\\S-" title
)
1452 (if (string-match "%s" org-export-latex-title-command
)
1453 (format org-export-latex-title-command title
)
1454 org-export-latex-title-command
))
1456 ;; table of contents
1457 (when (and org-export-with-toc
1458 (plist-get opt-plist
:section-numbers
))
1459 (funcall org-export-latex-format-toc-function
1460 (cond ((numberp toc
)
1461 (min toc
(plist-get opt-plist
:headline-levels
)))
1462 (toc (plist-get opt-plist
:headline-levels
))))))))
1464 (defun org-export-latex-format-toc-default (depth)
1466 (format "\\setcounter{tocdepth}{%s}\n\\tableofcontents\n\\vspace*{1cm}\n"
1469 (defun org-export-latex-first-lines (opt-plist &optional beg end
)
1470 "Export the first lines before first headline.
1471 If BEG is non-nil, it is the beginning of the region.
1472 If END is non-nil, it is the end of the region."
1474 (goto-char (or beg
(point-min)))
1476 (end (if (re-search-forward
1477 (concat "^" (org-get-limited-outline-regexp)) end t
)
1478 (goto-char (match-beginning 0))
1479 (goto-char (or end
(point-max))))))
1481 (org-export-latex-content
1482 (org-export-preprocess-string
1483 (buffer-substring pt end
)
1488 :skip-before-1st-heading nil
1489 :LaTeX-fragments nil
1490 :timestamps
(plist-get opt-plist
:timestamps
)
1491 :footnotes
(plist-get opt-plist
:footnotes
)))
1493 (let ((inhibit-read-only t
)
1494 (limit (max pt
(1- end
))))
1495 (add-text-properties pt limit
1496 '(:org-license-to-kill t
))
1499 (while (re-search-forward "^[ \t]*#\\+.*\n?" limit t
)
1500 (let ((case-fold-search t
))
1501 (unless (org-string-match-p
1502 "^[ \t]*#\\+\\(attr_\\|caption\\>\\|label\\>\\)"
1504 (remove-text-properties (match-beginning 0) (match-end 0)
1505 '(:org-license-to-kill t
))))))))))))
1508 (defvar org-export-latex-header-defs nil
1509 "The header definitions that might be used in the LaTeX body.")
1511 (defun org-export-latex-content (content &optional exclude-list
)
1512 "Convert CONTENT string to LaTeX.
1513 Don't perform conversions that are in EXCLUDE-LIST. Recognized
1514 conversion types are: quotation-marks, emphasis, sub-superscript,
1515 links, keywords, lists, tables, fixed-width"
1517 (org-install-letbind)
1519 (unless (memq 'timestamps exclude-list
)
1520 (org-export-latex-time-stamps))
1521 (unless (memq 'quotation-marks exclude-list
)
1522 (org-export-latex-quotation-marks))
1523 (unless (memq 'emphasis exclude-list
)
1524 (when (plist-get org-export-latex-options-plist
:emphasize
)
1525 (org-export-latex-fontify)))
1526 (unless (memq 'sub-superscript exclude-list
)
1527 (org-export-latex-special-chars
1528 (plist-get org-export-latex-options-plist
:sub-superscript
)))
1529 (unless (memq 'links exclude-list
)
1530 (org-export-latex-links))
1531 (unless (memq 'keywords exclude-list
)
1532 (org-export-latex-keywords))
1533 (unless (memq 'lists exclude-list
)
1534 (org-export-latex-lists))
1535 (unless (memq 'tables exclude-list
)
1536 (org-export-latex-tables
1537 (plist-get org-export-latex-options-plist
:tables
)))
1538 (unless (memq 'fixed-width exclude-list
)
1539 (org-export-latex-fixed-width
1540 (plist-get org-export-latex-options-plist
:fixed-width
)))
1542 (buffer-substring (point-min) (point-max))))
1544 (defun org-export-latex-protect-string (s)
1545 "Add the org-protected property to string S."
1546 (add-text-properties 0 (length s
) '(org-protected t
) s
) s
)
1548 (defun org-export-latex-protect-char-in-string (char-list string
)
1549 "Add org-protected text-property to char from CHAR-LIST in STRING."
1553 (goto-char (point-min))
1554 (while (re-search-forward (regexp-opt char-list
) nil t
)
1555 (add-text-properties (match-beginning 0)
1556 (match-end 0) '(org-protected t
)))
1559 (defun org-export-latex-keywords-maybe (&optional remove-list
)
1560 "Maybe remove keywords depending on rules in REMOVE-LIST."
1561 (goto-char (point-min))
1562 (let ((re-todo (mapconcat 'identity org-export-latex-todo-keywords-1
"\\|"))
1563 (case-fold-search nil
)
1564 (todo-markup org-export-latex-todo-keyword-markup
)
1566 ;; convert TODO keywords
1567 (when (re-search-forward (concat "^\\(" re-todo
"\\)") nil t
)
1568 (if (plist-get remove-list
:todo
)
1571 ((stringp todo-markup
) todo-markup
)
1572 ((and (consp todo-markup
) (stringp (car todo-markup
)))
1573 (if (member (match-string 1) org-export-latex-done-keywords
)
1574 (cdr todo-markup
) (car todo-markup
)))
1575 (t (cdr (or (assoc (match-string 1) todo-markup
)
1576 (car todo-markup
))))))
1577 (replace-match (org-export-latex-protect-string
1578 (format fmt
(match-string 1))) t t
)))
1579 ;; convert priority string
1580 (when (re-search-forward "\\[\\\\#.\\]" nil t
)
1581 (if (plist-get remove-list
:priority
)
1583 (replace-match (format "\\textbf{%s}" (match-string 0)) t t
)))
1585 (when (re-search-forward "\\(:[a-zA-Z0-9_@#%]+\\)+:" nil t
)
1586 (if (or (not org-export-with-tags
)
1587 (plist-get remove-list
:tags
))
1590 (org-export-latex-protect-string
1591 (format org-export-latex-tag-markup
1593 (replace-regexp-in-string
1594 "\\([_#]\\)" "\\\\\\1" (match-string 0)))))
1597 (defun org-export-latex-fontify-headline (string)
1598 "Fontify special words in STRING."
1600 ;; FIXME: org-inside-LaTeX-fragment-p doesn't work when the $...$ is at
1601 ;; the beginning of the buffer - inserting "\n" is safe here though.
1602 (insert "\n" string
)
1604 ;; Preserve math snippets
1606 (let* ((matchers (plist-get org-format-latex-options
:matchers
))
1607 (re-list org-latex-regexps
)
1608 beg end re e m n block off
)
1609 ;; Check the different regular expressions
1610 (while (setq e
(pop re-list
))
1611 (setq m
(car e
) re
(nth 1 e
) n
(nth 2 e
)
1612 block
(if (nth 3 e
) "\n\n" ""))
1613 (setq off
(if (member m
'("$" "$1")) 1 0))
1614 (when (and (member m matchers
) (not (equal m
"begin")))
1615 (goto-char (point-min))
1616 (while (re-search-forward re nil t
)
1617 (setq beg
(+ (match-beginning 0) off
) end
(- (match-end 0) 0))
1618 (add-text-properties beg end
1619 '(org-protected t org-latex-math t
))))))
1621 ;; Convert LaTeX to \LaTeX{} and TeX to \TeX{}
1622 (goto-char (point-min))
1623 (let ((case-fold-search nil
))
1624 (while (re-search-forward "\\<\\(\\(La\\)?TeX\\)\\>" nil t
)
1625 (unless (eq (char-before (match-beginning 1)) ?
\\)
1626 (org-if-unprotected-1
1627 (replace-match (org-export-latex-protect-string
1628 (concat "\\" (match-string 1)
1630 (goto-char (point-min))
1631 (let ((re (concat "\\\\\\([a-zA-Z]+\\)"
1632 "\\(?:<[^<>\n]*>\\)*"
1633 "\\(?:\\[[^][\n]*?\\]\\)*"
1634 "\\(?:<[^<>\n]*>\\)*"
1636 (org-create-multibrace-regexp "{" "}" 3)
1638 (while (re-search-forward re nil t
)
1640 ;; check for comment line
1641 (save-excursion (goto-char (match-beginning 0))
1642 (org-in-indented-comment-line))
1643 ;; Check if this is a defined entity, so that is may need conversion
1644 (org-entity-get (match-string 1)))
1645 (add-text-properties (match-beginning 0) (match-end 0)
1646 '(org-protected t
)))))
1647 (when (plist-get org-export-latex-options-plist
:emphasize
)
1648 (org-export-latex-fontify))
1649 (org-export-latex-time-stamps)
1650 (org-export-latex-quotation-marks)
1651 (org-export-latex-keywords-maybe)
1652 (org-export-latex-special-chars
1653 (plist-get org-export-latex-options-plist
:sub-superscript
))
1654 (org-export-latex-links)
1655 (org-trim (buffer-string))))
1657 (defun org-export-latex-time-stamps ()
1658 "Format time stamps."
1659 (goto-char (point-min))
1660 (let ((org-display-custom-times org-export-latex-display-custom-times
))
1661 (while (re-search-forward org-ts-regexp-both nil t
)
1662 (org-if-unprotected-at (1- (point))
1664 (org-export-latex-protect-string
1665 (format (if (string= "<" (substring (match-string 0) 0 1))
1666 org-export-latex-timestamp-markup
1667 org-export-latex-timestamp-inactive-markup
)
1668 (substring (org-translate-time (match-string 0)) 1 -
1)))
1671 (defun org-export-latex-quotation-marks ()
1672 "Export quotation marks depending on language conventions."
1674 (goto-char (point-min))
1675 (while (re-search-forward (car l
) nil t
)
1676 (let ((rpl (concat (match-string 1)
1677 (org-export-latex-protect-string
1678 (copy-sequence (cdr l
))))))
1679 (org-if-unprotected-1
1680 (replace-match rpl t t
)))))
1681 (cdr (or (assoc (plist-get org-export-latex-options-plist
:language
)
1682 org-export-latex-quotes
)
1683 ;; falls back on english
1684 (assoc "en" org-export-latex-quotes
)))))
1686 (defun org-export-latex-special-chars (sub-superscript)
1687 "Export special characters to LaTeX.
1688 If SUB-SUPERSCRIPT is non-nil, convert \\ and ^.
1689 See the `org-export-latex.el' code for a complete conversion table."
1690 (goto-char (point-min))
1692 (goto-char (point-min))
1693 (while (re-search-forward c nil t
)
1694 ;; Put the point where to check for org-protected
1695 (unless (or (get-text-property (match-beginning 2) 'org-protected
)
1696 (save-match-data (org-at-table.el-p
)))
1697 (cond ((member (match-string 2) '("\\$" "$"))
1698 (if (equal (match-string 2) "\\$")
1700 (replace-match "\\$" t t
)))
1701 ((member (match-string 2) '("&" "%" "#"))
1702 (if (equal (match-string 1) "\\")
1703 (replace-match (match-string 2) t t
)
1704 (replace-match (concat (match-string 1) "\\"
1705 (match-string 2)) t t
)
1707 ((equal (match-string 2) "...")
1709 (concat (match-string 1)
1710 (org-export-latex-protect-string "\\ldots{}")) t t
))
1711 ((equal (match-string 2) "~")
1712 (cond ((equal (match-string 1) "\\") nil
)
1713 ((eq 'org-link
(get-text-property 0 'face
(match-string 2)))
1714 (replace-match (concat (match-string 1) "\\~") t t
))
1716 (org-export-latex-protect-string
1717 (concat (match-string 1) "\\~{}")) t t
))))
1718 ((member (match-string 2) '("{" "}"))
1719 (unless (save-match-data (org-inside-latex-math-p))
1720 (if (equal (match-string 1) "\\")
1721 (replace-match (match-string 2) t t
)
1722 (replace-match (concat (match-string 1) "\\"
1723 (match-string 2)) t t
)))))
1724 (unless (save-match-data (org-inside-latex-math-p))
1725 (cond ((equal (match-string 2) "\\")
1726 (replace-match (or (save-match-data
1727 (org-export-latex-treat-backslash-char
1729 (or (match-string 3) "")))
1731 (when (and (get-text-property (1- (point)) 'org-entity
)
1733 ;; OK, this was an entity replacement, and the user
1734 ;; had terminated the entity with {}. Make sure
1735 ;; {} is protected as well, and remove the extra {}
1736 ;; inserted by the conversion.
1737 (put-text-property (point) (+ 2 (point)) 'org-protected t
)
1738 (if (save-excursion (goto-char (max (- (point) 2) (point-min)))
1743 ((member (match-string 2) '("_" "^"))
1744 (replace-match (or (save-match-data
1745 (org-export-latex-treat-sub-super-char
1749 (match-string 3))) "") t t
)
1750 (backward-char 1)))))))
1751 '(;"^\\([^\n$]*?\\|^\\)\\(\\\\?\\$\\)\\([^\n$]*\\)$"
1752 "\\(\\(\\\\?\\$\\)\\)"
1753 "\\([a-zA-Z0-9()]+\\|[ \t\n]\\|\\b\\|\\\\\\)\\(_\\|\\^\\)\\({[^{}]+}\\|[a-zA-Z0-9]+\\|[ \t\n]\\|[:punct:]\\|)\\|{[a-zA-Z0-9]+}\\|([a-zA-Z0-9]+)\\)"
1754 "\\(.\\|^\\)\\(\\\\\\)\\([ \t\n]\\|\\([&#%{}\"]\\|[a-zA-Z][a-zA-Z0-9]*\\)\\)"
1755 "\\(^\\|.\\)\\([&#%{}~]\\|\\.\\.\\.\\)"
1756 ;; (?\< . "\\textless{}")
1757 ;; (?\> . "\\textgreater{}")
1760 (defun org-inside-latex-math-p ()
1761 (get-text-property (point) 'org-latex-math
))
1763 (defun org-export-latex-treat-sub-super-char
1764 (subsup char string-before string-after
)
1765 "Convert the \"_\" and \"^\" characters to LaTeX.
1766 SUBSUP corresponds to the ^: option in the #+OPTIONS line.
1767 Convert CHAR depending on STRING-BEFORE and STRING-AFTER."
1768 (cond ((equal string-before
"\\")
1769 (concat string-before char string-after
))
1770 ((and (string-match "\\S-+" string-after
))
1771 ;; this is part of a math formula
1772 (cond ((eq 'org-link
(get-text-property 0 'face char
))
1773 (concat string-before
"\\" char string-after
))
1774 ((save-match-data (org-inside-latex-math-p))
1776 (cond ((eq 1 (length string-after
))
1777 (concat string-before char string-after
))
1778 ((string-match "[({]?\\([^)}]+\\)[)}]?" string-after
)
1779 (format "%s%s{%s}" string-before char
1780 (match-string 1 string-after
))))))
1781 ((and (> (length string-after
) 1)
1783 (and (equal subsup
'{}) (eq (string-to-char string-after
) ?\
{)))
1784 (or (string-match "[{]?\\([^}]+\\)[}]?" string-after
)
1785 (string-match "[(]?\\([^)]+\\)[)]?" string-after
)))
1787 (org-export-latex-protect-string
1788 (format "%s$%s{%s}$" string-before char
1789 (if (and (> (match-end 1) (1+ (match-beginning 1)))
1790 (not (equal (substring string-after
0 2) "{\\")))
1791 (concat "\\mathrm{" (match-string 1 string-after
) "}")
1792 (match-string 1 string-after
)))))
1793 ((eq subsup t
) (concat string-before
"$" char string-after
"$"))
1794 (t (org-export-latex-protect-string
1795 (concat string-before
"\\" char
"{}" string-after
)))))
1796 (t (org-export-latex-protect-string
1797 (concat string-before
"\\" char
"{}" string-after
)))))
1799 (defun org-export-latex-treat-backslash-char (string-before string-after
)
1800 "Convert the \"$\" special character to LaTeX.
1801 The conversion is made depending of STRING-BEFORE and STRING-AFTER."
1802 (let ((ass (org-entity-get string-after
)))
1806 (concat string-before
1807 (org-export-latex-protect-string
1808 (concat "$" (nth 1 ass
) "$")))
1809 (concat string-before
(org-export-latex-protect-string
1812 ((and (not (string-match "^[ \n\t]" string-after
))
1813 (not (string-match "[ \t]\\'\\|^" string-before
)))
1814 ;; backslash is inside a word
1815 (concat string-before
1816 (org-export-latex-protect-string
1817 (concat "\\textbackslash{}" string-after
))))
1818 ((not (or (equal string-after
"")
1819 (string-match "^[ \t\n]" string-after
)))
1820 ;; backslash might escape a character (like \#) or a user TeX
1821 ;; macro (like \setcounter)
1822 (concat string-before
1823 (org-export-latex-protect-string (concat "\\" string-after
))))
1824 ((and (string-match "^[ \t\n]" string-after
)
1825 (string-match "[ \t\n]\\'" string-before
))
1826 ;; backslash is alone, convert it to $\backslash$
1827 (org-export-latex-protect-string
1828 (concat string-before
"\\textbackslash{}" string-after
)))
1829 (t (org-export-latex-protect-string
1830 (concat string-before
"\\textbackslash{}" string-after
))))))
1832 (defun org-export-latex-keywords ()
1833 "Convert special keywords to LaTeX."
1834 (goto-char (point-min))
1835 (while (re-search-forward org-export-latex-special-keyword-regexp nil t
)
1836 (replace-match (format org-export-latex-timestamp-keyword-markup
1837 (match-string 0)) t t
)
1839 (beginning-of-line 1)
1840 (unless (looking-at ".*\n[ \t]*\n")
1844 (defun org-export-latex-fixed-width (opt)
1845 "When OPT is non-nil convert fixed-width sections to LaTeX."
1846 (goto-char (point-min))
1847 (while (re-search-forward "^[ \t]*:\\([ \t]\\|$\\)" nil t
)
1848 (unless (get-text-property (point) 'org-example
)
1850 (progn (goto-char (match-beginning 0))
1851 (insert "\\begin{verbatim}\n")
1852 (while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
1853 (replace-match (concat (match-string 1)
1854 (match-string 2)) t t
)
1856 (insert "\\end{verbatim}\n"))
1857 (progn (goto-char (match-beginning 0))
1858 (while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
1859 (replace-match (concat "%" (match-string 1)
1860 (match-string 2)) t t
)
1861 (forward-line)))))))
1863 (defvar org-table-last-alignment
) ; defined in org-table.el
1864 (defvar org-table-last-column-widths
) ; defined in org-table.el
1865 (declare-function orgtbl-to-latex
"org-table" (table params
) t
)
1866 (defun org-export-latex-tables (insert)
1867 "Convert tables to LaTeX and INSERT it."
1868 ;; First, get the table.el tables
1869 (goto-char (point-min))
1870 (while (re-search-forward "^[ \t]*\\(\\+-[-+]*\\+\\)[ \t]*\n[ \t]*|" nil t
)
1873 (org-export-latex-convert-table.el-table
)))
1875 ;; And now the Org-mode tables
1876 (goto-char (point-min))
1877 (while (re-search-forward "^\\([ \t]*\\)|" nil t
)
1878 (org-if-unprotected-at (1- (point))
1880 (let* ((beg (org-table-begin))
1881 (end (org-table-end))
1882 (raw-table (buffer-substring beg end
))
1883 (org-table-last-alignment (copy-sequence org-table-last-alignment
))
1884 (org-table-last-column-widths (copy-sequence
1885 org-table-last-column-widths
))
1886 fnum fields line lines olines gr colgropen line-fmt align
1887 caption width shortn label attr floatp placement
1888 longtblp tblenv tabular-env
)
1889 (if org-export-latex-tables-verbatim
1890 (let* ((tbl (concat "\\begin{verbatim}\n" raw-table
1891 "\\end{verbatim}\n")))
1892 (apply 'delete-region
(list beg end
))
1893 (insert (org-export-latex-protect-string tbl
)))
1895 (setq caption
(org-find-text-property-in-string
1896 'org-caption raw-table
)
1897 shortn
(org-find-text-property-in-string
1898 'org-caption-shortn raw-table
)
1899 attr
(org-find-text-property-in-string
1900 'org-attributes raw-table
)
1901 label
(org-find-text-property-in-string
1902 'org-label raw-table
)
1903 longtblp
(and attr
(stringp attr
)
1904 (string-match "\\<longtable\\>" attr
))
1905 tblenv
(if (and attr
(stringp attr
))
1906 (cond ((string-match "\\<sidewaystable\\>" attr
)
1908 ((or (string-match (regexp-quote "table*") attr
)
1909 (string-match "\\<multicolumn\\>" attr
))
1914 (if (and attr
(stringp attr
)
1915 (string-match "\\(tabular.\\)" attr
))
1916 (match-string 1 attr
)
1917 org-export-latex-tabular-environment
)
1918 width
(and attr
(stringp attr
)
1919 (string-match "\\<width=\\([^ \t\n\r]+\\)" attr
)
1920 (match-string 1 attr
))
1921 align
(and attr
(stringp attr
)
1922 (string-match "\\<align=\\([^ \t\n\r]+\\)" attr
)
1923 (match-string 1 attr
))
1924 floatp
(or caption label
(string= "table*" tblenv
))
1925 placement
(if (and attr
1927 (string-match "[ \t]*\\<placement=\\(\\S-+\\)" attr
))
1928 (match-string 1 attr
)
1930 "[" org-latex-default-figure-position
"]")))
1931 (setq caption
(and caption
(org-export-latex-fontify-headline caption
)))
1932 (setq lines
(org-split-string raw-table
"\n"))
1933 (apply 'delete-region
(list beg end
))
1934 (when org-export-table-remove-special-lines
1935 (setq lines
(org-table-clean-before-export lines
'maybe-quoted
)))
1936 (when org-table-clean-did-remove-column
1937 (pop org-table-last-alignment
)
1938 (pop org-table-last-column-widths
))
1939 ;; make a formatting string to reflect alignment
1941 (while (and (not line-fmt
) (setq line
(pop olines
)))
1942 (unless (string-match "^[ \t]*|-" line
)
1943 (setq fields
(org-split-string line
"[ \t]*|[ \t]*"))
1944 (setq fnum
(make-vector (length fields
) 0))
1948 (setq gr
(pop org-table-colgroup-info
))
1950 (cond ((eq gr
:start
)
1951 (prog1 (if colgropen
"|" "|")
1952 (setq colgropen t
)))
1954 (prog1 (if colgropen
"|" "|")
1955 (setq colgropen nil
)))
1957 (if (memq gr
'(:end
:startend
))
1958 (progn (setq colgropen nil
) "|")
1961 ;; fix double || in line-fmt
1962 (setq line-fmt
(replace-regexp-in-string "||" "|" line-fmt
))
1963 ;; maybe remove the first and last "|"
1964 (when (and (not org-export-latex-tables-column-borders
)
1965 (string-match "^\\(|\\)?\\(.+\\)|$" line-fmt
))
1966 (setq line-fmt
(match-string 2 line-fmt
)))
1969 (setq align
(apply 'format
1971 (mapcar (lambda (x) (if x
"r" "l"))
1972 org-table-last-alignment
)))))
1973 ;; prepare the table to send to orgtbl-to-latex
1977 (or (and (string-match "[ \t]*|-+" elem
) 'hline
)
1979 (progn (set-text-properties 0 (length elem
) nil elem
)
1980 (org-trim elem
)) "|")))
1983 (insert (org-export-latex-protect-string
1986 (concat "\\begin{longtable}{" align
"}\n")
1988 (format "\\begin{%s}%s\n" tblenv placement
)))
1989 (if (and floatp org-export-latex-table-caption-above
)
1991 "\\caption%s{%s} %s"
1992 (if shortn
(concat "[" shortn
"]") "")
1994 (if label
(format "\\label{%s}" label
) "")))
1995 (if (and longtblp caption org-export-latex-table-caption-above
)
1997 (if (and org-export-latex-tables-centered
(not longtblp
))
1998 "\\begin{center}\n")
2000 (format "\\begin{%s}%s{%s}\n"
2002 (if width
(format "{%s}" width
) "")
2006 `(:tstart nil
:tend nil
2007 :hlend
,(if longtblp
2011 \\hline\\multicolumn{%d}{r}{Continued on next page}\\
2013 \\endlastfoot" (length org-table-last-alignment
))
2015 (if (not longtblp
) (format "\n\\end{%s}" tabular-env
))
2016 (if longtblp
"\n" (if org-export-latex-tables-centered
2017 "\n\\end{center}\n" "\n"))
2018 (if (and floatp
(not org-export-latex-table-caption-above
))
2020 "\\caption%s{%s} %s"
2021 (if shortn
(concat "[" shortn
"]") "")
2023 (if label
(format "\\label{%s}" label
) "")))
2026 (if floatp
(format "\\end{%s}" tblenv
)))))
2029 (defun org-export-latex-convert-table.el-table
()
2030 "Replace table.el table at point with LaTeX code."
2031 (let (tbl caption shortn label line floatp attr align rmlines
)
2032 (setq line
(buffer-substring (point-at-bol) (point-at-eol))
2033 label
(org-get-text-property-any 0 'org-label line
)
2034 caption
(org-get-text-property-any 0 'org-caption line
)
2035 shortn
(org-get-text-property-any 0 'org-caption-shortn line
)
2036 attr
(org-get-text-property-any 0 'org-attributes line
)
2037 align
(and attr
(stringp attr
)
2038 (string-match "\\<align=\\([^ \t\n\r,]+\\)" attr
)
2039 (match-string 1 attr
))
2040 rmlines
(and attr
(stringp attr
)
2041 (string-match "\\<rmlines\\>" attr
))
2042 floatp
(or label caption
))
2043 (and (get-buffer "*org-export-table*")
2044 (kill-buffer (get-buffer "*org-export-table*")))
2045 (table-generate-source 'latex
"*org-export-table*" "caption")
2046 (setq tbl
(with-current-buffer "*org-export-table*"
2048 (while (string-match "^%.*\n" tbl
)
2049 (setq tbl
(replace-match "" t t tbl
)))
2053 (setq lines
(mapcar (lambda (x)
2054 (if (string-match "^\\\\hline$" x
)
2059 (org-split-string tbl
"\n")))
2060 (setq tbl
(mapconcat 'identity
(delq nil lines
) "\n"))))
2061 (when (and align
(string-match "\\\\begin{tabular}{.*}" tbl
))
2062 (setq tbl
(replace-match (concat "\\begin{tabular}{" align
"}")
2064 (and (get-buffer "*org-export-table*")
2065 (kill-buffer (get-buffer "*org-export-table*")))
2066 (beginning-of-line 0)
2067 (while (looking-at "[ \t]*\\(|\\|\\+-\\)")
2068 (delete-region (point) (1+ (point-at-eol))))
2069 (when org-export-latex-tables-centered
2070 (setq tbl
(concat "\\begin{center}\n" tbl
"\\end{center}")))
2072 (setq tbl
(concat "\\begin{table}\n"
2073 (if (not org-export-latex-table-caption-above
) tbl
)
2074 (format "\\caption%s{%s%s}\n"
2075 (if shortn
(format "[%s]" shortn
) "")
2076 (if label
(format "\\label{%s}" label
) "")
2078 (if org-export-latex-table-caption-above tbl
)
2079 "\n\\end{table}\n")))
2080 (insert (org-export-latex-protect-string tbl
))))
2082 (defun org-export-latex-fontify ()
2083 "Convert fontification to LaTeX."
2084 (goto-char (point-min))
2085 (while (re-search-forward org-emph-re nil t
)
2086 ;; The match goes one char after the *string*, except at the end of a line
2087 (let ((emph (assoc (match-string 3)
2088 org-export-latex-emphasis-alist
))
2089 (beg (match-beginning 0))
2093 (message "`org-export-latex-emphasis-alist' has no entry for formatting triggered by \"%s\""
2095 (unless (or (and (get-text-property (- (point) 2) 'org-protected
)
2096 (not (get-text-property
2097 (- (point) 2) 'org-verbatim-emph
)))
2098 (equal (char-after (match-beginning 3))
2099 (char-after (1+ (match-beginning 3))))
2101 (goto-char (match-beginning 1))
2103 (and (org-at-table-p)
2105 "[|\n]" (buffer-substring beg end
)))))
2106 (and (equal (match-string 3) "+")
2108 (string-match "\\`-+\\'" (match-string 4)))))
2109 (setq s
(match-string 4))
2110 (setq rpl
(concat (match-string 1)
2111 (org-export-latex-emph-format (cadr emph
)
2115 (setq rpl
(org-export-latex-protect-string rpl
))
2117 (if (string-match "\\`.?\\(\\\\[a-z]+{\\)\\(.*\\)\\(}\\).?\\'" rpl
)
2119 (add-text-properties (match-beginning 1) (match-end 1)
2120 '(org-protected t
) rpl
)
2121 (add-text-properties (match-beginning 3) (match-end 3)
2122 '(org-protected t
) rpl
)))))
2123 (replace-match rpl t t
)))
2126 (defun org-export-latex-emph-format (format string
)
2127 "Format an emphasis string and handle the \\verb special case."
2128 (when (member format
'("\\verb" "\\protectedtexttt"))
2130 (if (equal format
"\\verb")
2131 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
2133 (loop for i from
0 to
(1- (length ll
)) do
2134 (if (not (string-match (regexp-quote (substring ll i
(1+ i
)))
2137 (setq format
(concat "\\verb" (substring ll i
(1+ i
))
2138 "%s" (substring ll i
(1+ i
))))
2139 (throw 'exit nil
))))))
2141 (trans '(("\\" .
"\\textbackslash{}")
2142 ("~" .
"\\textasciitilde{}")
2143 ("^" .
"\\textasciicircum{}")))
2145 (while (string-match "[\\{}$%&_#~^]" string
)
2146 (setq char
(match-string 0 string
))
2147 (if (> (match-beginning 0) 0)
2148 (setq rtn
(concat rtn
(substring string
2149 0 (match-beginning 0)))))
2150 (setq string
(substring string
(1+ (match-beginning 0))))
2151 (setq char
(or (cdr (assoc char trans
)) (concat "\\" char
))
2152 rtn
(concat rtn char
)))
2153 (setq string
(concat rtn string
) format
"\\texttt{%s}")
2154 (while (string-match "--" string
)
2155 (setq string
(replace-match "-{}-" t t string
)))))))
2156 (format format string
))
2158 (defun org-export-latex-links ()
2159 ;; Make sure to use the LaTeX hyperref and graphicx package
2160 ;; or send some warnings.
2161 "Convert links to LaTeX."
2162 (goto-char (point-min))
2163 (while (re-search-forward org-bracket-link-analytic-regexp
++ nil t
)
2164 (org-if-unprotected-1
2165 (goto-char (match-beginning 0))
2166 (let* ((re-radio org-export-latex-all-targets-re
)
2167 (remove (list (match-beginning 0) (match-end 0)))
2168 (raw-path (org-extract-attributes (match-string 3)))
2169 (full-raw-path (concat (match-string 1) raw-path
))
2170 (desc (match-string 5))
2171 (type (or (match-string 2)
2172 (if (or (file-name-absolute-p raw-path
)
2173 (string-match "^\\.\\.?/" raw-path
))
2175 (coderefp (equal type
"coderef"))
2176 (caption (org-find-text-property-in-string 'org-caption raw-path
))
2177 (shortn (org-find-text-property-in-string 'org-caption-shortn raw-path
))
2178 (attr (or (org-find-text-property-in-string 'org-attributes raw-path
)
2179 (plist-get org-export-latex-options-plist
:latex-image-options
)))
2180 (label (org-find-text-property-in-string 'org-label raw-path
))
2182 ;; define the path of the link
2184 ((member type
'("coderef"))
2186 ((member type
'("http" "https" "ftp"))
2187 (concat type
":" raw-path
))
2188 ((and re-radio
(string-match re-radio raw-path
))
2190 ((equal type
"mailto")
2191 (concat type
":" raw-path
))
2192 ((equal type
"file")
2193 (if (and (org-file-image-p
2196 org-export-latex-inline-image-extensions
)
2197 (or (get-text-property 0 'org-no-description
2199 (equal desc full-raw-path
)))
2201 (progn (when (string-match "\\(.+\\)::.+" raw-path
)
2202 (setq raw-path
(match-string 1 raw-path
)))
2203 (if (file-exists-p raw-path
)
2204 (concat type
"://" (expand-file-name raw-path
))
2205 (concat type
"://" (org-export-directory
2206 :LaTeX org-export-latex-options-plist
)
2208 ;; process with link inserting
2209 (apply 'delete-region remove
)
2210 (setq caption
(and caption
(org-export-latex-fontify-headline caption
)))
2212 (plist-get org-export-latex-options-plist
:inline-images
))
2213 ;; OK, we need to inline an image
2215 (org-export-latex-format-image raw-path caption label attr shortn
)))
2218 (org-export-get-coderef-format path desc
)
2219 (cdr (assoc path org-export-code-refs
)))))
2220 (radiop (insert (format org-export-latex-hyperref-format
2221 (org-solidify-link-text raw-path
) desc
)))
2223 (insert (format org-export-latex-hyperref-format
2224 (org-remove-initial-hash
2225 (org-solidify-link-text raw-path
))
2228 (when (org-at-table-p)
2229 ;; There is a strange problem when we have a link in a table,
2230 ;; ampersands then cause a problem. I think this must be
2231 ;; a LaTeX issue, but we here implement a work-around anyway.
2232 (setq path
(org-export-latex-protect-amp path
)
2233 desc
(org-export-latex-protect-amp desc
)))
2235 (if (string-match "%s.*%s" org-export-latex-href-format
)
2236 (format org-export-latex-href-format path desc
)
2237 (format org-export-latex-href-format path
))))
2239 ((functionp (setq fnc
(nth 2 (assoc type org-link-protocols
))))
2240 ;; The link protocol has a function for formatting the link
2243 (funcall fnc
(org-link-unescape raw-path
) desc
'latex
))))
2245 (t (insert "\\texttt{" desc
"}")))))))
2248 (defun org-export-latex-format-image (path caption label attr
&optional shortn
)
2249 "Format the image element, depending on user settings."
2250 (let (ind floatp wrapp multicolumnp placement figenv
)
2251 (setq floatp
(or caption label
))
2252 (setq ind
(org-get-text-property-any 0 'original-indentation path
))
2253 (when (and attr
(stringp attr
))
2254 (if (string-match "[ \t]*\\<wrap\\>" attr
)
2255 (setq wrapp t floatp nil attr
(replace-match "" t t attr
)))
2256 (if (string-match "[ \t]*\\<float\\>" attr
)
2257 (setq wrapp nil floatp t attr
(replace-match "" t t attr
)))
2258 (if (string-match "[ \t]*\\<multicolumn\\>" attr
)
2259 (setq multicolumnp t attr
(replace-match "" t t attr
))))
2263 (wrapp "{l}{0.5\\textwidth}")
2264 (floatp (concat "[" org-latex-default-figure-position
"]"))
2267 (when (and attr
(stringp attr
)
2268 (string-match "[ \t]*\\<placement=\\(\\S-+\\)" attr
))
2269 (setq placement
(match-string 1 attr
)
2270 attr
(replace-match "" t t attr
)))
2271 (setq attr
(and attr
(org-trim attr
)))
2272 (when (or (not attr
) (= (length attr
) 0))
2273 (setq attr
(cond (floatp "width=0.7\\textwidth")
2274 (wrapp "width=0.48\\textwidth")
2278 (wrapp "\\begin{wrapfigure}%placement
2280 \\includegraphics[%attr]{%path}
2281 \\caption%shortn{%labelcmd%caption}
2283 (multicolumnp "\\begin{figure*}%placement
2285 \\includegraphics[%attr]{%path}
2286 \\caption%shortn{%labelcmd%caption}
2288 (floatp "\\begin{figure}%placement
2290 \\includegraphics[%attr]{%path}
2291 \\caption%shortn{%labelcmd%caption}
2293 (t "\\includegraphics[%attr]{%path}")))
2296 (setq figenv
(mapconcat 'identity
(split-string figenv
"\n")
2297 (save-excursion (beginning-of-line 1)
2298 (looking-at "[ \t]*")
2299 (concat "\n" (match-string 0)))))
2301 (if (and (not label
) (not caption
)
2302 (string-match "^\\\\caption{.*\n" figenv
))
2303 (setq figenv
(replace-match "" t t figenv
)))
2308 (if (file-name-absolute-p path
)
2309 (expand-file-name path
)
2312 (cons "shortn" (if shortn
(format "[%s]" shortn
) ""))
2313 (cons "labelcmd" (if label
(format "\\label{%s}"
2315 (cons "caption" (or caption
""))
2316 (cons "placement" (or placement
""))))
2317 nil
'original-indentation ind
)))
2319 (defun org-export-latex-protect-amp (s)
2320 (while (string-match "\\([^\\\\]\\)\\(&\\)" s
)
2321 (setq s
(replace-match (concat (match-string 1 s
) "\\" (match-string 2 s
))
2325 (defun org-remove-initial-hash (s)
2326 (if (string-match "\\`#" s
)
2329 (defvar org-latex-entities
) ; defined below
2330 (defvar org-latex-entities-regexp
) ; defined below
2332 (defun org-export-latex-preprocess (parameters)
2333 "Clean stuff in the LaTeX export."
2334 ;; Replace footnotes.
2335 (when (plist-get parameters
:footnotes
)
2336 (goto-char (point-min))
2338 (while (setq ref
(org-footnote-get-next-reference))
2339 (let* ((beg (nth 1 ref
))
2341 (def (nth 1 (assoc (string-to-number lbl
)
2342 (mapcar (lambda (e) (cdr e
))
2343 org-export-footnotes-seen
)))))
2344 ;; Fix body for footnotes ending on a link or a list and
2345 ;; remove definition from buffer.
2348 (if (string-match "ORG-LIST-END-MARKER\\'" def
)
2350 (org-footnote-delete-definitions lbl
)
2351 ;; Compute string to insert (FNOTE), and protect the outside
2352 ;; macro from further transformation. When footnote at
2353 ;; point is referring to a previously defined footnote, use
2354 ;; \footnotemark. Otherwise, use \footnote.
2355 (let ((fnote (if (member lbl org-export-latex-footmark-seen
)
2356 (org-export-latex-protect-string
2357 (format "\\footnotemark[%s]" lbl
))
2358 (push lbl org-export-latex-footmark-seen
)
2359 (concat (org-export-latex-protect-string "\\footnote{")
2361 (org-export-latex-protect-string "}"))))
2362 ;; Check if another footnote is immediately following.
2363 ;; If so, add a separator in-between.
2364 (sep (org-export-latex-protect-string
2365 (if (save-excursion (goto-char (1- (nth 2 ref
)))
2366 (let ((next (org-footnote-get-next-reference)))
2367 (and next
(= (nth 1 next
) (nth 2 ref
)))))
2368 org-export-latex-footnote-separator
""))))
2369 (when (org-at-heading-p)
2370 (setq fnote
(concat (org-export-latex-protect-string "\\protect")
2372 ;; Ensure a footnote at column 0 cannot end a list
2374 (put-text-property 0 (length fnote
) 'original-indentation
1000 fnote
)
2375 ;; Replace footnote reference with FNOTE and, maybe, SEP.
2376 ;; `save-excursion' is required if there are two footnotes
2377 ;; in a row. In that case, point would be left at the
2378 ;; beginning of the second one, and
2379 ;; `org-footnote-get-next-reference' would then skip it.
2381 (delete-region beg
(nth 2 ref
))
2382 (save-excursion (insert fnote sep
)))))))
2384 ;; Remove footnote section tag for LaTeX
2385 (goto-char (point-min))
2386 (while (re-search-forward
2387 (concat "^" footnote-section-tag-regexp
) nil t
)
2389 (replace-match "")))
2390 ;; Remove any left-over footnote definition.
2391 (mapc (lambda (fn) (org-footnote-delete-definitions (car fn
)))
2392 org-export-footnotes-data
)
2393 (mapc (lambda (fn) (org-footnote-delete-definitions fn
))
2394 org-export-latex-footmark-seen
)
2396 ;; Preserve line breaks
2397 (goto-char (point-min))
2398 (while (re-search-forward "\\\\\\\\" nil t
)
2399 (add-text-properties (match-beginning 0) (match-end 0)
2400 '(org-protected t
)))
2402 ;; Preserve latex environments
2403 (goto-char (point-min))
2404 (while (re-search-forward "^[ \t]*\\\\begin{\\([a-zA-Z]+\\*?\\)}" nil t
)
2406 (let* ((start (progn (beginning-of-line) (point)))
2407 (end (and (re-search-forward
2408 (concat "^[ \t]*\\\\end{"
2409 (regexp-quote (match-string 1))
2413 (add-text-properties start end
'(org-protected t
))
2414 (goto-char (point-at-eol))))))
2416 ;; Preserve math snippets
2417 (let* ((matchers (plist-get org-format-latex-options
:matchers
))
2418 (re-list org-latex-regexps
)
2419 beg end re e m n block off
)
2420 ;; Check the different regular expressions
2421 (while (setq e
(pop re-list
))
2422 (setq m
(car e
) re
(nth 1 e
) n
(nth 2 e
)
2423 block
(if (nth 3 e
) "\n\n" ""))
2424 (setq off
(if (member m
'("$" "$1")) 1 0))
2425 (when (and (member m matchers
) (not (equal m
"begin")))
2426 (goto-char (point-min))
2427 (while (re-search-forward re nil t
)
2428 (setq beg
(+ (match-beginning 0) off
) end
(- (match-end 0) 0))
2429 (add-text-properties beg end
'(org-protected t org-latex-math t
))))))
2431 ;; Convert LaTeX to \LaTeX{} and TeX to \TeX{}
2432 (goto-char (point-min))
2433 (let ((case-fold-search nil
))
2434 (while (re-search-forward "\\<\\(\\(La\\)?TeX\\)\\>" nil t
)
2435 (unless (eq (char-before (match-beginning 1)) ?
\\)
2436 (org-if-unprotected-1
2437 (replace-match (org-export-latex-protect-string
2438 (concat "\\" (match-string 1)
2441 ;; Convert blockquotes
2442 (goto-char (point-min))
2443 (while (search-forward "ORG-BLOCKQUOTE-START" nil t
)
2444 (org-replace-match-keep-properties "\\begin{quote}" t t
))
2445 (goto-char (point-min))
2446 (while (search-forward "ORG-BLOCKQUOTE-END" nil t
)
2447 (org-replace-match-keep-properties "\\end{quote}" t t
))
2450 (goto-char (point-min))
2451 (while (search-forward "ORG-VERSE-START" nil t
)
2452 (org-replace-match-keep-properties "\\begin{verse}" t t
)
2453 (beginning-of-line 2)
2454 (while (and (not (looking-at "[ \t]*ORG-VERSE-END.*")) (not (eobp)))
2455 (when (looking-at "\\([ \t]+\\)\\([^ \t\n]\\)")
2456 (goto-char (match-end 1))
2457 (org-replace-match-keep-properties
2458 (org-export-latex-protect-string
2459 (concat "\\hspace*{1cm}" (match-string 2))) t t
)
2460 (beginning-of-line 1))
2461 (if (looking-at "[ \t]*$")
2462 (insert (org-export-latex-protect-string "\\vspace*{1em}"))
2463 (unless (looking-at ".*?[^ \t\n].*?\\\\\\\\[ \t]*$")
2466 (beginning-of-line 2))
2467 (and (looking-at "[ \t]*ORG-VERSE-END.*")
2468 (org-replace-match-keep-properties "\\end{verse}" t t
)))
2470 ;; Convert #+INDEX to LaTeX \\index.
2471 (goto-char (point-min))
2472 (let ((case-fold-search t
) entry
)
2473 (while (re-search-forward
2474 "^[ \t]*#\\+index:[ \t]*\\([^ \t\r\n].*?\\)[ \t]*$"
2478 (org-export-latex-protect-string
2479 (org-export-latex-fontify-headline (match-string 1)))))
2480 (replace-match (format "\\index{%s}" entry
) t t
)))
2483 (goto-char (point-min))
2484 (while (search-forward "ORG-CENTER-START" nil t
)
2485 (org-replace-match-keep-properties "\\begin{center}" t t
))
2486 (goto-char (point-min))
2487 (while (search-forward "ORG-CENTER-END" nil t
)
2488 (org-replace-match-keep-properties "\\end{center}" t t
))
2490 (run-hooks 'org-export-latex-after-blockquotes-hook
)
2492 ;; Convert horizontal rules
2493 (goto-char (point-min))
2494 (while (re-search-forward "^[ \t]*-\\{5,\\}[ \t]*$" nil t
)
2496 (replace-match (org-export-latex-protect-string "\\hrule") t t
)))
2498 ;; Protect LaTeX commands like \command[...]{...} or \command{...}
2499 (goto-char (point-min))
2501 "\\\\\\([a-zA-Z]+\\*?\\)"
2502 "\\(?:<[^<>\n]*>\\)*"
2503 "\\(?:\\[[^][\n]*?\\]\\)*"
2504 "\\(?:<[^<>\n]*>\\)*"
2505 "\\(" (org-create-multibrace-regexp "{" "}" 3) "\\)\\{1,3\\}")))
2506 (while (re-search-forward re nil t
)
2508 ;; Check for comment line.
2509 (save-excursion (goto-char (match-beginning 0))
2510 (org-in-indented-comment-line))
2511 ;; Check if this is a defined entity, so that is may
2513 (org-entity-get (match-string 1))
2514 ;; Do not protect interior of footnotes. Those have
2515 ;; already been taken care of earlier in the function.
2516 ;; Yet, keep looking inside them for more commands.
2517 (and (equal (match-string 1) "footnote")
2518 (goto-char (match-end 1))))
2519 (add-text-properties (match-beginning 0) (match-end 0)
2520 '(org-protected t
)))))
2522 ;; Special case for \nbsp
2523 (goto-char (point-min))
2524 (while (re-search-forward "\\\\nbsp\\({}\\|\\>\\)" nil t
)
2526 (replace-match (org-export-latex-protect-string "~"))))
2528 ;; Protect LaTeX entities
2529 (goto-char (point-min))
2530 (while (re-search-forward org-latex-entities-regexp nil t
)
2532 (add-text-properties (match-beginning 0) (match-end 0)
2533 '(org-protected t
))))
2535 ;; Replace radio links
2536 (goto-char (point-min))
2537 (while (re-search-forward
2538 (concat "<<<?" org-export-latex-all-targets-re
2539 ">>>?\\((INVISIBLE)\\)?") nil t
)
2540 (org-if-unprotected-at (+ (match-beginning 0) 2)
2543 (org-export-latex-protect-string
2544 (format "\\label{%s}" (save-match-data (org-solidify-link-text
2545 (match-string 1)))))
2546 (if (match-string 2) "" (match-string 1)))
2549 ;; Delete @<...> constructs
2550 ;; Thanks to Daniel Clemente for this regexp
2551 (goto-char (point-min))
2552 (while (re-search-forward "@<\\(?:[^\"\n]\\|\".*\"\\)*?>" nil t
)
2554 (replace-match ""))))
2556 (defun org-export-latex-fix-inputenc ()
2557 "Set the coding system in inputenc to what the buffer is."
2558 (let* ((cs buffer-file-coding-system
)
2559 (opt (or (ignore-errors (latexenc-coding-system-to-inputenc cs
))
2562 ;; Translate if that is requested
2563 (setq opt
(or (cdr (assoc opt org-export-latex-inputenc-alist
)) opt
))
2564 ;; find the \usepackage statement and replace the option
2565 (goto-char (point-min))
2566 (while (re-search-forward "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
2568 (goto-char (match-beginning 1))
2569 (delete-region (match-beginning 1) (match-end 1))
2571 (and buffer-file-name
2576 (defun org-export-latex-lists ()
2577 "Convert plain text lists in current buffer into LaTeX lists."
2578 ;; `org-list-end-re' output has changed since preprocess from
2579 ;; org-exp.el. Make sure it is taken into account.
2580 (let ((org-list-end-re "^ORG-LIST-END-MARKER\n"))
2583 ;; For each type of context allowed for list export (E), find
2584 ;; every list, parse it, delete it and insert resulting
2585 ;; conversion to latex (RES), while keeping the same
2586 ;; `original-indentation' property.
2588 (goto-char (point-min))
2589 (while (re-search-forward (org-item-beginning-re) nil t
)
2590 (when (and (eq (get-text-property (point) 'list-context
) e
)
2591 (not (get-text-property (point) 'org-example
)))
2595 ;; Narrowing is needed because we're converting
2596 ;; from inner functions to outer ones.
2598 (narrow-to-region (point) (point-max))
2599 (org-list-parse-list t
))
2600 org-export-latex-list-parameters
))
2601 ;; Extend previous value of original-indentation to the
2603 (insert (org-add-props res nil
'original-indentation
2604 (org-find-text-property-in-string
2605 'original-indentation res
)))))))
2606 ;; List of allowed contexts for export, and the default one.
2607 (append org-list-export-context
'(nil)))))
2609 (defconst org-latex-entities
2639 "\\begin{description}"
2640 "\\begin{enumerate}"
2644 "\\begin{flushleft}"
2645 "\\begin{flushright}"
2650 "\\begin{quotation}"
2655 "\\begin{thebibliography}"
2657 "\\begin{titlepage}"
2784 "A list of LaTeX commands to be protected when performing conversion.")
2786 (defconst org-latex-entities-regexp
2788 (dolist (x org-latex-entities
)
2789 (if (string-match "[a-zA-Z]$" x
)
2792 (concat "\\(" (regexp-opt (nreverse names
)) "\\>\\)"
2793 "\\|\\(" (regexp-opt (nreverse rest
)) "\\)")))
2795 (provide 'org-export-latex
)
2796 (provide 'org-latex
)
2798 ;;; org-latex.el ends here