1 ;;; org-latex.el --- LaTeX exporter for org-mode
3 ;; Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 ;; Emacs Lisp Archive Entry
6 ;; Filename: org-latex.el
8 ;; Author: Bastien Guerry <bzg AT altern DOT org>
9 ;; Maintainer: Carsten Dominik <carsten.dominik AT gmail DOT com>
10 ;; Keywords: org, wp, tex
11 ;; Description: Converts an org-mode buffer into LaTeX
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 ;; This library implements a LaTeX exporter for org-mode.
32 ;; It is part of Org and will be autoloaded
34 ;; The interactive functions are similar to those of the HTML exporter:
36 ;; M-x `org-export-as-latex'
37 ;; M-x `org-export-as-pdf'
38 ;; M-x `org-export-as-pdf-and-open'
39 ;; M-x `org-export-as-latex-batch'
40 ;; M-x `org-export-as-latex-to-buffer'
41 ;; M-x `org-export-region-as-latex'
42 ;; M-x `org-replace-region-by-latex'
56 (defvar org-export-latex-class nil
)
57 (defvar org-export-latex-class-options nil
)
58 (defvar org-export-latex-header nil
)
59 (defvar org-export-latex-append-header nil
)
60 (defvar org-export-latex-options-plist nil
)
61 (defvar org-export-latex-todo-keywords-1 nil
)
62 (defvar org-export-latex-complex-heading-re nil
)
63 (defvar org-export-latex-not-done-keywords nil
)
64 (defvar org-export-latex-done-keywords nil
)
65 (defvar org-export-latex-display-custom-times nil
)
66 (defvar org-export-latex-all-targets-re nil
)
67 (defvar org-export-latex-add-level
0)
68 (defvar org-export-latex-sectioning
"")
69 (defvar org-export-latex-sectioning-depth
0)
70 (defvar org-export-latex-special-keyword-regexp
71 (concat "\\<\\(" org-scheduled-string
"\\|"
72 org-deadline-string
"\\|"
73 org-closed-string
"\\)")
74 "Regexp matching special time planning keywords plus the time after it.")
76 (defvar latexp
) ; dynamically scoped from org.el
77 (defvar re-quote
) ; dynamically scoped from org.el
78 (defvar commentsp
) ; dynamically scoped from org.el
82 (defgroup org-export-latex nil
83 "Options for exporting Org-mode files to LaTeX."
84 :tag
"Org Export LaTeX"
87 (defcustom org-export-latex-default-class
"article"
88 "The default LaTeX class."
89 :group
'org-export-latex
90 :type
'(string :tag
"LaTeX class"))
92 (defcustom org-export-latex-classes
94 "\\documentclass[11pt]{article}"
95 ("\\section{%s}" .
"\\section*{%s}")
96 ("\\subsection{%s}" .
"\\subsection*{%s}")
97 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")
98 ("\\paragraph{%s}" .
"\\paragraph*{%s}")
99 ("\\subparagraph{%s}" .
"\\subparagraph*{%s}"))
101 "\\documentclass[11pt]{report}"
102 ("\\part{%s}" .
"\\part*{%s}")
103 ("\\chapter{%s}" .
"\\chapter*{%s}")
104 ("\\section{%s}" .
"\\section*{%s}")
105 ("\\subsection{%s}" .
"\\subsection*{%s}")
106 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}"))
108 "\\documentclass[11pt]{book}"
109 ("\\part{%s}" .
"\\part*{%s}")
110 ("\\chapter{%s}" .
"\\chapter*{%s}")
111 ("\\section{%s}" .
"\\section*{%s}")
112 ("\\subsection{%s}" .
"\\subsection*{%s}")
113 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}"))
115 "\\documentclass{beamer}"
116 org-beamer-sectioning
118 "Alist of LaTeX classes and associated header and structure.
119 If #+LaTeX_CLASS is set in the buffer, use its value and the
120 associated information. Here is the structure of each cell:
124 (numbered-section . unnumbered-section\)
130 The HEADER-STRING is the header that will be inserted into the LaTeX file.
131 It should contain the \\documentclass macro, and anything else that is needed
132 for this setup. To this header, the following commands will be added:
134 - Calls to \\usepackage for all packages mentioned in the variables
135 `org-export-latex-default-packages-alist' and
136 `org-export-latex-packages-alist'. Thus, your header definitions should
137 avoid to also request these packages.
139 - Lines specified via \"#+LaTeX_HEADER:\"
141 If you need more control about the sequence in which the header is built
142 up, or if you want to exclude one of these building blocks for a particular
143 class, you can use the following macro-like placeholders.
145 [DEFAULT-PACKAGES] \\usepackage statements for default packages
146 [NO-DEFAULT-PACKAGES] do not include any of the default packages
147 [PACKAGES] \\usepackage statements for packages
148 [NO-PACKAGES] do not include the packages
149 [EXTRA] the stuff from #+LaTeX_HEADER
150 [NO-EXTRA] do not include #+LaTeX_HEADER stuff
151 [BEAMER-HEADER-EXTRA] the beamer extra headers
155 \\documentclass{article}
156 [NO-DEFAULT-PACKAGES]
158 \\providecommand{\\alert}[1]{\\textbf{#1}}
161 will omit the default packages, and will include the #+LaTeX_HEADER lines,
162 then have a call to \\providecommand, and then place \\usepackage commands
163 based on the content of `org-export-latex-packages-alist'.
165 If your header or `org-export-latex-default-packages-alist' inserts
166 \"\\usepackage[AUTO]{inputenc}\", AUTO will automatically be replaced with
167 a coding system derived from `buffer-file-coding-system'. See also the
168 variable `org-export-latex-inputenc-alist' for a way to influence this
171 The sectioning structure
172 ------------------------
174 The sectioning structure of the class is given by the elements following
175 the header string. For each sectioning level, a number of strings is
176 specified. A %s formatter is mandatory in each section string and will
177 be replaced by the title of the section.
179 Instead of a cons cell (numbered . unnumbered), you can also provide a list
182 (numbered-open numbered-close)
186 (numbered-open numbered-close unnumbered-open unnumbered-close)
188 providing opening and closing strings for a LaTeX environment that should
189 represent the document section. The opening clause should have a %s
190 to represent the section title.
192 Instead of a list of sectioning commands, you can also specify a
193 function name. That function will be called with two parameters,
194 the (reduced) level of the headline, and the headline text. The function
195 must return a cons cell with the (possibly modified) headline text, and the
196 sectioning list in the cdr."
197 :group
'org-export-latex
199 (list (string :tag
"LaTeX class")
200 (string :tag
"LaTeX header")
201 (repeat :tag
"Levels" :inline t
204 (string :tag
" numbered")
205 (string :tag
"unnumbered"))
206 (list :tag
"Environment"
207 (string :tag
"Opening (numbered)")
208 (string :tag
"Closing (numbered)")
209 (string :tag
"Opening (unnumbered)")
210 (string :tag
"Closing (unnumbered)"))
211 (function :tag
"Hook computing sectioning"))))))
213 (defcustom org-export-latex-inputenc-alist nil
214 "Alist of inputenc coding system names, and what should really be used.
215 For example, adding an entry
217 (\"utf8\" . \"utf8x\")
219 will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
220 are written as utf8 files."
221 :group
'org-export-latex
224 (string :tag
"Derived from buffer")
225 (string :tag
"Use this instead"))))
228 (defcustom org-export-latex-emphasis-alist
229 '(("*" "\\textbf{%s}" nil
)
230 ("/" "\\emph{%s}" nil
)
231 ("_" "\\underline{%s}" nil
)
235 "Alist of LaTeX expressions to convert emphasis fontifiers.
236 Each element of the list is a list of three elements.
237 The first element is the character used as a marker for fontification.
238 The second element is a formatting string to wrap fontified text with.
239 If it is \"\\verb\", Org will automatically select a delimiter
240 character that is not in the string.
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-timestamp-markup
"\\textit{%s}"
284 "A printf format string to be applied to time stamps."
285 :group
'org-export-latex
288 (defcustom org-export-latex-timestamp-keyword-markup
"\\texttt{%s}"
289 "A printf format string to be applied to time stamps."
290 :group
'org-export-latex
293 (defcustom org-export-latex-hyperref-format
"\\href{%s}{%s}"
294 "A printf format string to be applied to hyperref links.
295 The format must contain two %s instances. The first will be filled with
296 the link, the second with the link description."
297 :group
'org-export-latex
300 (defcustom org-export-latex-tables-verbatim nil
301 "When non-nil, tables are exported verbatim."
302 :group
'org-export-latex
305 (defcustom org-export-latex-tables-centered t
306 "When non-nil, tables are exported in a center environment."
307 :group
'org-export-latex
310 (defcustom org-export-latex-tables-column-borders nil
311 "When non-nil, grouping columns can cause outer vertical lines in tables.
312 When nil, grouping causes only separation lines between groups."
313 :group
'org-export-latex
316 (defcustom org-export-latex-low-levels
'itemize
317 "How to convert sections below the current level of sectioning.
318 This is specified by the `org-export-headline-levels' option or the
319 value of \"H:\" in Org's #+OPTION line.
321 This can be either nil (skip the sections), `description', `itemize',
322 or `enumerate' (convert the sections as the corresponding list type), or
323 a string to be used instead of \\section{%s}. In this latter case,
324 the %s stands here for the inserted headline and is mandatory.
326 It may also be a list of three string to define a user-defined environment
327 that should be used. The first string should be the like
328 \"\\begin{itemize}\", the second should be like \"\\item %s %s\" with up
329 to two occurrences of %s for the title and a label, respectively. The third
330 string should be like \"\\end{itemize\"."
331 :group
'org-export-latex
332 :type
'(choice (const :tag
"Ignore" nil
)
333 (const :tag
"Convert as descriptive list" description
)
334 (const :tag
"Convert as itemized list" itemize
)
335 (const :tag
"Convert as enumerated list" enumerate
)
336 (list :tag
"User-defined environment"
337 :value
("\\begin{itemize}" "\\end{itemize}" "\\item %s")
338 (string :tag
"Start")
340 (string :tag
"item"))
341 (string :tag
"Use a section string" :value
"\\subparagraph{%s}")))
343 (defcustom org-export-latex-list-parameters
344 '(:cbon
"$\\boxtimes$" :cboff
"$\\Box$")
345 "Parameters for the LaTeX list exporter.
346 These parameters will be passed on to `org-list-to-latex', which in turn
347 will pass them (combined with the LaTeX default list parameters) to
348 `org-list-to-generic'."
349 :group
'org-export-latex
352 (defcustom org-export-latex-verbatim-wrap
353 '("\\begin{verbatim}\n" .
"\\end{verbatim}\n")
354 "Environment to be wrapped around a fixed-width section in LaTeX export.
355 This is a cons with two strings, to be added before and after the
358 Defaults to \\begin{verbatim} and \\end{verbatim}."
359 :group
'org-export-translation
360 :group
'org-export-latex
361 :type
'(cons (string :tag
"Open")
362 (string :tag
"Close")))
364 (defcustom org-export-latex-listings nil
365 "Non-nil means export source code using the listings package.
366 This package will fontify source code, possibly even with color.
367 If you want to use this, you also need to make LaTeX use the
368 listings package, and if you want to have color, the color
369 package. Just add these to `org-export-latex-packages-alist',
370 for example using customize, or with something like
373 (add-to-list 'org-export-latex-packages-alist '(\"\" \"listings\"))
374 (add-to-list 'org-export-latex-packages-alist '(\"\" \"color\"))"
375 :group
'org-export-latex
378 (defcustom org-export-latex-listings-langs
379 '((emacs-lisp "Lisp") (lisp "Lisp")
382 (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
383 (html "HTML") (xml "XML")
384 (tex "TeX") (latex "TeX")
385 (shell-script "bash")
387 (ocaml "Caml") (caml "Caml")
389 "Alist mapping languages to their listing language counterpart.
390 The key is a symbol, the major mode symbol without the \"-mode\".
391 The value is the string that should be inserted as the language parameter
392 for the listings package. If the mode name and the listings name are
393 the same, the language does not need an entry in this list - but it does not
394 hurt if it is present."
395 :group
'org-export-latex
398 (symbol :tag
"Major mode ")
399 (string :tag
"Listings language"))))
401 (defcustom org-export-latex-remove-from-headlines
402 '(:todo nil
:priority nil
:tags nil
)
403 "A plist of keywords to remove from headlines. OBSOLETE.
404 Non-nil means remove this keyword type from the headline.
406 Don't remove the keys, just change their values.
408 Obsolete, this variable is no longer used. Use the separate
409 variables `org-export-with-todo-keywords', `org-export-with-priority',
410 and `org-export-with-tags' instead."
412 :group
'org-export-latex
)
414 (defcustom org-export-latex-image-default-option
"width=10em"
415 "Default option for images."
416 :group
'org-export-latex
419 (defcustom org-export-latex-tabular-environment
"tabular"
420 "Default environment used to build tables."
421 :group
'org-export-latex
424 (defcustom org-export-latex-inline-image-extensions
425 '("pdf" "jpeg" "jpg" "png" "ps" "eps")
426 "Extensions of image files that can be inlined into LaTeX.
427 Note that the image extension *actually* allowed depend on the way the
428 LaTeX file is processed. When used with pdflatex, pdf, jpg and png images
429 are OK. When processing through dvi to Postscript, only ps and eps are
430 allowed. The default we use here encompasses both."
431 :group
'org-export-latex
432 :type
'(repeat (string :tag
"Extension")))
434 (defcustom org-export-latex-coding-system nil
435 "Coding system for the exported LaTex file."
436 :group
'org-export-latex
437 :type
'coding-system
)
439 (defgroup org-export-pdf nil
440 "Options for exporting Org-mode files to PDF, via LaTeX."
441 :tag
"Org Export PDF"
442 :group
'org-export-latex
445 (defcustom org-latex-to-pdf-process
446 '("pdflatex -interaction nonstopmode %s"
447 "pdflatex -interaction nonstopmode %s")
448 "Commands to process a LaTeX file to a PDF file.
449 This is a list of strings, each of them will be given to the shell
450 as a command. %s in the command will be replaced by the full file name, %b
451 by the file base name (i.e. without extension).
452 The reason why this is a list is that it usually takes several runs of
453 pdflatex, maybe mixed with a call to bibtex. Org does not have a clever
454 mechanism to detect which of these commands have to be run to get to a stable
455 result, and it also does not do any error checking.
457 Alternatively, this may be a Lisp function that does the processing, so you
458 could use this to apply the machinery of AUCTeX or the Emacs LaTeX mode.
459 This function should accept the file name as its single argument."
460 :group
'org-export-pdf
461 :type
'(choice (repeat :tag
"Shell command sequence"
462 (string :tag
"Shell command"))
465 (defcustom org-export-pdf-logfiles
466 '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb")
467 "The list of file extensions to consider as LaTeX logfiles."
468 :group
'org-export-pdf
469 :type
'(repeat (string :tag
"Extension")))
471 (defcustom org-export-pdf-remove-logfiles t
472 "Non-nil means remove the logfiles produced by PDF production.
473 These are the .aux, .log, .out, and .toc files."
474 :group
'org-export-pdf
479 (defvar org-export-latex-after-initial-vars-hook nil
480 "Hook run before LaTeX export.
481 The exact moment is after the initial variables like org-export-latex-class
482 have been determined from the environment.")
484 (defvar org-export-latex-after-blockquotes-hook nil
485 "Hook run during LaTeX export, after blockquote, verse, center are done.")
487 (defvar org-export-latex-final-hook nil
488 "Hook run in the finalized LaTeX buffer.")
490 (defvar org-export-latex-after-save-hook nil
491 "Hook run in the finalized LaTeX buffer, after it has been saved.")
493 ;;; Autoload functions:
496 (defun org-export-as-latex-batch ()
497 "Call `org-export-as-latex', may be used in batch processing.
501 --load=$HOME/lib/emacs/org.el
502 --eval \"(setq org-export-headline-levels 2)\"
503 --visit=MyFile --funcall org-export-as-latex-batch"
504 (org-export-as-latex org-export-headline-levels
'hidden
))
507 (defun org-export-as-latex-to-buffer (arg)
508 "Call `org-export-as-latex` with output to a temporary buffer.
509 No file is created. The prefix ARG is passed through to `org-export-as-latex'."
511 (org-export-as-latex arg nil nil
"*Org LaTeX Export*")
512 (when org-export-show-temporary-export-buffer
513 (switch-to-buffer-other-window "*Org LaTeX Export*")))
516 (defun org-replace-region-by-latex (beg end
)
517 "Replace the region from BEG to END with its LaTeX export.
518 It assumes the region has `org-mode' syntax, and then convert it to
519 LaTeX. This can be used in any buffer. For example, you could
520 write an itemized list in `org-mode' syntax in an LaTeX buffer and
521 then use this command to convert it."
524 (save-window-excursion
526 (setq latex
(org-export-region-as-latex
528 (setq reg
(buffer-substring beg end
)
529 buf
(get-buffer-create "*Org tmp*"))
530 (with-current-buffer buf
534 (setq latex
(org-export-region-as-latex
535 (point-min) (point-max) t
'string
)))
537 (delete-region beg end
)
541 (defun org-export-region-as-latex (beg end
&optional body-only buffer
)
542 "Convert region from BEG to END in `org-mode' buffer to LaTeX.
543 If prefix arg BODY-ONLY is set, omit file header, footer, and table of
544 contents, and only produce the region of converted text, useful for
545 cut-and-paste operations.
546 If BUFFER is a buffer or a string, use/create that buffer as a target
547 of the converted LaTeX. If BUFFER is the symbol `string', return the
548 produced LaTeX as a string and leave no buffer behind. For example,
549 a Lisp program could call this function in the following way:
551 (setq latex (org-export-region-as-latex beg end t 'string))
553 When called interactively, the output buffer is selected, and shown
554 in a window. A non-interactive call will only return the buffer."
556 (when (interactive-p)
557 (setq buffer
"*Org LaTeX Export*"))
558 (let ((transient-mark-mode t
) (zmacs-regions t
)
560 (setq ext-plist
(plist-put ext-plist
:ignore-subtree-p t
))
562 (set-mark (point)) ;; to activate the region
564 (setq rtn
(org-export-as-latex
567 (if (fboundp 'deactivate-mark
) (deactivate-mark))
568 (if (and (interactive-p) (bufferp rtn
))
569 (switch-to-buffer-other-window rtn
)
573 (defun org-export-as-latex (arg &optional hidden ext-plist
574 to-buffer body-only pub-dir
)
575 "Export current buffer to a LaTeX file.
576 If there is an active region, export only the region. The prefix
577 ARG specifies how many levels of the outline should become
578 headlines. The default is 3. Lower levels will be exported
579 depending on `org-export-latex-low-levels'. The default is to
580 convert them as description lists.
581 HIDDEN is obsolete and does nothing.
582 EXT-PLIST is a property list with
583 external parameters overriding org-mode's default settings, but
584 still inferior to file-local settings. When TO-BUFFER is
585 non-nil, create a buffer with that name and export to that
586 buffer. If TO-BUFFER is the symbol `string', don't leave any
587 buffer behind but just return the resulting LaTeX as a string.
588 When BODY-ONLY is set, don't produce the file header and footer,
589 simply return the content of \\begin{document}...\\end{document},
590 without even the \\begin{document} and \\end{document} commands.
591 when PUB-DIR is set, use this as the publishing directory."
593 (when (and (not body-only
) arg
(listp arg
)) (setq body-only t
))
594 (run-hooks 'org-export-first-hook
)
596 ;; Make sure we have a file name when we need it.
597 (when (and (not (or to-buffer body-only
))
598 (not buffer-file-name
))
599 (if (buffer-base-buffer)
600 (org-set-local 'buffer-file-name
601 (with-current-buffer (buffer-base-buffer)
603 (error "Need a file name to be able to export")))
605 (message "Exporting to LaTeX...")
607 (let ((inhibit-read-only t
))
608 (remove-text-properties (point-min) (point-max)
609 '(:org-license-to-kill nil
))))
610 (org-update-radio-target-regexp)
611 (org-export-latex-set-initial-vars ext-plist arg
)
612 (setq org-export-opt-plist org-export-latex-options-plist
)
613 (org-install-letbind)
614 (run-hooks 'org-export-latex-after-initial-vars-hook
)
615 (let* ((wcf (current-window-configuration))
616 (opt-plist org-export-latex-options-plist
)
617 (region-p (org-region-active-p))
618 (rbeg (and region-p
(region-beginning)))
619 (rend (and region-p
(region-end)))
621 (if (plist-get opt-plist
:ignore-subtree-p
)
626 (and (org-at-heading-p)
627 (>= (org-end-of-subtree t t
) rend
))))))
628 (opt-plist (setq org-export-opt-plist
630 (org-export-add-subtree-options opt-plist rbeg
)
632 ;; Make sure the variable contains the updated values.
633 (org-export-latex-options-plist (setq org-export-opt-plist opt-plist
))
634 ;; The following two are dynamically scoped into other
636 (org-current-export-dir
637 (or pub-dir
(org-export-directory :html opt-plist
)))
638 (org-current-export-file buffer-file-name
)
639 (title (or (and subtree-p
(org-export-get-title-from-subtree))
640 (plist-get opt-plist
:title
)
642 (plist-get opt-plist
:skip-before-1st-heading
))
643 (org-export-grab-title-from-buffer))
644 (and buffer-file-name
645 (file-name-sans-extension
646 (file-name-nondirectory buffer-file-name
)))
651 (file-name-as-directory
653 (org-export-directory :LaTeX ext-plist
)))
654 (file-name-sans-extension
656 (org-entry-get rbeg
"EXPORT_FILE_NAME" t
))
657 (file-name-nondirectory ;sans-extension
659 (error "Don't know which export file to use.")))))
663 (if (equal (file-truename filename
)
664 (file-truename (or buffer-file-name
"dummy.org")))
665 (concat filename
".tex")
667 (buffer (if to-buffer
669 ((eq to-buffer
'string
) (get-buffer-create
670 "*Org LaTeX Export*"))
671 (t (get-buffer-create to-buffer
)))
672 (find-file-noselect filename
)))
673 (odd org-odd-levels-only
)
674 (header (org-export-latex-make-header title opt-plist
))
675 (skip (cond (subtree-p nil
)
677 (t (plist-get opt-plist
:skip-before-1st-heading
))))
678 (text (plist-get opt-plist
:text
))
679 (org-export-preprocess-hook
681 `(lambda () (org-set-local 'org-complex-heading-regexp
682 ,org-export-latex-complex-heading-re
))
683 org-export-preprocess-hook
))
684 (first-lines (if skip
"" (org-export-latex-first-lines
691 (if region-p rend
))))
692 (coding-system (and (boundp 'buffer-file-coding-system
)
693 buffer-file-coding-system
))
694 (coding-system-for-write (or org-export-latex-coding-system
696 (save-buffer-coding-system (or org-export-latex-coding-system
698 (region (buffer-substring
699 (if region-p
(region-beginning) (point-min))
700 (if region-p
(region-end) (point-max))))
702 (and text
(string-match "\\S-" text
)
703 (org-export-preprocess-string
708 :tags
(plist-get opt-plist
:tags
)
709 :priority
(plist-get opt-plist
:priority
)
710 :footnotes
(plist-get opt-plist
:footnotes
)
711 :drawers
(plist-get opt-plist
:drawers
)
712 :timestamps
(plist-get opt-plist
:timestamps
)
713 :todo-keywords
(plist-get opt-plist
:todo-keywords
)
715 :skip-before-1st-heading skip
718 :LaTeX-fragments nil
)))
720 (org-export-preprocess-string
725 :tags
(plist-get opt-plist
:tags
)
726 :priority
(plist-get opt-plist
:priority
)
727 :footnotes
(plist-get opt-plist
:footnotes
)
728 :drawers
(plist-get opt-plist
:drawers
)
729 :timestamps
(plist-get opt-plist
:timestamps
)
730 :todo-keywords
(plist-get opt-plist
:todo-keywords
)
731 :add-text
(if (eq to-buffer
'string
) nil text
)
732 :skip-before-1st-heading skip
733 :select-tags
(plist-get opt-plist
:select-tags
)
734 :exclude-tags
(plist-get opt-plist
:exclude-tags
)
735 :LaTeX-fragments nil
)))
739 (org-install-letbind)
741 (and (fboundp 'set-buffer-file-coding-system
)
742 (set-buffer-file-coding-system coding-system-for-write
))
744 ;; insert the header and initial document commands
745 (unless (or (eq to-buffer
'string
) body-only
)
748 ;; insert text found in #+TEXT
749 (when (and text
(not (eq to-buffer
'string
)))
750 (insert (org-export-latex-content
751 text
'(lists tables fixed-width keywords
))
754 ;; insert lines before the first headline
756 (insert first-lines
))
758 ;; export the content of headlines
759 (org-export-latex-global
761 (insert string-for-export
)
762 (goto-char (point-min))
763 (when (re-search-forward "^\\(\\*+\\) " nil t
)
764 (let* ((asters (length (match-string 1)))
765 (level (if odd
(- asters
2) (- asters
1))))
766 (setq org-export-latex-add-level
767 (if odd
(1- (/ (1+ asters
) 2)) (1- asters
)))
768 (org-export-latex-parse-global level odd
)))))
771 (unless body-only
(insert "\n\\end{document}"))
773 ;; Attach description terms to the \item macro
774 (goto-char (point-min))
775 (while (re-search-forward "^[ \t]*\\\\item\\([ \t]+\\)\\[" nil t
)
776 (delete-region (match-beginning 1) (match-end 1)))
778 ;; Relocate the table of contents
779 (goto-char (point-min))
780 (when (re-search-forward "\\[TABLE-OF-CONTENTS\\]" nil t
)
781 (goto-char (point-min))
782 (while (re-search-forward "\\\\tableofcontents\\>[ \t]*\n?" nil t
)
784 (goto-char (point-min))
785 (and (re-search-forward "\\[TABLE-OF-CONTENTS\\]" nil t
)
786 (replace-match "\\tableofcontents" t t
)))
788 ;; Cleanup forced line ends in items where they are not needed
789 (goto-char (point-min))
790 (while (re-search-forward
791 "^[ \t]*\\\\item\\>.*\\(\\\\\\\\\\)[ \t]*\\(\n\\\\label.*\\)*\n\\\\begin"
793 (delete-region (match-beginning 1) (match-end 1)))
794 (goto-char (point-min))
795 (while (re-search-forward
796 "^[ \t]*\\\\item\\>.*\\(\\\\\\\\\\)[ \t]*\\(\n\\\\label.*\\)*"
798 (if (looking-at "[\n \t]+")
799 (replace-match "\n")))
801 (run-hooks 'org-export-latex-final-hook
)
803 (unless (eq major-mode
'latex-mode
) (latex-mode))
805 (org-export-latex-fix-inputenc)
806 (run-hooks 'org-export-latex-after-save-hook
)
807 (goto-char (point-min))
808 (or (org-export-push-to-kill-ring "LaTeX")
809 (message "Exporting to LaTeX...done"))
811 (if (eq to-buffer
'string
)
812 (prog1 (buffer-substring (point-min) (point-max))
813 (kill-buffer (current-buffer)))
815 (set-window-configuration wcf
))))
818 (defun org-export-as-pdf (arg &optional hidden ext-plist
819 to-buffer body-only pub-dir
)
820 "Export as LaTeX, then process through to PDF."
822 (message "Exporting to PDF...")
823 (let* ((wconfig (current-window-configuration))
824 (lbuf (org-export-as-latex arg hidden ext-plist
825 to-buffer body-only pub-dir
))
826 (file (buffer-file-name lbuf
))
827 (base (file-name-sans-extension (buffer-file-name lbuf
)))
828 (pdffile (concat base
".pdf"))
829 (cmds org-latex-to-pdf-process
)
830 (outbuf (get-buffer-create "*Org PDF LaTeX Output*"))
831 (bibtex-p (with-current-buffer lbuf
833 (goto-char (point-min))
834 (re-search-forward "\\\\bibliography{" nil t
))))
836 (with-current-buffer outbuf
(erase-buffer))
837 (message "Processing LaTeX file...")
838 (if (and cmds
(symbolp cmds
))
841 (setq cmd
(pop cmds
))
842 (while (string-match "%b" cmd
)
843 (setq cmd
(replace-match
845 (shell-quote-argument base
))
847 (while (string-match "%s" cmd
)
848 (setq cmd
(replace-match
850 (shell-quote-argument file
))
852 (shell-command cmd outbuf outbuf
)))
853 (message "Processing LaTeX file...done")
854 (if (not (file-exists-p pdffile
))
855 (error "PDF file was not produced")
856 (set-window-configuration wconfig
)
857 (when org-export-pdf-remove-logfiles
858 (dolist (ext org-export-pdf-logfiles
)
859 (setq file
(concat base
"." ext
))
860 (and (file-exists-p file
) (delete-file file
))))
861 (message "Exporting to PDF...done")
865 (defun org-export-as-pdf-and-open (arg)
866 "Export as LaTeX, then process through to PDF, and open."
868 (let ((pdffile (org-export-as-pdf arg
)))
871 (org-open-file pdffile
)
872 (when org-export-kill-product-buffer-when-displayed
873 (kill-buffer (find-buffer-visiting
874 (concat (file-name-sans-extension (buffer-file-name))
876 (error "PDF file was not produced"))))
878 ;;; Parsing functions:
880 (defun org-export-latex-parse-global (level odd
)
881 "Parse the current buffer recursively, starting at LEVEL.
882 If ODD is non-nil, assume the buffer only contains odd sections.
883 Return a list reflecting the document structure."
885 (goto-char (point-min))
886 (let* ((cnt 0) output
887 (depth org-export-latex-sectioning-depth
))
888 (while (org-re-search-forward-unprotected
889 (concat "^\\(\\(?:\\*\\)\\{"
890 (number-to-string (+ (if odd
2 1) level
))
892 ;; make sure that there is no upper heading
896 (org-re-search-forward-unprotected
897 (concat "^\\(\\(?:\\*\\)\\{"
898 (number-to-string level
)
899 "\\}\\) \\(.*\\)$") nil t
)))) t
)
901 (let* ((pos (match-beginning 0))
902 (heading (match-string 2))
903 (nlevel (if odd
(/ (+ 3 level
) 2) (1+ level
))))
908 (if (org-re-search-forward-unprotected
909 (concat "^\\(\\(?:\\*\\)\\{"
910 (number-to-string (+ (if odd
2 1) level
))
911 "\\}\\) \\(.*\\)$") nil t
)
914 (goto-char (point-min))
922 `(heading .
,heading
)
923 `(content .
,(org-export-latex-parse-content))
924 `(subcontent .
,(org-export-latex-parse-subcontent
929 (defun org-export-latex-parse-content ()
930 "Extract the content of a section."
932 (end (if (org-re-search-forward-unprotected "^\\(\\*\\)+ .*$" nil t
)
933 (progn (beginning-of-line) (point))
935 (buffer-substring beg end
)))
937 (defun org-export-latex-parse-subcontent (level odd
)
938 "Extract the subcontent of a section at LEVEL.
939 If ODD Is non-nil, assume subcontent only contains odd sections."
940 (if (not (org-re-search-forward-unprotected
941 (concat "^\\(\\(?:\\*\\)\\{"
942 (number-to-string (+ (if odd
4 2) level
))
945 nil
; subcontent is nil
946 (org-export-latex-parse-global (+ (if odd
2 1) level
) odd
)))
948 ;;; Rendering functions:
949 (defun org-export-latex-global (content)
950 "Export CONTENT to LaTeX.
951 CONTENT is an element of the list produced by
952 `org-export-latex-parse-global'."
953 (if (eq (car content
) 'subcontent
)
954 (mapc 'org-export-latex-sub
(cdr content
))
955 (org-export-latex-sub (car content
))))
957 (defun org-export-latex-sub (subcontent)
958 "Export the list SUBCONTENT to LaTeX.
959 SUBCONTENT is an alist containing information about the headline
961 (let ((num (plist-get org-export-latex-options-plist
:section-numbers
)))
962 (mapc (lambda(x) (org-export-latex-subcontent x num
)) subcontent
)))
964 (defun org-export-latex-subcontent (subcontent num
)
965 "Export each cell of SUBCONTENT to LaTeX.
966 If NUM, export sections as numerical sections."
967 (let* ((heading (cdr (assoc 'heading subcontent
)))
968 (level (- (cdr (assoc 'level subcontent
))
969 org-export-latex-add-level
))
970 (occur (number-to-string (cdr (assoc 'occur subcontent
))))
971 (content (cdr (assoc 'content subcontent
)))
972 (subcontent (cadr (assoc 'subcontent subcontent
)))
973 (label (org-get-text-property-any 0 'target heading
))
974 (label-list (cons label
(cdr (assoc label
975 org-export-target-aliases
))))
976 (sectioning org-export-latex-sectioning
)
977 (depth org-export-latex-sectioning-depth
)
978 main-heading sub-heading
)
979 (when (symbolp (car sectioning
))
980 (setq sectioning
(funcall (car sectioning
) level heading
))
982 (setq heading
(car sectioning
)
983 sectioning
(cdr sectioning
)
984 ;; target property migh have changed...
985 label
(org-get-text-property-any 0 'target heading
)
986 label-list
(cons label
(cdr (assoc label
987 org-export-target-aliases
)))))
988 (if sectioning
(setq sectioning
(make-list 10 sectioning
)))
989 (setq depth
(if sectioning
10000 0)))
990 (if (string-match "[ \t]*\\\\\\\\[ \t]*" heading
)
991 (setq main-heading
(substring heading
0 (match-beginning 0))
992 sub-heading
(substring heading
(match-end 0))))
993 (setq heading
(org-export-latex-fontify-headline heading
)
994 sub-heading
(and sub-heading
995 (org-export-latex-fontify-headline sub-heading
))
996 main-heading
(and main-heading
997 (org-export-latex-fontify-headline main-heading
)))
1001 (let* ((sec (nth (1- level
) sectioning
))
1003 (if (consp (cdr sec
))
1004 (setq start
(nth (if num
0 2) sec
)
1005 end
(nth (if num
1 3) sec
))
1006 (setq start
(if num
(car sec
) (cdr sec
))))
1007 (insert (format start
(if main-heading main-heading heading
)
1008 (or sub-heading
"")))
1011 (insert (mapconcat (lambda (l) (format "\\label{%s}" l
))
1012 label-list
"\n") "\n"))
1013 (insert (org-export-latex-content content
))
1014 (cond ((stringp subcontent
) (insert subcontent
))
1016 (while (org-looking-back "\n\n") (backward-delete-char 1))
1017 (org-export-latex-sub subcontent
)))
1018 (when (and end
(string-match "[^ \t]" end
))
1019 (let ((hook (org-get-text-property-any 0 'org-insert-hook end
)))
1020 (and (functionp hook
) (funcall hook
)))
1021 (insert end
"\n"))))
1022 ;; At a level under the hl option: we can drop this subsection
1024 (cond ((eq org-export-latex-low-levels
'description
)
1025 (if (string-match "% ends low level$"
1026 (buffer-substring (point-at-bol 0) (point)))
1027 (delete-region (point-at-bol 0) (point))
1028 (insert "\\begin{description}\n"))
1029 (insert (format "\n\\item[%s]%s~\n"
1031 (if label
(format "\\label{%s}" label
) "")))
1032 (insert (org-export-latex-content content
))
1033 (cond ((stringp subcontent
) (insert subcontent
))
1034 ((listp subcontent
) (org-export-latex-sub subcontent
)))
1035 (insert "\\end{description} % ends low level\n"))
1036 ((memq org-export-latex-low-levels
'(itemize enumerate
))
1037 (if (string-match "% ends low level$"
1038 (buffer-substring (point-at-bol 0) (point)))
1039 (delete-region (point-at-bol 0) (point))
1040 (insert (format "\\begin{%s}\n"
1041 (symbol-name org-export-latex-low-levels
))))
1042 (insert (format "\n\\item %s\\\\\n%s%%"
1044 (if label
(format "\\label{%s}" label
) "")))
1045 (insert (org-export-latex-content content
))
1046 (cond ((stringp subcontent
) (insert subcontent
))
1047 ((listp subcontent
) (org-export-latex-sub subcontent
)))
1048 (insert (format "\\end{%s} %% ends low level\n"
1049 (symbol-name org-export-latex-low-levels
))))
1051 ((listp org-export-latex-low-levels
)
1052 (if (string-match "% ends low level$"
1053 (buffer-substring (point-at-bol 0) (point)))
1054 (delete-region (point-at-bol 0) (point))
1055 (insert (car org-export-latex-low-levels
) "\n"))
1056 (insert (format (nth 2 org-export-latex-low-levels
)
1058 (if label
(format "\\label{%s}" label
) "")))
1059 (insert (org-export-latex-content content
))
1060 (cond ((stringp subcontent
) (insert subcontent
))
1061 ((listp subcontent
) (org-export-latex-sub subcontent
)))
1062 (insert (nth 1 org-export-latex-low-levels
)
1063 " %% ends low level\n"))
1065 ((stringp org-export-latex-low-levels
)
1066 (insert (format org-export-latex-low-levels heading
) "\n")
1067 (when label
(insert (format "\\label{%s}\n" label
)))
1068 (insert (org-export-latex-content content
))
1069 (cond ((stringp subcontent
) (insert subcontent
))
1070 ((listp subcontent
) (org-export-latex-sub subcontent
)))))))))
1072 ;;; Exporting internals:
1073 (defun org-export-latex-set-initial-vars (ext-plist level
)
1074 "Store org local variables required for LaTeX export.
1075 EXT-PLIST is an optional additional plist.
1076 LEVEL indicates the default depth for export."
1077 (setq org-export-latex-todo-keywords-1 org-todo-keywords-1
1078 org-export-latex-done-keywords org-done-keywords
1079 org-export-latex-not-done-keywords org-not-done-keywords
1080 org-export-latex-complex-heading-re org-complex-heading-regexp
1081 org-export-latex-display-custom-times org-display-custom-times
1082 org-export-latex-all-targets-re
1083 (org-make-target-link-regexp (org-all-targets))
1084 org-export-latex-options-plist
1085 (org-combine-plists (org-default-export-plist) ext-plist
1086 (org-infile-export-plist))
1087 org-export-latex-class
1088 (or (and (org-region-active-p)
1090 (goto-char (region-beginning))
1091 (and (looking-at org-complex-heading-regexp
)
1092 (org-entry-get nil
"LaTeX_CLASS" 'selective
))))
1096 (goto-char (point-min))
1097 (and (re-search-forward "^#\\+LaTeX_CLASS:[ \t]*\\(-[a-zA-Z]+\\)" nil t
)
1099 (plist-get org-export-latex-options-plist
:latex-class
)
1100 org-export-latex-default-class
)
1101 org-export-latex-class-options
1102 (or (and (org-region-active-p)
1104 (goto-char (region-beginning))
1105 (and (looking-at org-complex-heading-regexp
)
1106 (org-entry-get nil
"LaTeX_CLASS_OPTIONS" 'selective
))))
1110 (goto-char (point-min))
1111 (and (re-search-forward "^#\\+LaTeX_CLASS_OPTIONS:[ \t]*\\(.*?\\)[ \t]*$" nil t
)
1113 (plist-get org-export-latex-options-plist
:latex-class-options
))
1114 org-export-latex-class
1115 (or (car (assoc org-export-latex-class org-export-latex-classes
))
1116 (error "No definition for class `%s' in `org-export-latex-classes'"
1117 org-export-latex-class
))
1118 org-export-latex-header
1119 (cadr (assoc org-export-latex-class org-export-latex-classes
))
1120 org-export-latex-sectioning
1121 (cddr (assoc org-export-latex-class org-export-latex-classes
))
1122 org-export-latex-sectioning-depth
1125 (plist-get org-export-latex-options-plist
:headline-levels
))
1126 (sec-depth (length org-export-latex-sectioning
)))
1127 (if (> hl-levels sec-depth
) sec-depth hl-levels
))))
1128 (when (and org-export-latex-class-options
1129 (string-match "\\S-" org-export-latex-class-options
)
1130 (string-match "^[ \t]*\\(\\\\documentclass\\)\\(\\[.*?\\]\\)?"
1131 org-export-latex-header
))
1132 (setq org-export-latex-header
1133 (concat (substring org-export-latex-header
0 (match-end 1))
1134 org-export-latex-class-options
1135 (substring org-export-latex-header
(match-end 0))))))
1137 (defvar org-export-latex-format-toc-function
1138 'org-export-latex-format-toc-default
1139 "The function formatting returning the string to createthe table of contents.
1140 The function mus take one parameter, the depth of the table of contents.")
1142 (defun org-export-latex-make-header (title opt-plist
)
1143 "Make the LaTeX header and return it as a string.
1144 TITLE is the current title from the buffer or region.
1145 OPT-PLIST is the options plist for current buffer."
1146 (let ((toc (plist-get opt-plist
:table-of-contents
))
1147 (author (org-export-apply-macros-in-string
1148 (plist-get opt-plist
:author
))))
1150 (if (plist-get opt-plist
:time-stamp-file
)
1151 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
1152 ;; insert LaTeX custom header and packages from the list
1153 (org-splice-latex-header
1154 (org-export-apply-macros-in-string org-export-latex-header
)
1155 org-export-latex-default-packages-alist
1156 org-export-latex-packages-alist nil
1157 (org-export-apply-macros-in-string
1158 (plist-get opt-plist
:latex-header-extra
)))
1159 ;; append another special variable
1160 (org-export-apply-macros-in-string org-export-latex-append-header
)
1161 ;; define align if not yet defined
1162 "\n\\providecommand{\\alert}[1]{\\textbf{#1}}"
1166 ;; convert the title
1167 (org-export-latex-content
1168 title
'(lists tables fixed-width keywords
)))
1169 ;; insert author info
1170 (if (plist-get opt-plist
:author-info
)
1171 (format "\\author{%s}\n"
1172 (org-export-latex-fontify-headline (or author user-full-name
)))
1173 (format "%%\\author{%s}\n"
1174 (org-export-latex-fontify-headline (or author user-full-name
))))
1176 (format "\\date{%s}\n"
1178 (or (plist-get opt-plist
:date
)
1179 org-export-latex-date-format
)))
1180 ;; beginning of the document
1181 "\n\\begin{document}\n\n"
1182 ;; insert the title command
1183 (when (string-match "\\S-" title
)
1184 (if (string-match "%s" org-export-latex-title-command
)
1185 (format org-export-latex-title-command title
)
1186 org-export-latex-title-command
))
1188 ;; table of contents
1189 (when (and org-export-with-toc
1190 (plist-get opt-plist
:section-numbers
))
1191 (funcall org-export-latex-format-toc-function
1192 (cond ((numberp toc
)
1193 (min toc
(plist-get opt-plist
:headline-levels
)))
1194 (toc (plist-get opt-plist
:headline-levels
))))))))
1196 (defun org-export-latex-format-toc-default (depth)
1198 (format "\\setcounter{tocdepth}{%s}\n\\tableofcontents\n\\vspace*{1cm}\n"
1201 (defun org-export-latex-first-lines (opt-plist &optional beg end
)
1202 "Export the first lines before first headline.
1203 If BEG is non-nil, it is the beginning of the region.
1204 If END is non-nil, it is the end of the region."
1206 (goto-char (or beg
(point-min)))
1208 (end (if (re-search-forward "^\\*+ " end t
)
1209 (goto-char (match-beginning 0))
1210 (goto-char (or end
(point-max))))))
1212 (org-export-latex-content
1213 (org-export-preprocess-string
1214 (buffer-substring pt end
)
1219 :skip-before-1st-heading nil
1220 :LaTeX-fragments nil
1221 :timestamps
(plist-get opt-plist
:timestamps
)
1222 :footnotes
(plist-get opt-plist
:footnotes
)))
1224 (let ((inhibit-read-only t
))
1225 (add-text-properties pt
(max pt
(1- end
))
1226 '(:org-license-to-kill t
))))))))
1228 (defvar org-export-latex-header-defs nil
1229 "The header definitions that might be used in the LaTeX body.")
1230 (defvar org-export-latex-header-defs-re nil
1231 "The header definitions that might be used in the LaTeX body.")
1233 (defun org-export-latex-content (content &optional exclude-list
)
1234 "Convert CONTENT string to LaTeX.
1235 Don't perform conversions that are in EXCLUDE-LIST. Recognized
1236 conversion types are: quotation-marks, emphasis, sub-superscript,
1237 links, keywords, lists, tables, fixed-width"
1240 (unless (memq 'timestamps exclude-list
)
1241 (org-export-latex-time-stamps))
1242 (unless (memq 'quotation-marks exclude-list
)
1243 (org-export-latex-quotation-marks))
1244 (unless (memq 'emphasis exclude-list
)
1245 (when (plist-get org-export-latex-options-plist
:emphasize
)
1246 (org-export-latex-fontify)))
1247 (unless (memq 'sub-superscript exclude-list
)
1248 (org-export-latex-special-chars
1249 (plist-get org-export-latex-options-plist
:sub-superscript
)))
1250 (unless (memq 'links exclude-list
)
1251 (org-export-latex-links))
1252 (unless (memq 'keywords exclude-list
)
1253 (org-export-latex-keywords))
1254 (unless (memq 'lists exclude-list
)
1255 (org-export-latex-lists))
1256 (unless (memq 'tables exclude-list
)
1257 (org-export-latex-tables
1258 (plist-get org-export-latex-options-plist
:tables
)))
1259 (unless (memq 'fixed-width exclude-list
)
1260 (org-export-latex-fixed-width
1261 (plist-get org-export-latex-options-plist
:fixed-width
)))
1263 (buffer-substring (point-min) (point-max))))
1265 (defun org-export-latex-protect-string (s)
1266 "Add the org-protected property to string S."
1267 (add-text-properties 0 (length s
) '(org-protected t
) s
) s
)
1269 (defun org-export-latex-protect-char-in-string (char-list string
)
1270 "Add org-protected text-property to char from CHAR-LIST in STRING."
1274 (goto-char (point-min))
1275 (while (re-search-forward (regexp-opt char-list
) nil t
)
1276 (add-text-properties (match-beginning 0)
1277 (match-end 0) '(org-protected t
)))
1280 (defun org-export-latex-keywords-maybe (&optional remove-list
)
1281 "Maybe remove keywords depending on rules in REMOVE-LIST."
1282 (goto-char (point-min))
1283 (let ((re-todo (mapconcat 'identity org-export-latex-todo-keywords-1
"\\|"))
1284 (case-fold-search nil
)
1285 (todo-markup org-export-latex-todo-keyword-markup
)
1287 ;; convert TODO keywords
1288 (when (re-search-forward (concat "^\\(" re-todo
"\\)") nil t
)
1289 (if (plist-get remove-list
:todo
)
1292 ((stringp todo-markup
) todo-markup
)
1293 ((and (consp todo-markup
) (stringp (car todo-markup
)))
1294 (if (member (match-string 1) org-export-latex-done-keywords
)
1295 (cdr todo-markup
) (car todo-markup
)))
1296 (t (cdr (or (assoc (match-string 1) todo-markup
)
1297 (car todo-markup
))))))
1298 (replace-match (org-export-latex-protect-string
1299 (format fmt
(match-string 1))) t t
)))
1300 ;; convert priority string
1301 (when (re-search-forward "\\[\\\\#.\\]" nil t
)
1302 (if (plist-get remove-list
:priority
)
1304 (replace-match (format "\\textbf{%s}" (match-string 0)) t t
)))
1306 (when (re-search-forward "\\(:[a-zA-Z0-9_@]+\\)+:" nil t
)
1307 (if (or (not org-export-with-tags
)
1308 (plist-get remove-list
:tags
))
1311 (org-export-latex-protect-string
1312 (format "\\textbf{%s}"
1314 (replace-regexp-in-string
1315 "_" "\\\\_" (match-string 0)))))
1318 (defun org-export-latex-fontify-headline (string)
1319 "Fontify special words in STRING."
1321 ;; FIXME: org-inside-LaTeX-fragment-p doesn't work when the $...$ is at
1322 ;; the beginning of the buffer - inserting "\n" is safe here though.
1323 (insert "\n" string
)
1324 (goto-char (point-min))
1325 (let ((re (concat "\\\\\\([a-zA-Z]+\\)"
1326 "\\(?:<[^<>\n]*>\\)*"
1327 "\\(?:\\[[^][\n]*?\\]\\)*"
1328 "\\(?:<[^<>\n]*>\\)*"
1330 (org-create-multibrace-regexp "{" "}" 3)
1332 (while (re-search-forward re nil t
)
1334 ;; check for comment line
1335 (save-excursion (goto-char (match-beginning 0))
1336 (org-in-indented-comment-line))
1337 ;; Check if this is a defined entity, so that is may need conversion
1338 (org-entity-get (match-string 1)))
1339 (add-text-properties (match-beginning 0) (match-end 0)
1340 '(org-protected t
)))))
1341 (when (plist-get org-export-latex-options-plist
:emphasize
)
1342 (org-export-latex-fontify))
1343 (org-export-latex-keywords-maybe)
1344 (org-export-latex-special-chars
1345 (plist-get org-export-latex-options-plist
:sub-superscript
))
1346 (org-export-latex-links)
1347 (org-trim (buffer-string))))
1349 (defun org-export-latex-time-stamps ()
1350 "Format time stamps."
1351 (goto-char (point-min))
1352 (let ((org-display-custom-times org-export-latex-display-custom-times
))
1353 (while (re-search-forward org-ts-regexp-both nil t
)
1354 (org-if-unprotected-at (1- (point))
1356 (org-export-latex-protect-string
1357 (format org-export-latex-timestamp-markup
1358 (substring (org-translate-time (match-string 0)) 1 -
1)))
1361 (defun org-export-latex-quotation-marks ()
1362 "Export quotation marks depending on language conventions."
1363 (let* ((lang (plist-get org-export-latex-options-plist
:language
))
1364 (quote-rpl (if (equal lang
"fr")
1365 '(("\\(\\s-\\)\"" "«~")
1366 ("\\(\\S-\\)\"" "~»")
1367 ("\\(\\s-\\)'" "`"))
1368 '(("\\(\\s-\\|[[(]\\)\"" "``")
1369 ("\\(\\S-\\)\"" "''")
1370 ("\\(\\s-\\|(\\)'" "`")))))
1371 (mapc (lambda(l) (goto-char (point-min))
1372 (while (re-search-forward (car l
) nil t
)
1373 (let ((rpl (concat (match-string 1)
1374 (org-export-latex-protect-string
1375 (copy-sequence (cadr l
))))))
1376 (org-if-unprotected-1
1377 (replace-match rpl t t
))))) quote-rpl
)))
1379 (defun org-export-latex-special-chars (sub-superscript)
1380 "Export special characters to LaTeX.
1381 If SUB-SUPERSCRIPT is non-nil, convert \\ and ^.
1382 See the `org-export-latex.el' code for a complete conversion table."
1383 (goto-char (point-min))
1385 (goto-char (point-min))
1386 (while (re-search-forward c nil t
)
1387 ;; Put the point where to check for org-protected
1388 (unless (get-text-property (match-beginning 2) 'org-protected
)
1389 (cond ((member (match-string 2) '("\\$" "$"))
1390 (if (equal (match-string 2) "\\$")
1392 (replace-match "\\$" t t
)))
1393 ((member (match-string 2) '("&" "%" "#"))
1394 (if (equal (match-string 1) "\\")
1395 (replace-match (match-string 2) t t
)
1396 (replace-match (concat (match-string 1) "\\"
1397 (match-string 2)) t t
)
1399 ((equal (match-string 2) "...")
1401 (concat (match-string 1)
1402 (org-export-latex-protect-string "\\ldots{}")) t t
))
1403 ((equal (match-string 2) "~")
1404 (cond ((equal (match-string 1) "\\") nil
)
1405 ((eq 'org-link
(get-text-property 0 'face
(match-string 2)))
1406 (replace-match (concat (match-string 1) "\\~") t t
))
1408 (org-export-latex-protect-string
1409 (concat (match-string 1) "\\~{}")) t t
))))
1410 ((member (match-string 2) '("{" "}"))
1411 (unless (save-match-data (org-inside-latex-math-p))
1412 (if (equal (match-string 1) "\\")
1413 (replace-match (match-string 2) t t
)
1414 (replace-match (concat (match-string 1) "\\"
1415 (match-string 2)) t t
)))))
1416 (unless (save-match-data (org-inside-latex-math-p))
1417 (cond ((equal (match-string 2) "\\")
1418 (replace-match (or (save-match-data
1419 (org-export-latex-treat-backslash-char
1421 (or (match-string 3) "")))
1423 (when (and (get-text-property (1- (point)) 'org-entity
)
1425 ;; OK, this was an entity replacement, and the user
1426 ;; had terminated the entity with {}. Make sure
1427 ;; {} is protected as well, and remove the extra {}
1428 ;; inserted by the conversion.
1429 (put-text-property (point) (+ 2 (point)) 'org-protected t
)
1430 (if (save-excursion (goto-char (max (- (point) 2) (point-min)))
1435 ((member (match-string 2) '("_" "^"))
1436 (replace-match (or (save-match-data
1437 (org-export-latex-treat-sub-super-char
1441 (match-string 3))) "") t t
)
1442 (backward-char 1)))))))
1443 '(;"^\\([^\n$]*?\\|^\\)\\(\\\\?\\$\\)\\([^\n$]*\\)$"
1444 "\\(\\(\\\\?\\$\\)\\)"
1445 "\\([a-zA-Z0-9()]+\\|[ \t\n]\\|\\b\\|\\\\\\)\\(_\\|\\^\\)\\({[^{}]+}\\|[a-zA-Z0-9]+\\|[ \t\n]\\|[:punct:]\\|)\\|{[a-zA-Z0-9]+}\\|([a-zA-Z0-9]+)\\)"
1446 "\\(.\\|^\\)\\(\\\\\\)\\([ \t\n]\\|\\([&#%{}\"]\\|[a-zA-Z][a-zA-Z0-9]*\\)\\)"
1447 "\\(.\\|^\\)\\(&\\)"
1448 "\\(.\\|^\\)\\(#\\)"
1449 "\\(.\\|^\\)\\(%\\)"
1450 "\\(.\\|^\\)\\({\\)"
1451 "\\(.\\|^\\)\\(}\\)"
1452 "\\(.\\|^\\)\\(~\\)"
1453 "\\(.\\|^\\)\\(\\.\\.\\.\\)"
1454 ;; (?\< . "\\textless{}")
1455 ;; (?\> . "\\textgreater{}")
1458 (defun org-inside-latex-math-p ()
1459 (get-text-property (point) 'org-latex-math
))
1461 (defun org-export-latex-treat-sub-super-char
1462 (subsup char string-before string-after
)
1463 "Convert the \"_\" and \"^\" characters to LaTeX.
1464 SUBSUP corresponds to the ^: option in the #+OPTIONS line.
1465 Convert CHAR depending on STRING-BEFORE and STRING-AFTER."
1466 (cond ((equal string-before
"\\")
1467 (concat string-before char string-after
))
1468 ((and (string-match "\\S-+" string-after
))
1469 ;; this is part of a math formula
1470 (cond ((eq 'org-link
(get-text-property 0 'face char
))
1471 (concat string-before
"\\" char string-after
))
1472 ((save-match-data (org-inside-latex-math-p))
1474 (cond ((eq 1 (length string-after
))
1475 (concat string-before char string-after
))
1476 ((string-match "[({]?\\([^)}]+\\)[)}]?" string-after
)
1477 (format "%s%s{%s}" string-before char
1478 (match-string 1 string-after
))))))
1479 ((and (> (length string-after
) 1)
1481 (and (equal subsup
'{}) (eq (string-to-char string-after
) ?\
{)))
1482 (or (string-match "[{]?\\([^}]+\\)[}]?" string-after
)
1483 (string-match "[(]?\\([^)]+\\)[)]?" string-after
)))
1485 (org-export-latex-protect-string
1486 (format "%s$%s{%s}$" string-before char
1487 (if (and (> (match-end 1) (1+ (match-beginning 1)))
1488 (not (equal (substring string-after
0 2) "{\\")))
1489 (concat "\\mathrm{" (match-string 1 string-after
) "}")
1490 (match-string 1 string-after
)))))
1491 ((eq subsup t
) (concat string-before
"$" char string-after
"$"))
1492 (t (org-export-latex-protect-string
1493 (concat string-before
"\\" char
"{}" string-after
)))))
1494 (t (org-export-latex-protect-string
1495 (concat string-before
"\\" char
"{}" string-after
)))))
1497 (defun org-export-latex-treat-backslash-char (string-before string-after
)
1498 "Convert the \"$\" special character to LaTeX.
1499 The conversion is made depending of STRING-BEFORE and STRING-AFTER."
1500 (let ((ass (org-entity-get string-after
)))
1504 (concat string-before
1505 (org-export-latex-protect-string
1506 (concat "$" (nth 1 ass
) "$")))
1507 (concat string-before
(org-export-latex-protect-string
1510 ((and (not (string-match "^[ \n\t]" string-after
))
1511 (not (string-match "[ \t]\\'\\|^" string-before
)))
1512 ;; backslash is inside a word
1513 (concat string-before
1514 (org-export-latex-protect-string
1515 (concat "\\textbackslash{}" string-after
))))
1516 ((not (or (equal string-after
"")
1517 (string-match "^[ \t\n]" string-after
)))
1518 ;; backslash might escape a character (like \#) or a user TeX
1519 ;; macro (like \setcounter)
1520 (concat string-before
1521 (org-export-latex-protect-string (concat "\\" string-after
))))
1522 ((and (string-match "^[ \t\n]" string-after
)
1523 (string-match "[ \t\n]\\'" string-before
))
1524 ;; backslash is alone, convert it to $\backslash$
1525 (org-export-latex-protect-string
1526 (concat string-before
"\\textbackslash{}" string-after
)))
1527 (t (org-export-latex-protect-string
1528 (concat string-before
"\\textbackslash{}" string-after
))))))
1530 (defun org-export-latex-keywords ()
1531 "Convert special keywords to LaTeX."
1532 (goto-char (point-min))
1533 (while (re-search-forward org-export-latex-special-keyword-regexp nil t
)
1534 (replace-match (format org-export-latex-timestamp-keyword-markup
1535 (match-string 0)) t t
)
1537 (beginning-of-line 1)
1538 (unless (looking-at ".*\n[ \t]*\n")
1542 (defun org-export-latex-fixed-width (opt)
1543 "When OPT is non-nil convert fixed-width sections to LaTeX."
1544 (goto-char (point-min))
1545 (while (re-search-forward "^[ \t]*:\\([ \t]\\|$\\)" nil t
)
1546 (unless (get-text-property (point) 'org-example
)
1548 (progn (goto-char (match-beginning 0))
1549 (insert "\\begin{verbatim}\n")
1550 (while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
1551 (replace-match (concat (match-string 1)
1552 (match-string 2)) t t
)
1554 (insert "\\end{verbatim}\n\n"))
1555 (progn (goto-char (match-beginning 0))
1556 (while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
1557 (replace-match (concat "%" (match-string 1)
1558 (match-string 2)) t t
)
1559 (forward-line)))))))
1561 (defvar org-table-last-alignment
) ; defined in org-table.el
1562 (defvar org-table-last-column-widths
) ; defined in org-table.el
1563 (declare-function orgtbl-to-latex
"org-table" (table params
) t
)
1564 (defun org-export-latex-tables (insert)
1565 "Convert tables to LaTeX and INSERT it."
1566 ;; First, get the table.el tables
1567 (goto-char (point-min))
1568 (while (re-search-forward "^[ \t]*\\(\\+-[-+]*\\+\\)[ \t]*\n[ \t]*|" nil t
)
1571 (org-export-latex-convert-table.el-table
)))
1573 ;; And now the Org-mode tables
1574 (goto-char (point-min))
1575 (while (re-search-forward "^\\([ \t]*\\)|" nil t
)
1576 (org-if-unprotected-at (1- (point))
1578 (let* ((beg (org-table-begin))
1579 (end (org-table-end))
1580 (raw-table (buffer-substring beg end
))
1581 (org-table-last-alignment (copy-sequence org-table-last-alignment
))
1582 (org-table-last-column-widths (copy-sequence
1583 org-table-last-column-widths
))
1584 fnum fields line lines olines gr colgropen line-fmt align
1585 caption shortn label attr floatp longtblp
)
1586 (if org-export-latex-tables-verbatim
1587 (let* ((tbl (concat "\\begin{verbatim}\n" raw-table
1588 "\\end{verbatim}\n")))
1589 (apply 'delete-region
(list beg end
))
1590 (insert (org-export-latex-protect-string tbl
)))
1592 (setq caption
(org-find-text-property-in-string
1593 'org-caption raw-table
)
1594 shortn
(org-find-text-property-in-string
1595 'org-caption-shortn raw-table
)
1596 attr
(org-find-text-property-in-string
1597 'org-attributes raw-table
)
1598 label
(org-find-text-property-in-string
1599 'org-label raw-table
)
1600 longtblp
(and attr
(stringp attr
)
1601 (string-match "\\<longtable\\>" attr
))
1602 align
(and attr
(stringp attr
)
1603 (string-match "\\<align=\\([^ \t\n\r]+\\)" attr
)
1604 (match-string 1 attr
))
1605 floatp
(or caption label
))
1606 (setq caption
(and caption
(org-export-latex-fontify-headline caption
)))
1607 (setq lines
(org-split-string raw-table
"\n"))
1608 (apply 'delete-region
(list beg end
))
1609 (when org-export-table-remove-special-lines
1610 (setq lines
(org-table-clean-before-export lines
'maybe-quoted
)))
1611 (when org-table-clean-did-remove-column
1612 (pop org-table-last-alignment
)
1613 (pop org-table-last-column-widths
))
1614 ;; make a formatting string to reflect alignment
1616 (while (and (not line-fmt
) (setq line
(pop olines
)))
1617 (unless (string-match "^[ \t]*|-" line
)
1618 (setq fields
(org-split-string line
"[ \t]*|[ \t]*"))
1619 (setq fnum
(make-vector (length fields
) 0))
1623 (setq gr
(pop org-table-colgroup-info
))
1625 (cond ((eq gr
:start
)
1626 (prog1 (if colgropen
"|" "|")
1627 (setq colgropen t
)))
1629 (prog1 (if colgropen
"|" "|")
1630 (setq colgropen nil
)))
1632 (if (memq gr
'(:end
:startend
))
1633 (progn (setq colgropen nil
) "|")
1636 ;; fix double || in line-fmt
1637 (setq line-fmt
(replace-regexp-in-string "||" "|" line-fmt
))
1638 ;; maybe remove the first and last "|"
1639 (when (and (not org-export-latex-tables-column-borders
)
1640 (string-match "^\\(|\\)?\\(.+\\)|$" line-fmt
))
1641 (setq line-fmt
(match-string 2 line-fmt
)))
1644 (setq align
(apply 'format
1646 (mapcar (lambda (x) (if x
"r" "l"))
1647 org-table-last-alignment
)))))
1648 ;; prepare the table to send to orgtbl-to-latex
1652 (or (and (string-match "[ \t]*|-+" elem
) 'hline
)
1653 (org-split-string (org-trim elem
) "|")))
1656 (insert (org-export-latex-protect-string
1659 (concat "\\begin{longtable}{" align
"}\n")
1660 (if floatp
"\\begin{table}[htb]\n"))
1664 (if shortn
(concat "[" shortn
"]") "")
1666 (if (and longtblp caption
) "\\\\\n" "\n")
1667 (if (and org-export-latex-tables-centered
(not longtblp
))
1668 "\\begin{center}\n")
1670 (format "\\begin{%s}{%s}\n"
1671 org-export-latex-tabular-environment align
))
1674 `(:tstart nil
:tend nil
1675 :hlend
,(if longtblp
1679 \\hline\\multicolumn{%d}{r}{Continued on next page}\\
1681 \\endlastfoot" (length org-table-last-alignment
))
1684 (format "\n\\end{%s}"
1685 org-export-latex-tabular-environment
))
1686 (if longtblp
"\n" (if org-export-latex-tables-centered
1687 "\n\\end{center}\n" "\n"))
1690 (if floatp
"\\end{table}"))))
1693 (defun org-export-latex-convert-table.el-table
()
1694 "Replace table.el table at point with LaTeX code."
1695 (let (tbl caption shortn label line floatp attr align rmlines
)
1696 (setq line
(buffer-substring (point-at-bol) (point-at-eol))
1697 label
(org-get-text-property-any 0 'org-label line
)
1698 caption
(org-get-text-property-any 0 'org-caption line
)
1699 shortn
(org-get-text-property-any 0 'org-caption-shortn line
)
1700 attr
(org-get-text-property-any 0 'org-attributes line
)
1701 align
(and attr
(stringp attr
)
1702 (string-match "\\<align=\\([^ \t\n\r,]+\\)" attr
)
1703 (match-string 1 attr
))
1704 rmlines
(and attr
(stringp attr
)
1705 (string-match "\\<rmlines\\>" attr
))
1706 floatp
(or label caption
))
1707 (and (get-buffer "*org-export-table*")
1708 (kill-buffer (get-buffer "*org-export-table*")))
1709 (table-generate-source 'latex
"*org-export-table*" "caption")
1710 (setq tbl
(with-current-buffer "*org-export-table*"
1712 (while (string-match "^%.*\n" tbl
)
1713 (setq tbl
(replace-match "" t t tbl
)))
1717 (setq lines
(mapcar (lambda (x)
1718 (if (string-match "^\\\\hline$" x
)
1723 (org-split-string tbl
"\n")))
1724 (setq tbl
(mapconcat 'identity
(delq nil lines
) "\n"))))
1725 (when (and align
(string-match "\\\\begin{tabular}{.*}" tbl
))
1726 (setq tbl
(replace-match (concat "\\begin{tabular}{" align
"}")
1728 (and (get-buffer "*org-export-table*")
1729 (kill-buffer (get-buffer "*org-export-table*")))
1730 (beginning-of-line 0)
1731 (while (looking-at "[ \t]*\\(|\\|\\+-\\)")
1732 (delete-region (point) (1+ (point-at-eol))))
1733 (when org-export-latex-tables-centered
1734 (setq tbl
(concat "\\begin{center}\n" tbl
"\\end{center}")))
1736 (setq tbl
(concat "\\begin{table}\n"
1737 (format "\\caption%s{%s%s}\n"
1738 (if shortn
(format "[%s]" shortn
) "")
1739 (if label
(format "\\label{%s}" label
) "")
1742 "\n\\end{table}\n")))
1743 (insert (org-export-latex-protect-string tbl
))))
1745 (defun org-export-latex-fontify ()
1746 "Convert fontification to LaTeX."
1747 (goto-char (point-min))
1748 (while (re-search-forward org-emph-re nil t
)
1749 ;; The match goes one char after the *string*, except at the end of a line
1750 (let ((emph (assoc (match-string 3)
1751 org-export-latex-emphasis-alist
))
1752 (beg (match-beginning 0))
1756 (message "`org-export-latex-emphasis-alist' has no entry for formatting triggered by \"%s\""
1758 (unless (or (and (get-text-property (- (point) 2) 'org-protected
)
1759 (not (get-text-property
1760 (- (point) 2) 'org-verbatim-emph
)))
1761 (equal (char-after (match-beginning 3))
1762 (char-after (1+ (match-beginning 3))))
1764 (goto-char (match-beginning 1))
1766 (and (org-at-table-p)
1768 "[|\n]" (buffer-substring beg end
)))))
1769 (and (equal (match-string 3) "+")
1771 (string-match "\\`-+\\'" (match-string 4)))))
1772 (setq s
(match-string 4))
1773 (setq rpl
(concat (match-string 1)
1774 (org-export-latex-emph-format (cadr emph
)
1778 (setq rpl
(org-export-latex-protect-string rpl
))
1780 (if (string-match "\\`.?\\(\\\\[a-z]+{\\)\\(.*\\)\\(}\\).?\\'" rpl
)
1782 (add-text-properties (match-beginning 1) (match-end 1)
1783 '(org-protected t
) rpl
)
1784 (add-text-properties (match-beginning 3) (match-end 3)
1785 '(org-protected t
) rpl
)))))
1786 (replace-match rpl t t
)))
1789 (defvar org-export-latex-use-verb nil
)
1790 (defun org-export-latex-emph-format (format string
)
1791 "Format an emphasis string and handle the \\verb special case."
1792 (when (equal format
"\\verb")
1794 (if org-export-latex-use-verb
1795 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
1797 (loop for i from
0 to
(1- (length ll
)) do
1798 (if (not (string-match (regexp-quote (substring ll i
(1+ i
)))
1801 (setq format
(concat "\\verb" (substring ll i
(1+ i
))
1802 "%s" (substring ll i
(1+ i
))))
1803 (throw 'exit nil
))))))
1805 (trans '(("\\" .
"\\textbackslash{}")
1806 ("~" .
"\\textasciitilde{}")
1807 ("^" .
"\\textasciicircum{}")))
1809 (while (string-match "[\\{}$%&_#~^]" string
)
1810 (setq char
(match-string 0 string
))
1811 (if (> (match-beginning 0) 0)
1812 (setq rtn
(concat rtn
(substring string
1813 0 (match-beginning 0)))))
1814 (setq string
(substring string
(1+ (match-beginning 0))))
1815 (setq char
(or (cdr (assoc char trans
)) (concat "\\" char
))
1816 rtn
(concat rtn char
)))
1817 (setq string
(concat rtn string
) format
"\\texttt{%s}")))))
1818 (format format string
))
1820 (defun org-export-latex-links ()
1821 ;; Make sure to use the LaTeX hyperref and graphicx package
1822 ;; or send some warnings.
1823 "Convert links to LaTeX."
1824 (goto-char (point-min))
1825 (while (re-search-forward org-bracket-link-analytic-regexp
++ nil t
)
1826 (org-if-unprotected-1
1827 (goto-char (match-beginning 0))
1828 (let* ((re-radio org-export-latex-all-targets-re
)
1829 (remove (list (match-beginning 0) (match-end 0)))
1830 (raw-path (org-extract-attributes (match-string 3)))
1831 (full-raw-path (concat (match-string 1) raw-path
))
1832 (desc (match-string 5))
1833 (type (or (match-string 2)
1834 (if (or (file-name-absolute-p raw-path
)
1835 (string-match "^\\.\\.?/" raw-path
))
1837 (coderefp (equal type
"coderef"))
1838 (caption (org-find-text-property-in-string 'org-caption raw-path
))
1839 (shortn (org-find-text-property-in-string 'org-caption-shortn raw-path
))
1840 (attr (or (org-find-text-property-in-string 'org-attributes raw-path
)
1841 (plist-get org-export-latex-options-plist
:latex-image-options
)))
1842 (label (org-find-text-property-in-string 'org-label raw-path
))
1844 ;; define the path of the link
1846 ((member type
'("coderef"))
1848 ((member type
'("http" "https" "ftp"))
1849 (concat type
":" raw-path
))
1850 ((and re-radio
(string-match re-radio raw-path
))
1852 ((equal type
"mailto")
1853 (concat type
":" raw-path
))
1854 ((equal type
"file")
1855 (if (and (org-file-image-p
1858 org-export-latex-inline-image-extensions
)
1859 (or (get-text-property 0 'org-no-description
1861 (equal desc full-raw-path
)))
1863 (progn (when (string-match "\\(.+\\)::.+" raw-path
)
1864 (setq raw-path
(match-string 1 raw-path
)))
1865 (if (file-exists-p raw-path
)
1866 (concat type
"://" (expand-file-name raw-path
))
1867 (concat type
"://" (org-export-directory
1868 :LaTeX org-export-latex-options-plist
)
1870 ;; process with link inserting
1871 (apply 'delete-region remove
)
1872 (setq caption
(and caption
(org-export-latex-fontify-headline caption
)))
1874 (plist-get org-export-latex-options-plist
:inline-images
))
1875 ;; OK, we need to inline an image
1877 (org-export-latex-format-image raw-path caption label attr shortn
)))
1880 (org-export-get-coderef-format path desc
)
1881 (cdr (assoc path org-export-code-refs
)))))
1882 (radiop (insert (format "\\hyperref[%s]{%s}"
1883 (org-solidify-link-text raw-path
) desc
)))
1885 (insert (format "\\hyperref[%s]{%s}"
1886 (org-remove-initial-hash
1887 (org-solidify-link-text raw-path
))
1890 (when (org-at-table-p)
1891 ;; There is a strange problem when we have a link in a table,
1892 ;; ampersands then cause a problem. I think this must be
1893 ;; a LaTeX issue, but we here implement a work-around anyway.
1894 (setq path
(org-export-latex-protect-amp path
)
1895 desc
(org-export-latex-protect-amp desc
)))
1896 (insert (format org-export-latex-hyperref-format path desc
)))
1898 ((functionp (setq fnc
(nth 2 (assoc type org-link-protocols
))))
1899 ;; The link protocol has a function for formatting the link
1902 (funcall fnc
(org-link-unescape raw-path
) desc
'latex
))))
1904 (t (insert "\\texttt{" desc
"}")))))))
1907 (defun org-export-latex-format-image (path caption label attr
&optional shortn
)
1908 "Format the image element, depending on user settings."
1909 (let (ind floatp wrapp multicolumnp placement figenv
)
1910 (setq floatp
(or caption label
))
1911 (setq ind
(org-get-text-property-any 0 'original-indentation path
))
1912 (when (and attr
(stringp attr
))
1913 (if (string-match "[ \t]*\\<wrap\\>" attr
)
1914 (setq wrapp t floatp nil attr
(replace-match "" t t attr
)))
1915 (if (string-match "[ \t]*\\<float\\>" attr
)
1916 (setq wrapp nil floatp t attr
(replace-match "" t t attr
)))
1917 (if (string-match "[ \t]*\\<multicolumn\\>" attr
)
1918 (setq multicolumnp t attr
(replace-match "" t t attr
))))
1922 (wrapp "{l}{0.5\\textwidth}")
1926 (when (and attr
(stringp attr
)
1927 (string-match "[ \t]*\\<placement=\\(\\S-+\\)" attr
))
1928 (setq placement
(match-string 1 attr
)
1929 attr
(replace-match "" t t attr
)))
1930 (setq attr
(and attr
(org-trim attr
)))
1931 (when (or (not attr
) (= (length attr
) 0))
1932 (setq attr
(cond (floatp "width=0.7\\textwidth")
1933 (wrapp "width=0.48\\textwidth")
1937 (wrapp "\\begin{wrapfigure}%placement
1939 \\includegraphics[%attr]{%path}
1940 \\caption%shortn{%labelcmd%caption}
1942 (multicolumnp "\\begin{figure*}%placement
1944 \\includegraphics[%attr]{%path}
1945 \\caption{%labelcmd%caption}
1947 (floatp "\\begin{figure}%placement
1949 \\includegraphics[%attr]{%path}
1950 \\caption{%labelcmd%caption}
1952 (t "\\includegraphics[%attr]{%path}")))
1955 (setq figenv
(mapconcat 'identity
(split-string figenv
"\n")
1956 (save-excursion (beginning-of-line 1)
1957 (looking-at "[ \t]*")
1958 (concat "\n" (match-string 0)))))
1960 (if (and (not label
) (not caption
)
1961 (string-match "^\\\\caption{.*\n" figenv
))
1962 (setq figenv
(replace-match "" t t figenv
)))
1967 (if (file-name-absolute-p path
)
1968 (expand-file-name path
)
1971 (cons "shortn" (if shortn
(format "[%s]" shortn
) ""))
1972 (cons "labelcmd" (if label
(format "\\label{%s}"
1974 (cons "caption" (or caption
""))
1975 (cons "placement" (or placement
""))))
1976 nil
'original-indentation ind
)))
1978 (defun org-export-latex-protect-amp (s)
1979 (while (string-match "\\([^\\\\]\\)\\(&\\)" s
)
1980 (setq s
(replace-match (concat (match-string 1 s
) "\\" (match-string 2 s
))
1984 (defun org-remove-initial-hash (s)
1985 (if (string-match "\\`#" s
)
1988 (defvar org-latex-entities
) ; defined below
1989 (defvar org-latex-entities-regexp
) ; defined below
1990 (defvar org-latex-entities-exceptions
) ; defined below
1992 (defun org-export-latex-preprocess (parameters)
1993 "Clean stuff in the LaTeX export."
1994 ;; Preserve line breaks
1995 (goto-char (point-min))
1996 (while (re-search-forward "\\\\\\\\" nil t
)
1997 (add-text-properties (match-beginning 0) (match-end 0)
1998 '(org-protected t
)))
2000 ;; Preserve latex environments
2001 (goto-char (point-min))
2002 (while (re-search-forward "^[ \t]*\\\\begin{\\([a-zA-Z]+\\*?\\)}" nil t
)
2004 (let* ((start (progn (beginning-of-line) (point)))
2005 (end (and (re-search-forward
2006 (concat "^[ \t]*\\\\end{"
2007 (regexp-quote (match-string 1))
2011 (add-text-properties start end
'(org-protected t
))
2012 (goto-char (point-at-eol))))))
2014 ;; Preserve math snippets
2016 (let* ((matchers (plist-get org-format-latex-options
:matchers
))
2017 (re-list org-latex-regexps
)
2018 beg end re e m n block off
)
2019 ;; Check the different regular expressions
2020 (while (setq e
(pop re-list
))
2021 (setq m
(car e
) re
(nth 1 e
) n
(nth 2 e
)
2022 block
(if (nth 3 e
) "\n\n" ""))
2023 (setq off
(if (member m
'("$" "$1")) 1 0))
2024 (when (and (member m matchers
) (not (equal m
"begin")))
2025 (goto-char (point-min))
2026 (while (re-search-forward re nil t
)
2027 (setq beg
(+ (match-beginning 0) off
) end
(- (match-end 0) 0))
2028 (add-text-properties beg end
'(org-protected t org-latex-math t
))))))
2030 ;; Convert LaTeX to \LaTeX{} and TeX to \TeX{}
2031 (goto-char (point-min))
2032 (let ((case-fold-search nil
))
2033 (while (re-search-forward "\\<\\(\\(La\\)?TeX\\)\\>" nil t
)
2034 (unless (eq (char-before (match-beginning 1)) ?
\\)
2035 (org-if-unprotected-1
2036 (replace-match (org-export-latex-protect-string
2037 (concat "\\" (match-string 1)
2040 ;; Convert blockquotes
2041 (goto-char (point-min))
2042 (while (search-forward "ORG-BLOCKQUOTE-START" nil t
)
2043 (org-replace-match-keep-properties "\\begin{quote}" t t
))
2044 (goto-char (point-min))
2045 (while (search-forward "ORG-BLOCKQUOTE-END" nil t
)
2046 (org-replace-match-keep-properties "\\end{quote}" t t
))
2049 (goto-char (point-min))
2050 (while (search-forward "ORG-VERSE-START" nil t
)
2051 (org-replace-match-keep-properties "\\begin{verse}" t t
)
2052 (beginning-of-line 2)
2053 (while (and (not (looking-at "[ \t]*ORG-VERSE-END.*")) (not (eobp)))
2054 (when (looking-at "\\([ \t]+\\)\\([^ \t\n]\\)")
2055 (goto-char (match-end 1))
2056 (org-replace-match-keep-properties
2057 (org-export-latex-protect-string
2058 (concat "\\hspace*{1cm}" (match-string 2))) t t
)
2059 (beginning-of-line 1))
2060 (if (looking-at "[ \t]*$")
2061 (insert (org-export-latex-protect-string "\\vspace*{1em}"))
2062 (unless (looking-at ".*?[^ \t\n].*?\\\\\\\\[ \t]*$")
2065 (beginning-of-line 2))
2066 (and (looking-at "[ \t]*ORG-VERSE-END.*")
2067 (org-replace-match-keep-properties "\\end{verse}" t t
)))
2070 (goto-char (point-min))
2071 (while (search-forward "ORG-CENTER-START" nil t
)
2072 (org-replace-match-keep-properties "\\begin{center}" t t
))
2073 (goto-char (point-min))
2074 (while (search-forward "ORG-CENTER-END" nil t
)
2075 (org-replace-match-keep-properties "\\end{center}" t t
))
2077 (run-hooks 'org-export-latex-after-blockquotes-hook
)
2079 ;; Convert horizontal rules
2080 (goto-char (point-min))
2081 (while (re-search-forward "^----+.$" nil t
)
2083 (replace-match (org-export-latex-protect-string "\\hrule") t t
)))
2085 ;; Protect LaTeX commands like \command[...]{...} or \command{...}
2086 (goto-char (point-min))
2088 "\\\\\\([a-zA-Z]+\\)"
2089 "\\(?:<[^<>\n]*>\\)*"
2090 "\\(?:\\[[^][\n]*?\\]\\)*"
2091 "\\(?:<[^<>\n]*>\\)*"
2092 "\\(" (org-create-multibrace-regexp "{" "}" 3) "\\)\\{1,3\\}")))
2093 (while (re-search-forward re nil t
)
2095 ;; check for comment line
2096 (save-excursion (goto-char (match-beginning 0))
2097 (org-in-indented-comment-line))
2098 ;; Check if this is a defined entity, so that is may need conversion
2099 (org-entity-get (match-string 1))
2101 (add-text-properties (match-beginning 0) (match-end 0)
2102 '(org-protected t
)))))
2104 ;; Protect LaTeX entities
2105 (goto-char (point-min))
2107 (while (re-search-forward org-latex-entities-regexp nil t
)
2108 (if (setq a
(assoc (match-string 0) org-latex-entities-exceptions
))
2109 (replace-match (org-add-props (nth 1 a
) nil
'org-protected t
)
2111 (add-text-properties (match-beginning 0) (match-end 0)
2112 '(org-protected t
)))))
2114 ;; Replace radio links
2115 (goto-char (point-min))
2116 (while (re-search-forward
2117 (concat "<<<?" org-export-latex-all-targets-re
2118 ">>>?\\((INVISIBLE)\\)?") nil t
)
2119 (org-if-unprotected-at (+ (match-beginning 0) 2)
2122 (org-export-latex-protect-string
2123 (format "\\label{%s}" (save-match-data (org-solidify-link-text
2124 (match-string 1)))))
2125 (if (match-string 2) "" (match-string 1)))
2128 ;; Delete @<...> constructs
2129 ;; Thanks to Daniel Clemente for this regexp
2130 (goto-char (point-min))
2131 (while (re-search-forward "@<\\(?:[^\"\n]\\|\".*\"\\)*?>" nil t
)
2133 (replace-match "")))
2135 ;; When converting to LaTeX, replace footnotes
2136 ;; FIXME: don't protect footnotes from conversion
2137 (when (plist-get org-export-latex-options-plist
:footnotes
)
2138 (goto-char (point-min))
2139 (while (re-search-forward "\\[\\([0-9]+\\)\\]" nil t
)
2141 (when (and (save-match-data
2142 (save-excursion (beginning-of-line)
2143 (looking-at "[^:|#]")))
2144 (not (org-in-verbatim-emphasis)))
2145 (let ((foot-beg (match-beginning 0))
2146 (foot-end (match-end 0))
2147 (foot-prefix (match-string 0))
2148 footnote footnote-rpl
)
2150 (if (not (re-search-forward (concat "^" (regexp-quote foot-prefix
))
2152 (replace-match (org-export-latex-protect-string
2153 (concat "$^{" (match-string 1) "}$")))
2155 (let ((end (save-excursion
2156 (if (re-search-forward "^$\\|^#.*$\\|\\[[0-9]+\\]" nil t
)
2157 (match-beginning 0) (point-max)))))
2158 (setq footnote
(concat (org-trim (buffer-substring (point) end
))
2159 " ")) ; prevent last } being part of a link
2160 (delete-region (point) end
))
2161 (goto-char foot-beg
)
2162 (delete-region foot-beg foot-end
)
2163 (unless (null footnote
)
2164 (setq footnote-rpl
(format "\\footnote{%s}" footnote
))
2165 (add-text-properties 0 10 '(org-protected t
) footnote-rpl
)
2166 (add-text-properties (1- (length footnote-rpl
))
2167 (length footnote-rpl
)
2168 '(org-protected t
) footnote-rpl
)
2169 (if (org-on-heading-p)
2171 (concat (org-export-latex-protect-string "\\protect")
2173 (insert footnote-rpl
)))
2176 ;; Remove footnote section tag for LaTeX
2177 (goto-char (point-min))
2178 (while (re-search-forward
2179 (concat "^" footnote-section-tag-regexp
) nil t
)
2181 (replace-match "")))))
2183 (defun org-export-latex-fix-inputenc ()
2184 "Set the codingsystem in inputenc to what the buffer is."
2185 (let* ((cs buffer-file-coding-system
)
2186 (opt (or (ignore-errors (latexenc-coding-system-to-inputenc cs
))
2189 ;; Translate if that is requested
2190 (setq opt
(or (cdr (assoc opt org-export-latex-inputenc-alist
)) opt
))
2191 ;; find the \usepackage statement and replace the option
2192 (goto-char (point-min))
2193 (while (re-search-forward "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
2195 (goto-char (match-beginning 1))
2196 (delete-region (match-beginning 1) (match-end 1))
2198 (and buffer-file-name
2203 (defun org-export-latex-lists ()
2204 "Convert plain text lists in current buffer into LaTeX lists."
2206 (goto-char (point-min))
2207 (while (org-re-search-forward-unprotected org-list-beginning-re nil t
)
2209 (setq res
(org-list-to-latex (org-list-parse-list t
)
2210 org-export-latex-list-parameters
))
2211 (while (string-match "^\\(\\\\item[ \t]+\\)\\[@start:\\([0-9]+\\)\\]"
2213 (setq res
(replace-match
2214 (concat (format "\\setcounter{enumi}{%d}"
2215 (1- (string-to-number
2216 (match-string 2 res
))))
2218 (match-string 1 res
))
2220 (insert res
"\n"))))
2222 (defconst org-latex-entities
2251 "\\begin{description}"
2252 "\\begin{enumerate}"
2256 "\\begin{flushleft}"
2257 "\\begin{flushright}"
2262 "\\begin{quotation}"
2267 "\\begin{thebibliography}"
2269 "\\begin{titlepage}"
2397 "A list of LaTeX commands to be protected when performing conversion.")
2399 (defvar org-latex-entities-exceptions nil
)
2401 (defconst org-latex-entities-regexp
2403 (dolist (x org-latex-entities
)
2405 (add-to-list 'org-latex-entities-exceptions x
)
2407 (if (string-match "[a-zA-Z]$" x
)
2410 (concat "\\(" (regexp-opt (nreverse names
)) "\\>\\)"
2411 "\\|\\(" (regexp-opt (nreverse rest
)) "\\)")))
2413 (provide 'org-export-latex
)
2414 (provide 'org-latex
)
2416 ;; arch-tag: 23c2b87d-da04-4c2d-ad2d-1eb6487bc3ad
2418 ;;; org-latex.el ends here