1 ;;; org-export-latex.el --- LaTeX exporter for org-mode
3 ;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
5 ;; Emacs Lisp Archive Entry
6 ;; Filename: org-export-latex.el
8 ;; Author: Bastien Guerry <bzg AT altern DOT org>
9 ;; Maintainer: Bastien Guerry <bzg AT altern DOT org>
10 ;; Keywords: org, wp, tex
11 ;; Description: Converts an org-mode buffer into LaTeX
12 ;; URL: http://www.cognition.ens.fr/~guerry/u/org-export-latex.el
14 ;; This file is part of GNU Emacs.
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 ;; This library implements a LaTeX exporter for org-mode.
33 ;; Put this file into your load-path and the following into your ~/.emacs:
34 ;; (require 'org-export-latex)
36 ;; The interactive functions are similar to those of the HTML exporter:
38 ;; M-x `org-export-as-latex'
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'
54 (defvar org-export-latex-class nil
)
55 (defvar org-export-latex-header nil
)
56 (defvar org-export-latex-append-header nil
)
57 (defvar org-export-latex-options-plist nil
)
58 (defvar org-export-latex-todo-keywords-1 nil
)
59 (defvar org-export-latex-all-targets-re nil
)
60 (defvar org-export-latex-add-level
0)
61 (defvar org-export-latex-sectioning
"")
62 (defvar org-export-latex-sectioning-depth
0)
63 (defvar org-export-latex-list-beginning-re
64 "^\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) +?")
66 (defvar org-export-latex-special-string-regexps
71 "A list of regexps to convert as special keywords.")
73 (defvar latexp
) ; dynamically scoped from org.el
74 (defvar re-quote
) ; dynamically scoped from org.el
75 (defvar commentsp
) ; dynamically scoped from org.el
79 (defcustom org-export-latex-default-class
"article"
80 "The default LaTeX class."
81 :group
'org-export-latex
82 :type
'(string :tag
"LaTeX class"))
84 (defcustom org-export-latex-classes
86 "\\documentclass[11pt,a4paper]{article}
87 \\usepackage[utf8]{inputenc}
88 \\usepackage[T1]{fontenc}
89 \\usepackage{hyperref}"
90 ("\\section{%s}" .
"\\section*{%s}")
91 ("\\subsection{%s}" .
"\\subsection*{%s}")
92 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")
93 ("\\paragraph{%s}" .
"\\paragraph*{%s}")
94 ("\\subparagraph{%s}" .
"\\subparagraph*{%s}"))
96 "\\documentclass[11pt,a4paper]{report}
97 \\usepackage[utf8]{inputenc}
98 \\usepackage[T1]{fontenc}
99 \\usepackage{hyperref}"
100 ("\\part{%s}" .
"\\part*{%s}")
101 ("\\chapter{%s}" .
"\\chapter*{%s}")
102 ("\\section{%s}" .
"\\section*{%s}")
103 ("\\subsection{%s}" .
"\\subsection*{%s}")
104 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}"))
106 "\\documentclass[11pt,a4paper]{book}
107 \\usepackage[utf8]{inputenc}
108 \\usepackage[T1]{fontenc}
109 \\usepackage{hyperref}"
110 ("\\part{%s}" .
"\\part*{%s}")
111 ("\\chapter{%s}" .
"\\chapter*{%s}")
112 ("\\section{%s}" .
"\\section*{%s}")
113 ("\\subsection{%s}" .
"\\subsection*{%s}")
114 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")))
115 "Alist of LaTeX classes and associated header and structure.
116 If #+LaTeX_CLASS is set in the buffer, use its value and the
117 associated information. Here is the structure of each cell:
121 (unnumbered-section numbered-section\)
124 A %s formatter is mandatory in each section string and will be
125 replaced by the title of the section."
126 :group
'org-export-latex
128 (list (string :tag
"LaTeX class")
129 (string :tag
"LaTeX header")
131 (string :tag
"Numbered")
132 (string :tag
"Unnumbered"))
134 (string :tag
"Numbered")
135 (string :tag
"Unnumbered"))
137 (string :tag
"Numbered")
138 (string :tag
"Unnumbered"))
140 (string :tag
"Numbered")
141 (string :tag
"Unnumbered"))
143 (string :tag
"Numbered")
144 (string :tag
"Unnumbered")))))
146 (defcustom org-export-latex-emphasis-alist
147 '(("*" "\\textbf{%s}" nil
)
148 ("/" "\\emph{%s}" nil
)
149 ("_" "\\underline{%s}" nil
)
150 ("+" "\\texttt{%s}" nil
)
151 ("=" "\\texttt{%s}" nil
)
152 ("~" "\\texttt{%s}" t
))
153 "Alist of LaTeX expressions to convert emphasis fontifiers.
154 Each element of the list is a list of three elements.
155 The first element is the character used as a marker for fontification.
156 The second element is a formatting string to wrap fontified text with.
157 The third element decides whether to protect converted text from other
159 :group
'org-export-latex
162 (defcustom org-export-latex-title-command
"\\maketitle"
163 "The command used to insert the title just after \\begin{document}.
164 If this string contains the formatting specification \"%s\" then
165 it will be used as a formatting string, passing the title as an
167 :group
'org-export-latex
170 (defcustom org-export-latex-date-format
172 "Format string for \\date{...}."
173 :group
'org-export-latex
176 (defcustom org-export-latex-tables-verbatim nil
177 "When non-nil, export tables as verbatim."
178 :group
'org-export-latex
181 (defcustom org-export-latex-tables-column-borders nil
182 "When non-nil, group of columns are surrounded with borders,
183 XSeven if these borders are the outside borders of the table."
184 :group
'org-export-latex
187 (defcustom org-export-latex-packages-alist nil
188 "Alist of packages to be inserted in the header.
189 Each cell is of the forma \( \"option\" . \"package\" \)."
190 :group
'org-export-latex
193 (defcustom org-export-latex-low-levels
'description
194 "How to convert sections below the current level of sectioning,
195 as specified by `org-export-headline-levels' or the value of \"H:\"
196 in Org's #+OPTION line.
198 This can be either nil (skip the sections), 'description (convert
199 the sections as descriptive lists) or a string to be used instead
200 of \\section{%s}. In this latter case, the %s stands here for the
201 inserted headline and is mandatory."
202 :group
'org-export-latex
203 :type
'(choice (const :tag
"Ignore" nil
)
204 (symbol :tag
"Convert as descriptive list" description
)
205 (string :tag
"Use a section string" :value
"\\subparagraph{%s}")))
207 (defcustom org-export-latex-remove-from-headlines
208 '(:todo t
:priority t
:tags t
)
209 "A plist of keywords to remove from headlines.
210 Non-nil means remove this keyword type from the headline.
212 Don't remove the keys, just change their values."
214 :group
'org-export-latex
)
216 (defcustom org-export-latex-image-default-option
"width=10em"
217 "Default option for images."
218 :group
'org-export-latex
221 (defcustom org-export-latex-coding-system nil
222 "Coding system for the exported LaTex file."
223 :group
'org-export-latex
224 :type
'coding-system
)
226 (defcustom org-list-radio-list-templates
227 '((latex-mode "% BEGIN RECEIVE ORGLST %n
228 % END RECEIVE ORGLST %n
230 #+ORGLST: SEND %n org-list-to-latex
233 (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
234 @c END RECEIVE ORGLST %n
236 #+ORGLST: SEND %n org-list-to-texinfo
239 (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
240 <!-- END RECEIVE ORGLST %n -->
242 #+ORGLST: SEND %n org-list-to-html
245 "Templates for radio lists in different major modes.
246 All occurrences of %n in a template will be replaced with the name of the
247 list, obtained by prompting the user."
248 :group
'org-plain-lists
250 (list (symbol :tag
"Major mode")
251 (string :tag
"Format"))))
253 ;;; Autoload functions:
256 (defun org-export-as-latex-batch ()
257 "Call `org-export-as-latex', may be used in batch processing as
259 --load=$HOME/lib/emacs/org.el
260 --eval \"(setq org-export-headline-levels 2)\"
261 --visit=MyFile --funcall org-export-as-latex-batch"
262 (org-export-as-latex org-export-headline-levels
'hidden
))
265 (defun org-export-as-latex-to-buffer (arg)
266 "Call `org-exort-as-latex` with output to a temporary buffer.
267 No file is created. The prefix ARG is passed through to `org-export-as-latex'."
269 (org-export-as-latex arg nil nil
"*Org LaTeX Export*")
270 (switch-to-buffer-other-window "*Org LaTeX Export*"))
273 (defun org-replace-region-by-latex (beg end
)
274 "Replace the region from BEG to END with its LaTeX export.
275 It assumes the region has `org-mode' syntax, and then convert it to
276 LaTeX. This can be used in any buffer. For example, you could
277 write an itemized list in `org-mode' syntax in an LaTeX buffer and
278 then use this command to convert it."
281 (save-window-excursion
283 (setq latex
(org-export-region-as-latex
285 (setq reg
(buffer-substring beg end
)
286 buf
(get-buffer-create "*Org tmp*"))
292 (setq latex
(org-export-region-as-latex
293 (point-min) (point-max) t
'string
)))
295 (delete-region beg end
)
299 (defun org-export-region-as-latex (beg end
&optional body-only buffer
)
300 "Convert region from BEG to END in `org-mode' buffer to LaTeX.
301 If prefix arg BODY-ONLY is set, omit file header, footer, and table of
302 contents, and only produce the region of converted text, useful for
303 cut-and-paste operations.
304 If BUFFER is a buffer or a string, use/create that buffer as a target
305 of the converted LaTeX. If BUFFER is the symbol `string', return the
306 produced LaTeX as a string and leave not buffer behind. For example,
307 a Lisp program could call this function in the following way:
309 (setq latex (org-export-region-as-latex beg end t 'string))
311 When called interactively, the output buffer is selected, and shown
312 in a window. A non-interactive call will only retunr the buffer."
314 (when (interactive-p)
315 (setq buffer
"*Org LaTeX Export*"))
316 (let ((transient-mark-mode t
) (zmacs-regions t
)
319 (set-mark (point)) ;; to activate the region
321 (setq rtn
(org-export-as-latex
324 (if (fboundp 'deactivate-mark
) (deactivate-mark))
325 (if (and (interactive-p) (bufferp rtn
))
326 (switch-to-buffer-other-window rtn
)
330 (defun org-export-as-latex (arg &optional hidden ext-plist
331 to-buffer body-only pub-dir
)
332 "Export current buffer to a LaTeX file.
333 If there is an active region, export only the region. The prefix
334 ARG specifies how many levels of the outline should become
335 headlines. The default is 3. Lower levels will be exported
336 depending on `org-export-latex-low-levels'. The default is to
337 convert them as description lists. When HIDDEN is non-nil, don't
338 display the LaTeX buffer. EXT-PLIST is a property list with
339 external parameters overriding org-mode's default settings, but
340 still inferior to file-local settings. When TO-BUFFER is
341 non-nil, create a buffer with that name and export to that
342 buffer. If TO-BUFFER is the symbol `string', don't leave any
343 buffer behind but just return the resulting LaTeX as a string.
344 When BODY-ONLY is set, don't produce the file header and footer,
345 simply return the content of \begin{document}...\end{document},
346 without even the \begin{document} and \end{document} commands.
347 when PUB-DIR is set, use this as the publishing directory."
349 ;; Make sure we have a file name when we need it.
350 (when (and (not (or to-buffer body-only
))
351 (not buffer-file-name
))
352 (if (buffer-base-buffer)
353 (org-set-local 'buffer-file-name
354 (with-current-buffer (buffer-base-buffer)
356 (error "Need a file name to be able to export")))
358 (message "Exporting to LaTeX...")
359 (org-update-radio-target-regexp)
360 (org-export-latex-set-initial-vars ext-plist arg
)
361 (let* ((wcf (current-window-configuration))
362 (opt-plist org-export-latex-options-plist
)
363 (region-p (org-region-active-p))
364 (rbeg (and region-p
(region-beginning)))
365 (rend (and region-p
(region-end)))
370 (and (org-at-heading-p)
371 (>= (org-end-of-subtree t t
) rend
)))))
372 (opt-plist (if subtree-p
373 (org-export-add-subtree-options opt-plist rbeg
)
375 ;; Make sure the variable contains the updated values.
376 (org-export-latex-options-plist opt-plist
)
377 (title (or (and subtree-p
(org-export-get-title-from-subtree))
378 (plist-get opt-plist
:title
)
380 (plist-get opt-plist
:skip-before-1st-heading
))
381 (org-export-grab-title-from-buffer))
382 (file-name-sans-extension
383 (file-name-nondirectory buffer-file-name
))))
384 (filename (concat (file-name-as-directory
386 (org-export-directory :LaTeX ext-plist
)))
387 (file-name-sans-extension
389 (org-entry-get rbeg
"EXPORT_FILE_NAME" t
))
390 (file-name-nondirectory ;sans-extension
393 (filename (if (equal (file-truename filename
)
394 (file-truename buffer-file-name
))
395 (concat filename
".tex")
397 (buffer (if to-buffer
399 ((eq to-buffer
'string
) (get-buffer-create
400 "*Org LaTeX Export*"))
401 (t (get-buffer-create to-buffer
)))
402 (find-file-noselect filename
)))
403 (odd org-odd-levels-only
)
404 (header (org-export-latex-make-header title opt-plist
))
405 (skip (cond (subtree-p nil
)
407 ;; never skip first lines when exporting a subtree
408 (t (plist-get opt-plist
:skip-before-1st-heading
))))
409 (text (plist-get opt-plist
:text
))
410 (first-lines (if skip
"" (org-export-latex-first-lines)))
411 (coding-system (and (boundp 'buffer-file-coding-system
)
412 buffer-file-coding-system
))
413 (coding-system-for-write (or org-export-latex-coding-system
415 (save-buffer-coding-system (or org-export-latex-coding-system
417 (region (buffer-substring
418 (if region-p
(region-beginning) (point-min))
419 (if region-p
(region-end) (point-max))))
421 (org-export-preprocess-string
422 region
:emph-multiline t
425 :add-text
(if (eq to-buffer
'string
) nil text
)
426 :skip-before-1st-heading skip
427 :LaTeX-fragments nil
)))
432 (and (fboundp 'set-buffer-file-coding-system
)
433 (set-buffer-file-coding-system coding-system-for-write
))
435 ;; insert the header and initial document commands
436 (unless (or (eq to-buffer
'string
) body-only
)
439 ;; insert text found in #+TEXT
440 (when (and text
(not (eq to-buffer
'string
)))
441 (insert (org-export-latex-content
442 text
'(lists tables fixed-width keywords
))
445 ;; insert lines before the first headline
446 (unless (or skip
(eq to-buffer
'string
))
447 (insert first-lines
))
449 ;; handle the case where the region does not begin with a section
451 (insert (with-temp-buffer
452 (insert string-for-export
)
453 (org-export-latex-first-lines))))
455 ;; export the content of headlines
456 (org-export-latex-global
458 (insert string-for-export
)
459 (goto-char (point-min))
460 (when (re-search-forward "^\\(\\*+\\) " nil t
)
461 (let* ((asters (length (match-string 1)))
462 (level (if odd
(- asters
2) (- asters
1))))
463 (setq org-export-latex-add-level
464 (if odd
(1- (/ (1+ asters
) 2)) (1- asters
)))
465 (org-export-latex-parse-global level odd
)))))
468 (unless body-only
(insert "\n\\end{document}"))
469 (or to-buffer
(save-buffer))
470 (goto-char (point-min))
471 (message "Exporting to LaTeX...done")
473 (if (eq to-buffer
'string
)
474 (prog1 (buffer-substring (point-min) (point-max))
475 (kill-buffer (current-buffer)))
477 (set-window-configuration wcf
))))
479 ;;; Parsing functions:
481 (defun org-export-latex-parse-global (level odd
)
482 "Parse the current buffer recursively, starting at LEVEL.
483 If ODD is non-nil, assume the buffer only contains odd sections.
484 Return a list reflecting the document structure."
486 (goto-char (point-min))
487 (let* ((cnt 0) output
488 (depth org-export-latex-sectioning-depth
))
489 (while (re-search-forward
490 (concat "^\\(\\(?:\\*\\)\\{"
491 (number-to-string (+ (if odd
2 1) level
))
493 ;; make sure that there is no upper heading
498 (concat "^\\(\\(?:\\*\\)\\{"
499 (number-to-string level
)
500 "\\}\\) \\(.*\\)$") nil t
)))) t
)
502 (let* ((pos (match-beginning 0))
503 (heading (match-string 2))
504 (nlevel (if odd
(/ (+ 3 level
) 2) (1+ level
))))
509 (if (re-search-forward
510 (concat "^\\(\\(?:\\*\\)\\{"
511 (number-to-string (+ (if odd
2 1) level
))
512 "\\}\\) \\(.*\\)$") nil t
)
515 (goto-char (point-min))
523 `(heading .
,heading
)
524 `(content .
,(org-export-latex-parse-content))
525 `(subcontent .
,(org-export-latex-parse-subcontent
530 (defun org-export-latex-parse-content ()
531 "Extract the content of a section."
533 (end (if (re-search-forward "^\\(\\*\\)+ .*$" nil t
)
534 (progn (beginning-of-line) (point))
536 (buffer-substring beg end
)))
538 (defun org-export-latex-parse-subcontent (level odd
)
539 "Extract the subcontent of a section at LEVEL.
540 If ODD Is non-nil, assume subcontent only contains odd sections."
541 (if (not (re-search-forward
542 (concat "^\\(\\(?:\\*\\)\\{"
543 (number-to-string (+ (if odd
4 2) level
))
546 nil
; subcontent is nil
547 (org-export-latex-parse-global (+ (if odd
2 1) level
) odd
)))
549 ;;; Rendering functions:
550 (defun org-export-latex-global (content)
551 "Export CONTENT to LaTeX.
552 CONTENT is an element of the list produced by
553 `org-export-latex-parse-global'."
554 (if (eq (car content
) 'subcontent
)
555 (mapc 'org-export-latex-sub
(cdr content
))
556 (org-export-latex-sub (car content
))))
558 (defun org-export-latex-sub (subcontent)
559 "Export the list SUBCONTENT to LaTeX.
560 SUBCONTENT is an alist containing information about the headline
562 (let ((num (plist-get org-export-latex-options-plist
:section-numbers
)))
563 (mapc (lambda(x) (org-export-latex-subcontent x num
)) subcontent
)))
565 (defun org-export-latex-subcontent (subcontent num
)
566 "Export each cell of SUBCONTENT to LaTeX."
567 (let ((heading (org-export-latex-fontify-headline
568 (cdr (assoc 'heading subcontent
))))
569 (level (- (cdr (assoc 'level subcontent
))
570 org-export-latex-add-level
))
571 (occur (number-to-string (cdr (assoc 'occur subcontent
))))
572 (content (cdr (assoc 'content subcontent
)))
573 (subcontent (cadr (assoc 'subcontent subcontent
))))
576 ((<= level org-export-latex-sectioning-depth
)
577 (let ((sec (nth (1- level
) org-export-latex-sectioning
)))
578 (insert (format (if num
(car sec
) (cdr sec
)) heading
) "\n"))
579 (insert (org-export-latex-content content
))
580 (cond ((stringp subcontent
) (insert subcontent
))
581 ((listp subcontent
) (org-export-latex-sub subcontent
))))
582 ;; At a level under the hl option: we can drop this subsection
583 ((> level org-export-latex-sectioning-depth
)
584 (cond ((eq org-export-latex-low-levels
'description
)
585 (insert (format "\\begin{description}\n\n\\item[%s]\n\n" heading
))
586 (insert (org-export-latex-content content
))
587 (cond ((stringp subcontent
) (insert subcontent
))
588 ((listp subcontent
) (org-export-latex-sub subcontent
)))
589 (insert "\\end{description}\n"))
590 ((stringp org-export-latex-low-levels
)
591 (insert (format org-export-latex-low-levels heading
) "\n")
592 (insert (org-export-latex-content content
))
593 (cond ((stringp subcontent
) (insert subcontent
))
594 ((listp subcontent
) (org-export-latex-sub subcontent
)))))))))
596 ;;; Exporting internals:
597 (defun org-export-latex-set-initial-vars (ext-plist level
)
598 "Store org local variables required for LaTeX export.
599 EXT-PLIST is an optional additional plist.
600 LEVEL indicates the default depth for export."
601 (setq org-export-latex-todo-keywords-1 org-todo-keywords-1
602 org-export-latex-all-targets-re
603 (org-make-target-link-regexp (org-all-targets))
604 org-export-latex-options-plist
605 (org-combine-plists (org-default-export-plist) ext-plist
606 (org-infile-export-plist))
607 org-export-latex-class
609 (goto-char (point-min))
610 (if (and (re-search-forward "^#\\+LaTeX_CLASS:[ \t]*\\([a-zA-Z]+\\)" nil t
)
611 (assoc (match-string 1) org-export-latex-classes
))
613 org-export-latex-default-class
))
614 org-export-latex-header
615 (cadr (assoc org-export-latex-class org-export-latex-classes
))
616 org-export-latex-sectioning
617 (cddr (assoc org-export-latex-class org-export-latex-classes
))
618 org-export-latex-sectioning-depth
621 (plist-get org-export-latex-options-plist
:headline-levels
))
622 (sec-depth (length org-export-latex-sectioning
)))
623 (if (> hl-levels sec-depth
) sec-depth hl-levels
)))))
625 (defun org-export-latex-make-header (title opt-plist
)
626 "Make the LaTeX header and return it as a string.
627 TITLE is the current title from the buffer or region.
628 OPT-PLIST is the options plist for current buffer."
629 (let ((toc (plist-get opt-plist
:table-of-contents
))
630 (author (plist-get opt-plist
:author
)))
632 (if (plist-get opt-plist
:time-stamp-file
)
633 (format-time-string "% Created %Y-%m-%d %a %H:%M\n"))
634 ;; insert LaTeX custom header
635 org-export-latex-header
637 ;; insert information on LaTeX packages
638 (when org-export-latex-packages-alist
639 (mapconcat (lambda(p)
640 (if (equal "" (car p
))
641 (format "\\usepackage{%s}" (cadr p
))
642 (format "\\usepackage[%s]{%s}"
644 org-export-latex-packages-alist
"\n"))
645 ;; insert additional commands in the header
646 org-export-latex-append-header
651 (org-export-latex-content
652 title
'(lists tables fixed-width keywords
)))
653 ;; insert author info
654 (if (plist-get opt-plist
:author-info
)
655 (format "\\author{%s}\n"
656 (or author user-full-name
))
657 (format "%%\\author{%s}\n"
658 (or author user-full-name
)))
660 (format "\\date{%s}\n"
662 (or (plist-get opt-plist
:date
)
663 org-export-latex-date-format
)))
664 ;; beginning of the document
665 "\n\\begin{document}\n\n"
666 ;; insert the title command
667 (if (string-match "%s" org-export-latex-title-command
)
668 (format org-export-latex-title-command title
)
669 org-export-latex-title-command
)
672 (when (and org-export-with-toc
673 (plist-get opt-plist
:section-numbers
))
675 (format "\\setcounter{tocdepth}{%s}\n\\tableofcontents\n\n"
676 (min toc
(plist-get opt-plist
:headline-levels
))))
677 (toc (format "\\setcounter{tocdepth}{%s}\n\\tableofcontents\n\n"
678 (plist-get opt-plist
:headline-levels
))))))))
680 (defun org-export-latex-first-lines (&optional comments
)
681 "Export the first lines before first headline.
682 COMMENTS is either nil to replace them with the empty string or a
683 formatting string like %%%%s if we want to comment them out."
685 (goto-char (point-min))
686 (if (org-at-heading-p) (beginning-of-line 2))
688 (end (if (and (re-search-forward "^\\* " nil t
)
689 (not (eq pt
(match-beginning 0))))
690 (goto-char (match-beginning 0))
691 (goto-char (point-max)))))
692 (org-export-latex-content
693 (org-export-preprocess-string
694 (buffer-substring (point-min) end
)
699 :skip-before-1st-heading nil
700 :LaTeX-fragments nil
)))))
702 (defun org-export-latex-content (content &optional exclude-list
)
703 "Convert CONTENT string to LaTeX.
704 Don't perform conversions that are in EXCLUDE-LIST. Recognized
705 conversion types are: quotation-marks, emphasis, sub-superscript,
706 links, keywords, lists, tables, fixed-width"
709 (unless (memq 'quotation-marks exclude-list
)
710 (org-export-latex-quotation-marks))
711 (unless (memq 'emphasis exclude-list
)
712 (when (plist-get org-export-latex-options-plist
:emphasize
)
713 (org-export-latex-fontify)))
714 (unless (memq 'sub-superscript exclude-list
)
715 (org-export-latex-special-chars
716 (plist-get org-export-latex-options-plist
:sub-superscript
)))
717 (unless (memq 'links exclude-list
)
718 (org-export-latex-links))
719 (unless (memq 'keywords exclude-list
)
720 (org-export-latex-keywords
721 (plist-get org-export-latex-options-plist
:timestamps
)))
722 (unless (memq 'lists exclude-list
)
723 (org-export-latex-lists))
724 (unless (memq 'tables exclude-list
)
725 (org-export-latex-tables
726 (plist-get org-export-latex-options-plist
:tables
)))
727 (unless (memq 'fixed-width exclude-list
)
728 (org-export-latex-fixed-width
729 (plist-get org-export-latex-options-plist
:fixed-width
)))
731 (buffer-substring (point-min) (point-max))))
733 (defun org-export-latex-protect-string (s)
734 "Prevent further conversion for string S by adding the
735 org-protect property."
736 (add-text-properties 0 (length s
) '(org-protected t
) s
) s
)
738 (defun org-export-latex-protect-char-in-string (char-list string
)
739 "Add org-protected text-property to char from CHAR-LIST in STRING."
743 (goto-char (point-min))
744 (while (re-search-forward (regexp-opt char-list
) nil t
)
745 (add-text-properties (match-beginning 0)
746 (match-end 0) '(org-protected t
)))
749 (defun org-export-latex-keywords-maybe (remove-list)
750 "Maybe remove keywords depending on rules in REMOVE-LIST."
751 (goto-char (point-min))
752 (let ((re-todo (mapconcat 'identity org-export-latex-todo-keywords-1
"\\|"))
753 (case-fold-search nil
))
754 ;; convert TODO keywords
755 (when (re-search-forward (concat "^\\(" re-todo
"\\)") nil t
)
756 (if (plist-get remove-list
:todo
)
758 (replace-match (format "\\texttt{%s}" (match-string 1)) t t
)))
759 ;; convert priority string
760 (when (re-search-forward "\\[\\\\#.\\]" nil t
)
761 (if (plist-get remove-list
:priority
)
763 (replace-match (format "\\texttt{%s}" (match-string 0)) t t
)))
765 (when (re-search-forward "\\(:[a-zA-Z0-9]+\\)+:" nil t
)
766 (if (or (not org-export-with-tags
)
767 (plist-get remove-list
:tags
))
769 (replace-match (format "\\texttt{%s}" (match-string 0)) t t
)))))
771 (defun org-export-latex-fontify-headline (string)
772 "Fontify special words in string."
774 ;; FIXME: org-inside-LaTeX-fragment-p doesn't work when the $...$ is at
775 ;; the beginning of the buffer - inserting "\n" is safe here though.
777 (goto-char (point-min))
778 (when (plist-get org-export-latex-options-plist
:emphasize
)
779 (org-export-latex-fontify))
780 (org-export-latex-special-chars
781 (plist-get org-export-latex-options-plist
:sub-superscript
))
782 (org-export-latex-keywords-maybe
783 org-export-latex-remove-from-headlines
)
784 (org-export-latex-links)
785 (org-trim (buffer-substring-no-properties (point-min) (point-max)))))
787 (defun org-export-latex-quotation-marks ()
788 "Export question marks depending on language conventions."
789 (let* ((lang (plist-get org-export-latex-options-plist
:language
))
790 (quote-rpl (if (equal lang
"fr")
791 '(("\\(\\s-\\)\"" "«~")
792 ("\\(\\S-\\)\"" "~»")
794 '(("\\(\\s-\\)\"" "``")
795 ("\\(\\S-\\)\"" "''")
796 ("\\(\\s-\\)'" "`")))))
797 (mapc (lambda(l) (goto-char (point-min))
798 (while (re-search-forward (car l
) nil t
)
799 (let ((rpl (concat (match-string 1) (cadr l
))))
800 (org-export-latex-protect-string rpl
)
802 (replace-match rpl t t
))))) quote-rpl
)))
804 (defun org-export-latex-special-chars (sub-superscript)
805 "Export special characters to LaTeX.
806 If SUB-SUPERSCRIPT is non-nil, convert \\ and ^.
807 See the `org-export-latex.el' code for a complete conversion table."
808 (goto-char (point-min))
810 (goto-char (point-min))
811 (while (re-search-forward c nil t
)
812 ;; Put the point where to check for org-protected
813 (unless (or (get-text-property (match-beginning 2) 'org-protected
)
815 (cond ((member (match-string 2) '("\\$" "$"))
816 (if (equal (match-string 2) "\\$")
817 (replace-match (concat (match-string 1) "$"
818 (match-string 3)) t t
)
819 (replace-match (concat (match-string 1) "\\$"
820 (match-string 3)) t t
)))
821 ((member (match-string 2) '("&" "%" "#"))
822 (if (equal (match-string 1) "\\")
823 (replace-match (match-string 2) t t
)
824 (replace-match (concat (match-string 1) "\\"
825 (match-string 2)) t t
)))
826 ((equal (match-string 2) "...")
828 (concat (match-string 1)
829 (org-export-latex-protect-string "\\ldots{}")) t t
))
830 ((equal (match-string 2) "~")
831 (cond ((equal (match-string 1) "\\") nil
)
832 ((eq 'org-link
(get-text-property 0 'face
(match-string 2)))
833 (replace-match (concat (match-string 1) "\\~") t t
))
835 (org-export-latex-protect-string
836 (concat (match-string 1) "\\~{}")) t t
))))
837 ((member (match-string 2) '("{" "}"))
838 (unless (save-match-data (org-inside-LaTeX-fragment-p))
839 (if (equal (match-string 1) "\\")
840 (replace-match (match-string 2) t t
)
841 (replace-match (concat (match-string 1) "\\"
842 (match-string 2)) t t
)))))
843 (unless (save-match-data (org-inside-LaTeX-fragment-p))
844 (cond ((equal (match-string 2) "\\")
845 (replace-match (or (save-match-data
846 (org-export-latex-treat-backslash-char
848 (match-string 3))) "") t t
))
849 ((member (match-string 2) '("_" "^"))
850 (replace-match (or (save-match-data
851 (org-export-latex-treat-sub-super-char
855 (match-string 3))) "") t t
)))))))
856 '("^\\([^\n$]*?\\|^\\)\\(\\\\?\\$\\)\\([^\n$]*\\)$"
857 "\\([a-za-z0-9]+\\|[ \t\n]\\|\\b\\|\\\\\\)\\(_\\|\\^\\)\\([a-za-z0-9]+\\|[ \t\n]\\|[:punct:]\\|{[a-za-z0-9]+}\\|([a-za-z0-9]+)\\)"
858 "\\(.\\|^\\)\\(\\\\\\)\\([ \t\n]\\|[a-zA-Z&#%{}\"]+\\)"
865 "\\(.\\|^\\)\\(\\.\\.\\.\\)"
866 ;; (?\< . "\\textless{}")
867 ;; (?\> . "\\textgreater{}")
870 (defun org-export-latex-treat-sub-super-char
871 (subsup string-before char string-after
)
872 "Convert the \"_\" and \"^\" characters to LaTeX.
873 SUBSUP corresponds to the ^: option in the #+OPTIONS line.
874 Convert CHAR depending on STRING-BEFORE and STRING-AFTER."
875 (cond ((equal string-before
"\\")
876 (concat string-before char string-after
))
877 ;; this is part of a math formula
878 ((and (string-match "\\S-+" string-before
)
879 (string-match "\\S-+" string-after
))
880 (cond ((eq 'org-link
(get-text-property 0 'face char
))
881 (concat string-before
"\\" char string-after
))
882 ((save-match-data (org-inside-LaTeX-fragment-p))
884 (cond ((eq 1 (length string-after
))
885 (concat string-before char string-after
))
886 ((string-match "[({]?\\([^)}]+\\)[)}]?" string-after
)
887 (format "%s%s{%s}" string-before char
888 (match-string 1 string-after
))))))
890 (> (length string-after
) 1)
891 (string-match "[({]?\\([^)}]+\\)[)}]?" string-after
))
892 (format "$%s%s{%s}$" string-before char
893 (match-string 1 string-after
)))
894 (subsup (concat "$" string-before char string-after
"$"))
895 (t (org-export-latex-protect-string
896 (concat string-before
"\\" char
"{}" string-after
)))))
897 (t (org-export-latex-protect-string
898 (concat string-before
"\\" char
"{}" string-after
)))))
900 (defun org-export-latex-treat-backslash-char (string-before string-after
)
901 "Convert the \"$\" special character to LaTeX.
902 The conversion is made depending of STRING-BEFORE and STRING-AFTER."
903 (cond ((member (list string-after
) org-html-entities
)
904 ;; backslash is part of a special entity (like "\alpha")
905 (concat string-before
"$\\"
906 (or (cdar (member (list string-after
) org-html-entities
))
908 ((and (not (string-match "^[ \n\t]" string-after
))
909 (not (string-match "[ \t]\\'\\|^" string-before
)))
910 ;; backslash is inside a word
911 (org-export-latex-protect-string
912 (concat string-before
"\\textbackslash{}" string-after
)))
913 ((not (or (equal string-after
"")
914 (string-match "^[ \t\n]" string-after
)))
915 ;; backslash might escape a character (like \#) or a user TeX
916 ;; macro (like \setcounter)
917 (org-export-latex-protect-string
918 (concat string-before
"\\" string-after
)))
919 ((and (string-match "^[ \t\n]" string-after
)
920 (string-match "[ \t\n]\\'" string-before
))
921 ;; backslash is alone, convert it to $\backslash$
922 (org-export-latex-protect-string
923 (concat string-before
"\\textbackslash{}" string-after
)))
924 (t (org-export-latex-protect-string
925 (concat string-before
"\\textbackslash{}" string-after
)))))
927 (defun org-export-latex-keywords (timestamps)
928 "Convert special keywords to LaTeX.
929 Regexps are those from `org-export-latex-special-string-regexps'."
930 (let ((rg org-export-latex-special-string-regexps
) r
)
931 (while (setq r
(pop rg
))
932 (goto-char (point-min))
933 (while (re-search-forward (eval r
) nil t
)
935 (replace-match (format "\\\\texttt{%s}" (match-string 0)) t
)
936 (replace-match ""))))))
938 (defun org-export-latex-fixed-width (opt)
939 "When OPT is non-nil convert fixed-width sections to LaTeX."
940 (goto-char (point-min))
941 (while (re-search-forward "^[ \t]*:" nil t
)
943 (progn (goto-char (match-beginning 0))
944 (insert "\\begin{verbatim}\n")
945 (while (looking-at "^\\([ \t]*\\):\\(.*\\)$")
946 (replace-match (concat (match-string 1)
947 (match-string 2)) t t
)
949 (insert "\\end{verbatim}\n\n"))
950 (progn (goto-char (match-beginning 0))
951 (while (looking-at "^\\([ \t]*\\):\\(.*\\)$")
952 (replace-match (concat "%" (match-string 1)
953 (match-string 2)) t t
)
957 (defvar org-table-last-alignment
) ; defined in org-table.el
958 (declare-function orgtbl-to-latex
"org-table" (table params
) t
)
959 (defun org-export-latex-tables (insert)
960 "Convert tables to LaTeX and INSERT it."
961 (goto-char (point-min))
962 (while (re-search-forward "^\\([ \t]*\\)|" nil t
)
963 ;; FIXME really need to save-excursion?
964 (save-excursion (org-table-align))
965 (let* ((beg (org-table-begin))
966 (end (org-table-end))
967 (raw-table (buffer-substring-no-properties beg end
))
968 fnum fields line lines olines gr colgropen line-fmt align
)
969 (if org-export-latex-tables-verbatim
970 (let* ((tbl (concat "\\begin{verbatim}\n" raw-table
971 "\\end{verbatim}\n")))
972 (apply 'delete-region
(list beg end
))
975 (setq lines
(split-string raw-table
"\n" t
))
976 (apply 'delete-region
(list beg end
))
977 (when org-export-table-remove-special-lines
978 (setq lines
(org-table-clean-before-export lines
)))
979 ;; make a formatting string to reflect aligment
981 (while (and (not line-fmt
) (setq line
(pop olines
)))
982 (unless (string-match "^[ \t]*|-" line
)
983 (setq fields
(org-split-string line
"[ \t]*|[ \t]*"))
984 (setq fnum
(make-vector (length fields
) 0))
988 (setq gr
(pop org-table-colgroup-info
))
990 (cond ((eq gr
':start
)
991 (prog1 (if colgropen
"|" "")
994 (prog1 (if colgropen
"|" "|")
995 (setq colgropen nil
)))
997 (if (memq gr
'(:end
:startend
))
998 (progn (setq colgropen nil
) "|")
1001 ;; fix double || in line-fmt
1002 (setq line-fmt
(replace-regexp-in-string "||" "|" line-fmt
))
1003 ;; maybe remove the first and last "|"
1004 (when (and (not org-export-latex-tables-column-borders
)
1005 (string-match "^\\(|\\)?\\(.+\\)|$" line-fmt
))
1006 (setq line-fmt
(match-string 2 line-fmt
)))
1008 (setq align
(apply 'format
1010 (mapcar (lambda (x) (if x
"r" "l"))
1011 org-table-last-alignment
))))
1012 ;; prepare the table to send to orgtbl-to-latex
1016 (or (and (string-match "[ \t]*|-+" elem
) 'hline
)
1017 (split-string (org-trim elem
) "|" t
)))
1020 (insert (orgtbl-to-latex
1021 lines
`(:tstart
,(concat "\\begin{tabular}{" align
"}")))
1024 (defun org-export-latex-fontify ()
1025 "Convert fontification to LaTeX."
1026 (goto-char (point-min))
1027 (while (re-search-forward org-emph-re nil t
)
1028 ;; The match goes one char after the *string*
1029 (let ((emph (assoc (match-string 3)
1030 org-export-latex-emphasis-alist
))
1032 (unless (get-text-property (1- (point)) 'org-protected
)
1033 (setq rpl
(concat (match-string 1)
1034 (format (org-export-latex-protect-char-in-string
1035 '("\\" "{" "}") (cadr emph
))
1039 (setq rpl
(org-export-latex-protect-string rpl
)))
1040 (replace-match rpl t t
)))
1043 (defun org-export-latex-links ()
1044 ;; Make sure to use the LaTeX hyperref and graphicx package
1045 ;; or send some warnings.
1046 "Convert links to LaTeX."
1047 (goto-char (point-min))
1048 (while (re-search-forward org-bracket-link-analytic-regexp nil t
)
1050 (goto-char (match-beginning 0))
1051 (let* ((re-radio org-export-latex-all-targets-re
)
1052 (remove (list (match-beginning 0) (match-end 0)))
1053 (type (match-string 2))
1054 (raw-path (match-string 3))
1055 (full-raw-path (concat (match-string 1) raw-path
))
1056 (desc (match-string 5))
1058 ;; define the path of the link
1060 ((member type
'("http" "https" "ftp"))
1061 (concat type
":" raw-path
))
1062 ((and re-radio
(string-match re-radio raw-path
))
1064 ((equal type
"mailto")
1065 (concat type
":" raw-path
))
1066 ((equal type
"file")
1067 (if (and (or (org-file-image-p (expand-file-name raw-path
))
1068 (string-match "\\.eps$" raw-path
))
1069 (equal desc full-raw-path
))
1071 (progn (when (string-match "\\(.+\\)::.+" raw-path
)
1072 (setq raw-path
(match-string 1 raw-path
)))
1073 (if (file-exists-p raw-path
)
1074 (concat type
"://" (expand-file-name raw-path
))
1075 (concat type
"://" (org-export-directory
1076 :LaTeX org-export-latex-options-plist
)
1078 ;; process with link inserting
1079 (apply 'delete-region remove
)
1080 (cond ((and imgp
(plist-get org-export-latex-options-plist
:inline-images
))
1081 (insert (format "\\includegraphics[%s]{%s}"
1082 ;; image option should be set be a comment line
1083 org-export-latex-image-default-option
1084 (expand-file-name raw-path
))))
1085 (radiop (insert (format "\\hyperref[%s]{%s}" raw-path desc
)))
1086 (path (insert (format "\\href{%s}{%s}" path desc
)))
1087 (t (insert "\\texttt{" desc
"}")))))))
1089 (defvar org-latex-entities
) ; defined below
1091 (defun org-export-latex-preprocess ()
1092 "Clean stuff in the LaTeX export."
1094 ;; Preserve line breaks
1095 (goto-char (point-min))
1096 (while (re-search-forward "\\\\\\\\" nil t
)
1097 (add-text-properties (match-beginning 0) (match-end 0)
1098 '(org-protected t
)))
1100 ;; Convert LaTeX to \LaTeX{}
1101 (goto-char (point-min))
1102 (let ((case-fold-search nil
) rpl
)
1103 (while (re-search-forward "\\([^+_]\\)LaTeX" nil t
)
1104 (replace-match (org-export-latex-protect-string
1105 (concat (match-string 1) "\\LaTeX{}")) t t
)))
1107 ;; Convert blockquotes
1108 (goto-char (point-min))
1109 (while (re-search-forward "^#\\+BEGIN_QUOTE" nil t
)
1110 (replace-match "\\begin{quote}" t t
))
1111 (goto-char (point-min))
1112 (while (re-search-forward "^#\\+END_QUOTE" nil t
)
1113 (replace-match "\\end{quote}" t t
))
1116 (goto-char (point-min))
1117 (while (re-search-forward "^#\\+BEGIN_VERSE" nil t
)
1118 (replace-match "\\begin{verse}" t t
))
1119 (goto-char (point-min))
1120 (while (re-search-forward "^#\\+END_VERSE" nil t
)
1121 (replace-match "\\end{verse}" t t
))
1123 ;; Convert horizontal rules
1124 (goto-char (point-min))
1125 (while (re-search-forward "^----+.$" nil t
)
1126 (replace-match (org-export-latex-protect-string "\\hrule") t t
))
1128 ;; Protect LaTeX commands like \commad[...]{...} or \command{...}
1129 (goto-char (point-min))
1130 (while (re-search-forward "\\\\[a-zA-Z]+\\(?:\\[.*\\]\\)?{.*}" nil t
)
1131 (add-text-properties (match-beginning 0) (match-end 0)
1132 '(org-protected t
)))
1134 ;; Protect LaTeX entities
1135 (goto-char (point-min))
1136 (while (re-search-forward (regexp-opt org-latex-entities
) nil t
)
1137 (add-text-properties (match-beginning 0) (match-end 0)
1138 '(org-protected t
)))
1140 ;; Replace radio links
1141 (goto-char (point-min))
1142 (while (re-search-forward
1143 (concat "<<<?" org-export-latex-all-targets-re
1144 ">>>?\\((INVISIBLE)\\)?") nil t
)
1146 (org-export-latex-protect-string
1147 (format "\\label{%s}%s"(match-string 1)
1148 (if (match-string 2) "" (match-string 1)))) t t
))
1150 ;; Delete @<...> constructs
1151 ;; Thanks to Daniel Clemente for this regexp
1152 (goto-char (point-min))
1153 (while (re-search-forward "@<\\(?:[^\"\n]\\|\".*\"\\)*?>" nil t
)
1156 ;; When converting to LaTeX, replace footnotes
1157 ;; FIXME: don't protect footnotes from conversion
1158 (when (plist-get org-export-latex-options-plist
:footnotes
)
1159 (goto-char (point-min))
1160 (while (re-search-forward "\\[[0-9]+\\]" nil t
)
1161 (when (save-match-data
1162 (save-excursion (beginning-of-line)
1163 (looking-at "[^:|#]")))
1164 (let ((foot-beg (match-beginning 0))
1165 (foot-end (match-end 0))
1166 (foot-prefix (match-string 0))
1167 footnote footnote-rpl
)
1169 (when (search-forward foot-prefix nil t
)
1171 (let ((end (save-excursion
1172 (if (re-search-forward "^$\\|^#.*$\\|\\[[0-9]+\\]" nil t
)
1173 (match-beginning 0) (point-max)))))
1174 (setq footnote
(concat (org-trim (buffer-substring (point) end
))
1175 " ")) ; prevent last } being part of a link
1176 (delete-region (point) end
))
1177 (goto-char foot-beg
)
1178 (delete-region foot-beg foot-end
)
1179 (unless (null footnote
)
1180 (setq footnote-rpl
(format "\\footnote{%s}" footnote
))
1181 (add-text-properties 0 10 '(org-protected t
) footnote-rpl
)
1182 (add-text-properties (1- (length footnote-rpl
))
1183 (length footnote-rpl
)
1184 '(org-protected t
) footnote-rpl
)
1185 (insert footnote-rpl
)))))))
1187 ;; Replace footnote section tag for LaTeX
1188 (goto-char (point-min))
1189 (while (re-search-forward
1190 (concat "^" footnote-section-tag-regexp
) nil t
)
1191 (replace-match ""))))
1195 (defun org-export-latex-lists ()
1196 "Replace plain text lists in current buffer into LaTeX lists."
1197 "Convert lists to LaTeX."
1198 (goto-char (point-min))
1199 (while (re-search-forward org-export-latex-list-beginning-re nil t
)
1201 (insert (org-list-to-latex (org-list-parse-list t
)) "\n")))
1203 (defun org-list-parse-list (&optional delete
)
1204 "Parse the list at point.
1205 Return a list containing first level items as strings and
1206 sublevels as a list of strings."
1207 (let ((start (org-list-item-begin))
1208 (end (org-list-end))
1210 (while (re-search-forward org-export-latex-list-beginning-re end t
)
1211 (setq itemsep
(if (save-match-data
1212 (string-match "^[0-9]" (match-string 2)))
1213 "[0-9]+\\(?:\\.\\|)\\)" "[-+]"))
1214 (let* ((indent1 (match-string 1))
1215 (nextitem (save-excursion
1217 (or (and (re-search-forward
1218 (concat "^" indent1 itemsep
" *?") end t
)
1219 (match-beginning 0)) end
))))
1220 (item (buffer-substring
1222 (or (and (re-search-forward
1223 org-export-latex-list-beginning-re end t
)
1224 (goto-char (match-beginning 0)))
1226 (nextindent (match-string 1))
1227 (item (org-trim item
))
1228 (item (if (string-match "^\\[.+\\]" item
)
1229 (replace-match "\\\\texttt{\\&}"
1232 (when (> (length nextindent
)
1234 (narrow-to-region (point) nextitem
)
1235 (push (org-list-parse-list) output
)
1237 (when delete
(delete-region start end
))
1238 (setq output
(nreverse output
))
1239 (push (if (string-match "^\\[0" itemsep
)
1240 'ordered
'unordered
) output
)))
1242 (defun org-list-item-begin ()
1243 "Find the beginning of the list item and return its position."
1245 (if (not (or (looking-at org-export-latex-list-beginning-re
)
1247 org-export-latex-list-beginning-re nil t
)))
1248 (progn (goto-char (point-min)) (point))
1249 (match-beginning 0))))
1251 (defun org-list-end ()
1252 "Find the end of the list and return its position."
1255 (while (or (looking-at org-export-latex-list-beginning-re
)
1256 (looking-at "^[ \t]+\\|^$"))
1257 (if (eq (point) (point-max))
1258 (throw 'exit
(point-max)))
1259 (forward-line 1))) (point)))
1261 (defun org-list-insert-radio-list ()
1262 "Insert a radio list template appropriate for this major mode."
1264 (let* ((e (assq major-mode org-list-radio-list-templates
))
1267 (unless e
(error "No radio list setup defined for %s" major-mode
))
1268 (setq name
(read-string "List name: "))
1269 (while (string-match "%n" txt
)
1270 (setq txt
(replace-match name t t txt
)))
1271 (or (bolp) (insert "\n"))
1276 (defun org-list-send-list (&optional maybe
)
1277 "Send a tranformed version of this list to the receiver position.
1278 With argument MAYBE, fail quietly if no transformation is defined for
1282 (unless (org-at-item-p) (error "Not at a list"))
1284 (goto-char (org-list-item-begin))
1285 (beginning-of-line 0)
1286 (unless (looking-at "#\\+ORGLST: *SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?")
1289 (error "Don't know how to transform this list"))))
1290 (let* ((name (match-string 1))
1292 (transform (intern (match-string 2)))
1293 (txt (buffer-substring-no-properties
1294 (org-list-item-begin)
1296 (list (org-list-parse-list)))
1297 (unless (fboundp transform
)
1298 (error "No such transformation function %s" transform
))
1299 (setq txt
(funcall transform list
))
1300 ;; Find the insertion place
1302 (goto-char (point-min))
1303 (unless (re-search-forward
1304 (concat "BEGIN RECEIVE ORGLST +" name
"\\([ \t]\\|$\\)") nil t
)
1305 (error "Don't know where to insert translated list"))
1306 (goto-char (match-beginning 0))
1307 (beginning-of-line 2)
1309 (unless (re-search-forward (concat "END RECEIVE ORGLST +" name
) nil t
)
1310 (error "Cannot find end of insertion region"))
1311 (beginning-of-line 1)
1312 (delete-region beg
(point))
1315 (message "List converted and installed at receiver location"))))
1317 (defun org-list-to-generic (list params
)
1318 "Convert a LIST parsed through `org-list-parse-list' to other formats.
1320 Valid parameters are
1322 :ustart String to start an unordered list
1323 :uend String to end an unordered list
1325 :ostart String to start an ordered list
1326 :oend String to end an ordered list
1328 :splice When set to t, return only list body lines, don't wrap
1329 them into :[u/o]start and :[u/o]end. Default is nil.
1331 :istart String to start a list item
1332 :iend String to end a list item
1333 :isep String to separate items
1334 :lsep String to separate sublists"
1336 (let* ((p params
) sublist
1337 (splicep (plist-get p
:splice
))
1338 (ostart (plist-get p
:ostart
))
1339 (oend (plist-get p
:oend
))
1340 (ustart (plist-get p
:ustart
))
1341 (uend (plist-get p
:uend
))
1342 (istart (plist-get p
:istart
))
1343 (iend (plist-get p
:iend
))
1344 (isep (plist-get p
:isep
))
1345 (lsep (plist-get p
:lsep
)))
1347 (cond ((eq (car list
) 'ordered
)
1348 (concat ostart
"\n%s" oend
"\n"))
1349 ((eq (car list
) 'unordered
)
1350 (concat ustart
"\n%s" uend
"\n"))))
1352 (while (setq sublist
(pop list
))
1353 (cond ((symbolp sublist
) nil
)
1355 (setq rtn
(concat rtn istart sublist iend isep
)))
1357 (setq rtn
(concat rtn
;; previous list
1358 lsep
;; list separator
1359 (org-list-to-generic sublist p
)
1360 lsep
;; list separator
1362 (format wrapper rtn
))))
1364 (defun org-list-to-latex (list)
1365 "Convert LIST into a LaTeX list."
1366 (org-list-to-generic
1367 list
'(:splicep nil
:ostart
"\\begin{enumerate}" :oend
"\\end{enumerate}"
1368 :ustart
"\\begin{itemize}" :uend
"\\end{itemize}"
1369 :istart
"\\item " :iend
""
1370 :isep
"\n" :lsep
"\n")))
1372 (defun org-list-to-html (list)
1373 "Convert LIST into a HTML list."
1374 (org-list-to-generic
1375 list
'(:splicep nil
:ostart
"<ol>" :oend
"</ol>"
1376 :ustart
"<ul>" :uend
"</ul>"
1377 :istart
"<li>" :iend
"</li>"
1378 :isep
"\n" :lsep
"\n")))
1380 (defun org-list-to-texinfo (list)
1381 "Convert LIST into a Texinfo list."
1382 (org-list-to-generic
1383 list
'(:splicep nil
:ostart
"@itemize @minus" :oend
"@end itemize"
1384 :ustart
"@enumerate" :uend
"@end enumerate"
1385 :istart
"@item\n" :iend
""
1386 :isep
"\n" :lsep
"\n")))
1388 (defconst org-latex-entities
1417 "\\begin{description}"
1418 "\\begin{enumerate}"
1422 "\\begin{flushleft}"
1423 "\\begin{flushright}"
1428 "\\begin{quotation}"
1433 "\\begin{thebibliography}"
1435 "\\begin{titlepage}"
1562 "A list of LaTeX commands to be protected when performing conversion.")
1564 (provide 'org-export-latex
)
1566 ;; arch-tag: 23c2b87d-da04-4c2d-ad2d-1eb6487bc3ad
1568 ;;; org-export-latex.el ends here