org-export-latex.el 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536
  1. ;;; org-export-latex.el --- LaTeX exporter for org-mode
  2. ;;
  3. ;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
  4. ;;
  5. ;; Emacs Lisp Archive Entry
  6. ;; Filename: org-export-latex.el
  7. ;; Version: 6.16
  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
  13. ;; This file is part of GNU Emacs.
  14. ;; GNU Emacs is free software: you can redistribute it and/or modify
  15. ;; it under the terms of the GNU General Public License as published by
  16. ;; the Free Software Foundation, either version 3 of the License, or
  17. ;; (at your option) any later version.
  18. ;; GNU Emacs is distributed in the hope that it will be useful,
  19. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. ;; GNU General Public License for more details.
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  24. ;;; Commentary:
  25. ;;
  26. ;; This library implements a LaTeX exporter for org-mode.
  27. ;;
  28. ;; Put this file into your load-path and the following into your ~/.emacs:
  29. ;; (require 'org-export-latex)
  30. ;;
  31. ;; The interactive functions are similar to those of the HTML exporter:
  32. ;;
  33. ;; M-x `org-export-as-latex'
  34. ;; M-x `org-export-as-pdf'
  35. ;; M-x `org-export-as-pdf-and-open'
  36. ;; M-x `org-export-as-latex-batch'
  37. ;; M-x `org-export-as-latex-to-buffer'
  38. ;; M-x `org-export-region-as-latex'
  39. ;; M-x `org-replace-region-by-latex'
  40. ;;
  41. ;;; Code:
  42. (eval-when-compile
  43. (require 'cl))
  44. (require 'footnote)
  45. (require 'org)
  46. (require 'org-exp)
  47. ;;; Variables:
  48. (defvar org-export-latex-class nil)
  49. (defvar org-export-latex-header nil)
  50. (defvar org-export-latex-append-header nil)
  51. (defvar org-export-latex-options-plist nil)
  52. (defvar org-export-latex-todo-keywords-1 nil)
  53. (defvar org-export-latex-all-targets-re nil)
  54. (defvar org-export-latex-add-level 0)
  55. (defvar org-export-latex-sectioning "")
  56. (defvar org-export-latex-sectioning-depth 0)
  57. (defvar org-export-latex-special-string-regexps
  58. '(org-ts-regexp
  59. org-scheduled-string
  60. org-deadline-string
  61. org-clock-string)
  62. "A list of regexps to convert as special keywords.")
  63. (defvar latexp) ; dynamically scoped from org.el
  64. (defvar re-quote) ; dynamically scoped from org.el
  65. (defvar commentsp) ; dynamically scoped from org.el
  66. ;;; User variables:
  67. (defgroup org-export-latex nil
  68. "Options for exporting Org-mode files to LaTeX."
  69. :tag "Org Export LaTeX"
  70. :group 'org-export)
  71. (defcustom org-export-latex-default-class "article"
  72. "The default LaTeX class."
  73. :group 'org-export-latex
  74. :type '(string :tag "LaTeX class"))
  75. (defcustom org-export-latex-classes
  76. '(("article"
  77. "\\documentclass[11pt,a4paper]{article}
  78. \\usepackage[utf8]{inputenc}
  79. \\usepackage[T1]{fontenc}
  80. \\usepackage{graphicx}
  81. \\usepackage{longtable}
  82. \\usepackage{hyperref}"
  83. ("\\section{%s}" . "\\section*{%s}")
  84. ("\\subsection{%s}" . "\\subsection*{%s}")
  85. ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
  86. ("\\paragraph{%s}" . "\\paragraph*{%s}")
  87. ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
  88. ("report"
  89. "\\documentclass[11pt,a4paper]{report}
  90. \\usepackage[utf8]{inputenc}
  91. \\usepackage[T1]{fontenc}
  92. \\usepackage{graphicx}
  93. \\usepackage{longtable}
  94. \\usepackage{hyperref}"
  95. ("\\part{%s}" . "\\part*{%s}")
  96. ("\\chapter{%s}" . "\\chapter*{%s}")
  97. ("\\section{%s}" . "\\section*{%s}")
  98. ("\\subsection{%s}" . "\\subsection*{%s}")
  99. ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
  100. ("book"
  101. "\\documentclass[11pt,a4paper]{book}
  102. \\usepackage[utf8]{inputenc}
  103. \\usepackage[T1]{fontenc}
  104. \\usepackage{graphicx}
  105. \\usepackage{longtable}
  106. \\usepackage{hyperref}"
  107. ("\\part{%s}" . "\\part*{%s}")
  108. ("\\chapter{%s}" . "\\chapter*{%s}")
  109. ("\\section{%s}" . "\\section*{%s}")
  110. ("\\subsection{%s}" . "\\subsection*{%s}")
  111. ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
  112. "Alist of LaTeX classes and associated header and structure.
  113. If #+LaTeX_CLASS is set in the buffer, use its value and the
  114. associated information. Here is the structure of each cell:
  115. \(class-name
  116. header-string
  117. (numbered-section . unnumbered-section\)
  118. ...\)
  119. A %s formatter is mandatory in each section string and will be
  120. replaced by the title of the section.
  121. Instead of a cons cell (numbered . unnumbered), you can also provide a list
  122. of 2-4 elements,
  123. (numbered-open numbered-close)
  124. or
  125. (numbered-open numbered-close unnumbered-open unnumbered-close)
  126. providing opening and closing strings for an environment that should
  127. represent the document section. The opening clause should have a %s
  128. to represent the section title."
  129. :group 'org-export-latex
  130. :type '(repeat
  131. (list (string :tag "LaTeX class")
  132. (string :tag "LaTeX header")
  133. (repeat :tag "Levels" :inline t
  134. (choice
  135. (cons :tag "Heading"
  136. (string :tag "numbered")
  137. (string :tag "unnumbered)"))
  138. (list :tag "Environment"
  139. (string :tag "Opening (numbered) ")
  140. (string :tag "Closing (numbered) ")
  141. (string :tag "Opening (unnumbered)")
  142. (string :tag "Closing (unnumbered)")))))))
  143. (defcustom org-export-latex-emphasis-alist
  144. '(("*" "\\textbf{%s}" nil)
  145. ("/" "\\emph{%s}" nil)
  146. ("_" "\\underline{%s}" nil)
  147. ("+" "\\texttt{%s}" nil)
  148. ("=" "\\verb|%s|" nil)
  149. ("~" "\\verb|%s|" t))
  150. "Alist of LaTeX expressions to convert emphasis fontifiers.
  151. Each element of the list is a list of three elements.
  152. The first element is the character used as a marker for fontification.
  153. The second element is a formatting string to wrap fontified text with.
  154. The third element decides whether to protect converted text from other
  155. conversions."
  156. :group 'org-export-latex
  157. :type 'alist)
  158. (defcustom org-export-latex-title-command "\\maketitle"
  159. "The command used to insert the title just after \\begin{document}.
  160. If this string contains the formatting specification \"%s\" then
  161. it will be used as a formatting string, passing the title as an
  162. argument."
  163. :group 'org-export-latex
  164. :type 'string)
  165. (defcustom org-export-latex-date-format
  166. "%d %B %Y"
  167. "Format string for \\date{...}."
  168. :group 'org-export-latex
  169. :type 'string)
  170. (defcustom org-export-latex-tables-verbatim nil
  171. "When non-nil, tables are exported verbatim."
  172. :group 'org-export-latex
  173. :type 'boolean)
  174. (defcustom org-export-latex-tables-column-borders nil
  175. "When non-nil, group of columns are surrounded with borders."
  176. :group 'org-export-latex
  177. :type 'boolean)
  178. (defcustom org-export-latex-packages-alist nil
  179. "Alist of packages to be inserted in the header.
  180. Each cell is of the forma \( \"option\" . \"package\" \)."
  181. :group 'org-export-latex
  182. :type 'alist)
  183. (defcustom org-export-latex-low-levels 'description
  184. "How to convert sections below the current level of sectioning.
  185. This is specified by the `org-export-headline-levels' option or the
  186. value of \"H:\" in Org's #+OPTION line.
  187. This can be either nil (skip the sections), 'description (convert
  188. the sections as descriptive lists) or a string to be used instead
  189. of \\section{%s}. In this latter case, the %s stands here for the
  190. inserted headline and is mandatory."
  191. :group 'org-export-latex
  192. :type '(choice (const :tag "Ignore" nil)
  193. (symbol :tag "Convert as descriptive list" description)
  194. (string :tag "Use a section string" :value "\\subparagraph{%s}")))
  195. (defcustom org-export-latex-remove-from-headlines
  196. '(:todo t :priority t :tags t)
  197. "A plist of keywords to remove from headlines.
  198. Non-nil means remove this keyword type from the headline.
  199. Don't remove the keys, just change their values."
  200. :type 'plist
  201. :group 'org-export-latex)
  202. (defcustom org-export-latex-image-default-option "width=10em"
  203. "Default option for images."
  204. :group 'org-export-latex
  205. :type 'string)
  206. (defcustom org-export-latex-coding-system nil
  207. "Coding system for the exported LaTex file."
  208. :group 'org-export-latex
  209. :type 'coding-system)
  210. (defgroup org-export-pdf nil
  211. "Options for exporting Org-mode files to PDF, via LaTeX."
  212. :tag "Org Export LaTeX"
  213. :group 'org-export-latex
  214. :group 'org-export)
  215. (defcustom org-export-pdf-remove-logfiles t
  216. "Non-nil means, remove the logfiles produced by PDF production.
  217. These are the .aux, .log, .out, and .toc files."
  218. :group 'org-export-latex
  219. :type 'boolean)
  220. ;;; Autoload functions:
  221. ;;;###autoload
  222. (defun org-export-as-latex-batch ()
  223. "Call `org-export-as-latex', may be used in batch processing.
  224. For example:
  225. emacs --batch
  226. --load=$HOME/lib/emacs/org.el
  227. --eval \"(setq org-export-headline-levels 2)\"
  228. --visit=MyFile --funcall org-export-as-latex-batch"
  229. (org-export-as-latex org-export-headline-levels 'hidden))
  230. ;;;###autoload
  231. (defun org-export-as-latex-to-buffer (arg)
  232. "Call `org-export-as-latex` with output to a temporary buffer.
  233. No file is created. The prefix ARG is passed through to `org-export-as-latex'."
  234. (interactive "P")
  235. (org-export-as-latex arg nil nil "*Org LaTeX Export*")
  236. (switch-to-buffer-other-window "*Org LaTeX Export*"))
  237. ;;;###autoload
  238. (defun org-replace-region-by-latex (beg end)
  239. "Replace the region from BEG to END with its LaTeX export.
  240. It assumes the region has `org-mode' syntax, and then convert it to
  241. LaTeX. This can be used in any buffer. For example, you could
  242. write an itemized list in `org-mode' syntax in an LaTeX buffer and
  243. then use this command to convert it."
  244. (interactive "r")
  245. (let (reg latex buf)
  246. (save-window-excursion
  247. (if (org-mode-p)
  248. (setq latex (org-export-region-as-latex
  249. beg end t 'string))
  250. (setq reg (buffer-substring beg end)
  251. buf (get-buffer-create "*Org tmp*"))
  252. (save-excursion
  253. (set-buffer buf)
  254. (erase-buffer)
  255. (insert reg)
  256. (org-mode)
  257. (setq latex (org-export-region-as-latex
  258. (point-min) (point-max) t 'string)))
  259. (kill-buffer buf)))
  260. (delete-region beg end)
  261. (insert latex)))
  262. ;;;###autoload
  263. (defun org-export-region-as-latex (beg end &optional body-only buffer)
  264. "Convert region from BEG to END in `org-mode' buffer to LaTeX.
  265. If prefix arg BODY-ONLY is set, omit file header, footer, and table of
  266. contents, and only produce the region of converted text, useful for
  267. cut-and-paste operations.
  268. If BUFFER is a buffer or a string, use/create that buffer as a target
  269. of the converted LaTeX. If BUFFER is the symbol `string', return the
  270. produced LaTeX as a string and leave not buffer behind. For example,
  271. a Lisp program could call this function in the following way:
  272. (setq latex (org-export-region-as-latex beg end t 'string))
  273. When called interactively, the output buffer is selected, and shown
  274. in a window. A non-interactive call will only retunr the buffer."
  275. (interactive "r\nP")
  276. (when (interactive-p)
  277. (setq buffer "*Org LaTeX Export*"))
  278. (let ((transient-mark-mode t) (zmacs-regions t)
  279. rtn)
  280. (goto-char end)
  281. (set-mark (point)) ;; to activate the region
  282. (goto-char beg)
  283. (setq rtn (org-export-as-latex
  284. nil nil nil
  285. buffer body-only))
  286. (if (fboundp 'deactivate-mark) (deactivate-mark))
  287. (if (and (interactive-p) (bufferp rtn))
  288. (switch-to-buffer-other-window rtn)
  289. rtn)))
  290. ;;;###autoload
  291. (defun org-export-as-latex (arg &optional hidden ext-plist
  292. to-buffer body-only pub-dir)
  293. "Export current buffer to a LaTeX file.
  294. If there is an active region, export only the region. The prefix
  295. ARG specifies how many levels of the outline should become
  296. headlines. The default is 3. Lower levels will be exported
  297. depending on `org-export-latex-low-levels'. The default is to
  298. convert them as description lists. When HIDDEN is non-nil, don't
  299. display the LaTeX buffer. EXT-PLIST is a property list with
  300. external parameters overriding org-mode's default settings, but
  301. still inferior to file-local settings. When TO-BUFFER is
  302. non-nil, create a buffer with that name and export to that
  303. buffer. If TO-BUFFER is the symbol `string', don't leave any
  304. buffer behind but just return the resulting LaTeX as a string.
  305. When BODY-ONLY is set, don't produce the file header and footer,
  306. simply return the content of \begin{document}...\end{document},
  307. without even the \begin{document} and \end{document} commands.
  308. when PUB-DIR is set, use this as the publishing directory."
  309. (interactive "P")
  310. ;; Make sure we have a file name when we need it.
  311. (when (and (not (or to-buffer body-only))
  312. (not buffer-file-name))
  313. (if (buffer-base-buffer)
  314. (org-set-local 'buffer-file-name
  315. (with-current-buffer (buffer-base-buffer)
  316. buffer-file-name))
  317. (error "Need a file name to be able to export")))
  318. (message "Exporting to LaTeX...")
  319. (remove-text-properties (point-min) (point-max)
  320. '(:org-license-to-kill nil))
  321. (org-update-radio-target-regexp)
  322. (org-export-latex-set-initial-vars ext-plist arg)
  323. (let* ((wcf (current-window-configuration))
  324. (opt-plist org-export-latex-options-plist)
  325. (region-p (org-region-active-p))
  326. (rbeg (and region-p (region-beginning)))
  327. (rend (and region-p (region-end)))
  328. (subtree-p
  329. (when region-p
  330. (save-excursion
  331. (goto-char rbeg)
  332. (and (org-at-heading-p)
  333. (>= (org-end-of-subtree t t) rend)))))
  334. (opt-plist (if subtree-p
  335. (org-export-add-subtree-options opt-plist rbeg)
  336. opt-plist))
  337. ;; Make sure the variable contains the updated values.
  338. (org-export-latex-options-plist opt-plist)
  339. (title (or (and subtree-p (org-export-get-title-from-subtree))
  340. (plist-get opt-plist :title)
  341. (and (not
  342. (plist-get opt-plist :skip-before-1st-heading))
  343. (org-export-grab-title-from-buffer))
  344. (file-name-sans-extension
  345. (file-name-nondirectory buffer-file-name))))
  346. (filename (concat (file-name-as-directory
  347. (or pub-dir
  348. (org-export-directory :LaTeX ext-plist)))
  349. (file-name-sans-extension
  350. (or (and subtree-p
  351. (org-entry-get rbeg "EXPORT_FILE_NAME" t))
  352. (file-name-nondirectory ;sans-extension
  353. buffer-file-name)))
  354. ".tex"))
  355. (filename (if (equal (file-truename filename)
  356. (file-truename buffer-file-name))
  357. (concat filename ".tex")
  358. filename))
  359. (buffer (if to-buffer
  360. (cond
  361. ((eq to-buffer 'string) (get-buffer-create
  362. "*Org LaTeX Export*"))
  363. (t (get-buffer-create to-buffer)))
  364. (find-file-noselect filename)))
  365. (odd org-odd-levels-only)
  366. (header (org-export-latex-make-header title opt-plist))
  367. (skip (cond (subtree-p nil)
  368. (region-p nil)
  369. (t (plist-get opt-plist :skip-before-1st-heading))))
  370. (text (plist-get opt-plist :text))
  371. (first-lines (if skip "" (org-export-latex-first-lines rbeg)))
  372. (coding-system (and (boundp 'buffer-file-coding-system)
  373. buffer-file-coding-system))
  374. (coding-system-for-write (or org-export-latex-coding-system
  375. coding-system))
  376. (save-buffer-coding-system (or org-export-latex-coding-system
  377. coding-system))
  378. (region (buffer-substring
  379. (if region-p (region-beginning) (point-min))
  380. (if region-p (region-end) (point-max))))
  381. (string-for-export
  382. (org-export-preprocess-string
  383. region
  384. :emph-multiline t
  385. :for-LaTeX t
  386. :comments nil
  387. :tags (plist-get opt-plist :tags)
  388. :priority (plist-get opt-plist :priority)
  389. :todo-keywords (plist-get opt-plist :todo-keywords)
  390. :add-text (if (eq to-buffer 'string) nil text)
  391. :skip-before-1st-heading skip
  392. :select-tags (plist-get opt-plist :select-tags)
  393. :exclude-tags (plist-get opt-plist :exclude-tags)
  394. :LaTeX-fragments nil)))
  395. (set-buffer buffer)
  396. (erase-buffer)
  397. (and (fboundp 'set-buffer-file-coding-system)
  398. (set-buffer-file-coding-system coding-system-for-write))
  399. ;; insert the header and initial document commands
  400. (unless (or (eq to-buffer 'string) body-only)
  401. (insert header))
  402. ;; insert text found in #+TEXT
  403. (when (and text (not (eq to-buffer 'string)))
  404. (insert (org-export-latex-content
  405. text '(lists tables fixed-width keywords))
  406. "\n\n"))
  407. ;; insert lines before the first headline
  408. (unless (or skip (eq to-buffer 'string))
  409. (insert first-lines))
  410. ;; export the content of headlines
  411. (org-export-latex-global
  412. (with-temp-buffer
  413. (insert string-for-export)
  414. (goto-char (point-min))
  415. (when (re-search-forward "^\\(\\*+\\) " nil t)
  416. (let* ((asters (length (match-string 1)))
  417. (level (if odd (- asters 2) (- asters 1))))
  418. (setq org-export-latex-add-level
  419. (if odd (1- (/ (1+ asters) 2)) (1- asters)))
  420. (org-export-latex-parse-global level odd)))))
  421. ;; finalization
  422. (unless body-only (insert "\n\\end{document}"))
  423. (or to-buffer (save-buffer))
  424. (goto-char (point-min))
  425. (message "Exporting to LaTeX...done")
  426. (prog1
  427. (if (eq to-buffer 'string)
  428. (prog1 (buffer-substring (point-min) (point-max))
  429. (kill-buffer (current-buffer)))
  430. (current-buffer))
  431. (set-window-configuration wcf))))
  432. ;;;###autoload
  433. (defun org-export-as-pdf (arg &optional hidden ext-plist
  434. to-buffer body-only pub-dir)
  435. "Export as LaTeX, then process through to PDF."
  436. (interactive "P")
  437. (message "Exporting to PDF...")
  438. (let* ((wconfig (current-window-configuration))
  439. (lbuf (org-export-as-latex arg hidden ext-plist
  440. to-buffer body-only pub-dir))
  441. (file (buffer-file-name lbuf))
  442. (base (file-name-sans-extension (buffer-file-name lbuf)))
  443. (pdffile (concat base ".pdf")))
  444. (and (file-exists-p pdffile) (delete-file pdffile))
  445. (message "Processing LaTeX file...")
  446. (shell-command (format "pdflatex -interaction nonstopmode %s"
  447. (shell-quote-argument file)))
  448. (shell-command (format "pdflatex -interaction nonstopmode %s"
  449. (shell-quote-argument file)))
  450. (message "Processing LaTeX file...done")
  451. (if (not (file-exists-p pdffile))
  452. (error "PDF file was not produced")
  453. (set-window-configuration wconfig)
  454. (when org-export-pdf-remove-logfiles
  455. (dolist (ext '("aux" "log" "out" "toc"))
  456. (setq file (concat base "." ext))
  457. (and (file-exists-p file) (delete-file file))))
  458. (message "Exporting to PDF...done")
  459. pdffile)))
  460. ;;;###autoload
  461. (defun org-export-as-pdf-and-open (arg)
  462. "Export as LaTeX, then process through to PDF, and open."
  463. (interactive "P")
  464. (let ((pdffile (org-export-as-pdf arg)))
  465. (if pdffile
  466. (org-open-file pdffile)
  467. (error "PDF file was not produced"))))
  468. ;;; Parsing functions:
  469. (defun org-export-latex-parse-global (level odd)
  470. "Parse the current buffer recursively, starting at LEVEL.
  471. If ODD is non-nil, assume the buffer only contains odd sections.
  472. Return a list reflecting the document structure."
  473. (save-excursion
  474. (goto-char (point-min))
  475. (let* ((cnt 0) output
  476. (depth org-export-latex-sectioning-depth))
  477. (while (re-search-forward
  478. (concat "^\\(\\(?:\\*\\)\\{"
  479. (number-to-string (+ (if odd 2 1) level))
  480. "\\}\\) \\(.*\\)$")
  481. ;; make sure that there is no upper heading
  482. (when (> level 0)
  483. (save-excursion
  484. (save-match-data
  485. (re-search-forward
  486. (concat "^\\(\\(?:\\*\\)\\{"
  487. (number-to-string level)
  488. "\\}\\) \\(.*\\)$") nil t)))) t)
  489. (setq cnt (1+ cnt))
  490. (let* ((pos (match-beginning 0))
  491. (heading (match-string 2))
  492. (nlevel (if odd (/ (+ 3 level) 2) (1+ level))))
  493. (save-excursion
  494. (narrow-to-region
  495. (point)
  496. (save-match-data
  497. (if (re-search-forward
  498. (concat "^\\(\\(?:\\*\\)\\{"
  499. (number-to-string (+ (if odd 2 1) level))
  500. "\\}\\) \\(.*\\)$") nil t)
  501. (match-beginning 0)
  502. (point-max))))
  503. (goto-char (point-min))
  504. (setq output
  505. (append output
  506. (list
  507. (list
  508. `(pos . ,pos)
  509. `(level . ,nlevel)
  510. `(occur . ,cnt)
  511. `(heading . ,heading)
  512. `(content . ,(org-export-latex-parse-content))
  513. `(subcontent . ,(org-export-latex-parse-subcontent
  514. level odd)))))))
  515. (widen)))
  516. (list output))))
  517. (defun org-export-latex-parse-content ()
  518. "Extract the content of a section."
  519. (let ((beg (point))
  520. (end (if (re-search-forward "^\\(\\*\\)+ .*$" nil t)
  521. (progn (beginning-of-line) (point))
  522. (point-max))))
  523. (buffer-substring beg end)))
  524. (defun org-export-latex-parse-subcontent (level odd)
  525. "Extract the subcontent of a section at LEVEL.
  526. If ODD Is non-nil, assume subcontent only contains odd sections."
  527. (if (not (re-search-forward
  528. (concat "^\\(\\(?:\\*\\)\\{"
  529. (number-to-string (+ (if odd 4 2) level))
  530. "\\}\\) \\(.*\\)$")
  531. nil t))
  532. nil ; subcontent is nil
  533. (org-export-latex-parse-global (+ (if odd 2 1) level) odd)))
  534. ;;; Rendering functions:
  535. (defun org-export-latex-global (content)
  536. "Export CONTENT to LaTeX.
  537. CONTENT is an element of the list produced by
  538. `org-export-latex-parse-global'."
  539. (if (eq (car content) 'subcontent)
  540. (mapc 'org-export-latex-sub (cdr content))
  541. (org-export-latex-sub (car content))))
  542. (defun org-export-latex-sub (subcontent)
  543. "Export the list SUBCONTENT to LaTeX.
  544. SUBCONTENT is an alist containing information about the headline
  545. and its content."
  546. (let ((num (plist-get org-export-latex-options-plist :section-numbers)))
  547. (mapc (lambda(x) (org-export-latex-subcontent x num)) subcontent)))
  548. (defun org-export-latex-subcontent (subcontent num)
  549. "Export each cell of SUBCONTENT to LaTeX.
  550. If NUM, export sections as numerical sections."
  551. (let* ((heading (org-export-latex-fontify-headline
  552. (cdr (assoc 'heading subcontent))))
  553. (level (- (cdr (assoc 'level subcontent))
  554. org-export-latex-add-level))
  555. (occur (number-to-string (cdr (assoc 'occur subcontent))))
  556. (content (cdr (assoc 'content subcontent)))
  557. (subcontent (cadr (assoc 'subcontent subcontent)))
  558. (label (org-get-text-property-any 0 'target heading))
  559. (label-list (cons label (cdr (assoc label
  560. org-export-target-aliases)))))
  561. (cond
  562. ;; Normal conversion
  563. ((<= level org-export-latex-sectioning-depth)
  564. (let* ((sec (nth (1- level) org-export-latex-sectioning))
  565. start end)
  566. (if (consp (cdr sec))
  567. (setq start (nth (if num 0 2) sec)
  568. end (nth (if num 1 3) sec))
  569. (setq start (if num (car sec) (cdr sec))))
  570. (insert (format start heading) "\n")
  571. (when label
  572. (insert (mapconcat (lambda (l) (format "\\label{%s}" l))
  573. label-list "\n") "\n"))
  574. (insert (org-export-latex-content content))
  575. (cond ((stringp subcontent) (insert subcontent))
  576. ((listp subcontent) (org-export-latex-sub subcontent)))
  577. (if end (insert end "\n"))))
  578. ;; At a level under the hl option: we can drop this subsection
  579. ((> level org-export-latex-sectioning-depth)
  580. (cond ((eq org-export-latex-low-levels 'description)
  581. (insert (format "\\begin{description}\n\n\\item[%s]%s\n\n"
  582. heading
  583. (if label (format "\\label{%s}" label) "")))
  584. (insert (org-export-latex-content content))
  585. (cond ((stringp subcontent) (insert subcontent))
  586. ((listp subcontent) (org-export-latex-sub subcontent)))
  587. (insert "\\end{description}\n"))
  588. ((stringp org-export-latex-low-levels)
  589. (insert (format org-export-latex-low-levels heading) "\n")
  590. (when label (insert (format "\\label{%s}\n" label)))
  591. (insert (org-export-latex-content content))
  592. (cond ((stringp subcontent) (insert subcontent))
  593. ((listp subcontent) (org-export-latex-sub subcontent)))))))))
  594. ;;; Exporting internals:
  595. (defun org-export-latex-set-initial-vars (ext-plist level)
  596. "Store org local variables required for LaTeX export.
  597. EXT-PLIST is an optional additional plist.
  598. LEVEL indicates the default depth for export."
  599. (setq org-export-latex-todo-keywords-1 org-todo-keywords-1
  600. org-export-latex-all-targets-re
  601. (org-make-target-link-regexp (org-all-targets))
  602. org-export-latex-options-plist
  603. (org-combine-plists (org-default-export-plist) ext-plist
  604. (org-infile-export-plist))
  605. org-export-latex-class
  606. (save-excursion
  607. (goto-char (point-min))
  608. (if (and (re-search-forward "^#\\+LaTeX_CLASS:[ \t]*\\([a-zA-Z]+\\)" nil t)
  609. (assoc (match-string 1) org-export-latex-classes))
  610. (match-string 1)
  611. org-export-latex-default-class))
  612. org-export-latex-header
  613. (cadr (assoc org-export-latex-class org-export-latex-classes))
  614. org-export-latex-sectioning
  615. (cddr (assoc org-export-latex-class org-export-latex-classes))
  616. org-export-latex-sectioning-depth
  617. (or level
  618. (let ((hl-levels
  619. (plist-get org-export-latex-options-plist :headline-levels))
  620. (sec-depth (length org-export-latex-sectioning)))
  621. (if (> hl-levels sec-depth) sec-depth hl-levels)))))
  622. (defun org-export-latex-make-header (title opt-plist)
  623. "Make the LaTeX header and return it as a string.
  624. TITLE is the current title from the buffer or region.
  625. OPT-PLIST is the options plist for current buffer."
  626. (let ((toc (plist-get opt-plist :table-of-contents))
  627. (author (plist-get opt-plist :author)))
  628. (concat
  629. (if (plist-get opt-plist :time-stamp-file)
  630. (format-time-string "% Created %Y-%m-%d %a %H:%M\n"))
  631. ;; insert LaTeX custom header
  632. org-export-latex-header
  633. "\n"
  634. ;; insert information on LaTeX packages
  635. (when org-export-latex-packages-alist
  636. (mapconcat (lambda(p)
  637. (if (equal "" (car p))
  638. (format "\\usepackage{%s}" (cadr p))
  639. (format "\\usepackage[%s]{%s}"
  640. (car p) (cadr p))))
  641. org-export-latex-packages-alist "\n"))
  642. ;; insert additional commands in the header
  643. (plist-get opt-plist :latex-header-extra)
  644. org-export-latex-append-header
  645. ;; insert the title
  646. (format
  647. "\n\n\\title{%s}\n"
  648. ;; convert the title
  649. (org-export-latex-content
  650. title '(lists tables fixed-width keywords)))
  651. ;; insert author info
  652. (if (plist-get opt-plist :author-info)
  653. (format "\\author{%s}\n"
  654. (or author user-full-name))
  655. (format "%%\\author{%s}\n"
  656. (or author user-full-name)))
  657. ;; insert the date
  658. (format "\\date{%s}\n"
  659. (format-time-string
  660. (or (plist-get opt-plist :date)
  661. org-export-latex-date-format)))
  662. ;; beginning of the document
  663. "\n\\begin{document}\n\n"
  664. ;; insert the title command
  665. (if (string-match "%s" org-export-latex-title-command)
  666. (format org-export-latex-title-command title)
  667. org-export-latex-title-command)
  668. "\n\n"
  669. ;; table of contents
  670. (when (and org-export-with-toc
  671. (plist-get opt-plist :section-numbers))
  672. (cond ((numberp toc)
  673. (format "\\setcounter{tocdepth}{%s}\n\\tableofcontents\n\\vspace*{1cm}\n"
  674. (min toc (plist-get opt-plist :headline-levels))))
  675. (toc (format "\\setcounter{tocdepth}{%s}\n\\tableofcontents\n\\vspace*{1cm}\n"
  676. (plist-get opt-plist :headline-levels))))))))
  677. (defun org-export-latex-first-lines (&optional beg)
  678. "Export the first lines before first headline.
  679. If BEG is non-nil, the is the beginning of he region."
  680. (save-excursion
  681. (goto-char (or beg (point-min)))
  682. (if (org-at-heading-p) (beginning-of-line 2))
  683. (let* ((pt (point))
  684. (end (if (re-search-forward "^\\*+ " nil t)
  685. (goto-char (match-beginning 0))
  686. (goto-char (point-max)))))
  687. (prog1
  688. (org-export-latex-content
  689. (org-export-preprocess-string
  690. (buffer-substring pt end)
  691. :for-LaTeX t
  692. :emph-multiline t
  693. :add-text nil
  694. :comments nil
  695. :skip-before-1st-heading nil
  696. :LaTeX-fragments nil))
  697. (add-text-properties pt (max pt (1- end))
  698. '(:org-license-to-kill t))))))
  699. (defun org-export-latex-content (content &optional exclude-list)
  700. "Convert CONTENT string to LaTeX.
  701. Don't perform conversions that are in EXCLUDE-LIST. Recognized
  702. conversion types are: quotation-marks, emphasis, sub-superscript,
  703. links, keywords, lists, tables, fixed-width"
  704. (with-temp-buffer
  705. (insert content)
  706. (unless (memq 'quotation-marks exclude-list)
  707. (org-export-latex-quotation-marks))
  708. (unless (memq 'emphasis exclude-list)
  709. (when (plist-get org-export-latex-options-plist :emphasize)
  710. (org-export-latex-fontify)))
  711. (unless (memq 'sub-superscript exclude-list)
  712. (org-export-latex-special-chars
  713. (plist-get org-export-latex-options-plist :sub-superscript)))
  714. (unless (memq 'links exclude-list)
  715. (org-export-latex-links))
  716. (unless (memq 'keywords exclude-list)
  717. (org-export-latex-keywords
  718. (plist-get org-export-latex-options-plist :timestamps)))
  719. (unless (memq 'lists exclude-list)
  720. (org-export-latex-lists))
  721. (unless (memq 'tables exclude-list)
  722. (org-export-latex-tables
  723. (plist-get org-export-latex-options-plist :tables)))
  724. (unless (memq 'fixed-width exclude-list)
  725. (org-export-latex-fixed-width
  726. (plist-get org-export-latex-options-plist :fixed-width)))
  727. ;; return string
  728. (buffer-substring (point-min) (point-max))))
  729. (defun org-export-latex-protect-string (s)
  730. "Add the org-protected property to string S."
  731. (add-text-properties 0 (length s) '(org-protected t) s) s)
  732. (defun org-export-latex-protect-char-in-string (char-list string)
  733. "Add org-protected text-property to char from CHAR-LIST in STRING."
  734. (with-temp-buffer
  735. (save-match-data
  736. (insert string)
  737. (goto-char (point-min))
  738. (while (re-search-forward (regexp-opt char-list) nil t)
  739. (add-text-properties (match-beginning 0)
  740. (match-end 0) '(org-protected t)))
  741. (buffer-string))))
  742. (defun org-export-latex-keywords-maybe (remove-list)
  743. "Maybe remove keywords depending on rules in REMOVE-LIST."
  744. (goto-char (point-min))
  745. (let ((re-todo (mapconcat 'identity org-export-latex-todo-keywords-1 "\\|"))
  746. (case-fold-search nil))
  747. ;; convert TODO keywords
  748. (when (re-search-forward (concat "^\\(" re-todo "\\)") nil t)
  749. (if (plist-get remove-list :todo)
  750. (replace-match "")
  751. (replace-match (format "\\texttt{%s}" (match-string 1)) t t)))
  752. ;; convert priority string
  753. (when (re-search-forward "\\[\\\\#.\\]" nil t)
  754. (if (plist-get remove-list :priority)
  755. (replace-match "")
  756. (replace-match (format "\\texttt{%s}" (match-string 0)) t t)))
  757. ;; convert tags
  758. (when (re-search-forward "\\(:[a-zA-Z0-9_@]+\\)+:" nil t)
  759. (if (or (not org-export-with-tags)
  760. (plist-get remove-list :tags))
  761. (replace-match "")
  762. (replace-match
  763. (org-export-latex-protect-string
  764. (format "\\texttt{%s}"
  765. (save-match-data
  766. (replace-regexp-in-string
  767. "_" "\\\\_" (match-string 0)))))
  768. t t)))))
  769. (defun org-export-latex-fontify-headline (string)
  770. "Fontify special words in STRING."
  771. (with-temp-buffer
  772. ;; FIXME: org-inside-LaTeX-fragment-p doesn't work when the $...$ is at
  773. ;; the beginning of the buffer - inserting "\n" is safe here though.
  774. (insert "\n" string)
  775. (goto-char (point-min))
  776. (when (plist-get org-export-latex-options-plist :emphasize)
  777. (org-export-latex-fontify))
  778. (org-export-latex-keywords-maybe
  779. org-export-latex-remove-from-headlines)
  780. (org-export-latex-special-chars
  781. (plist-get org-export-latex-options-plist :sub-superscript))
  782. (org-export-latex-links)
  783. ; (org-trim (buffer-substring-no-properties (point-min) (point-max)))))
  784. (org-trim (buffer-string))))
  785. (defun org-export-latex-quotation-marks ()
  786. "Export quotation marks depending on language conventions."
  787. (let* ((lang (plist-get org-export-latex-options-plist :language))
  788. (quote-rpl (if (equal lang "fr")
  789. '(("\\(\\s-\\)\"" "«~")
  790. ("\\(\\S-\\)\"" "~»")
  791. ("\\(\\s-\\)'" "`"))
  792. '(("\\(\\s-\\)\"" "``")
  793. ("\\(\\S-\\)\"" "''")
  794. ("\\(\\s-\\)'" "`")))))
  795. (mapc (lambda(l) (goto-char (point-min))
  796. (while (re-search-forward (car l) nil t)
  797. (let ((rpl (concat (match-string 1) (cadr l))))
  798. (org-export-latex-protect-string rpl)
  799. (org-if-unprotected
  800. (replace-match rpl t t))))) quote-rpl)))
  801. (defun org-export-latex-special-chars (sub-superscript)
  802. "Export special characters to LaTeX.
  803. If SUB-SUPERSCRIPT is non-nil, convert \\ and ^.
  804. See the `org-export-latex.el' code for a complete conversion table."
  805. (goto-char (point-min))
  806. (mapc (lambda(c)
  807. (goto-char (point-min))
  808. (while (re-search-forward c nil t)
  809. ;; Put the point where to check for org-protected
  810. ; (unless (or (get-text-property (match-beginning 2) 'org-protected);
  811. ; (org-at-table-p))
  812. (unless (get-text-property (match-beginning 2) 'org-protected)
  813. (cond ((member (match-string 2) '("\\$" "$"))
  814. (if (equal (match-string 2) "\\$")
  815. (replace-match (concat (match-string 1) "$"
  816. (match-string 3)) t t)
  817. (replace-match (concat (match-string 1) "\\$"
  818. (match-string 3)) t t)))
  819. ((member (match-string 2) '("&" "%" "#"))
  820. (if (equal (match-string 1) "\\")
  821. (replace-match (match-string 2) t t)
  822. (replace-match (concat (match-string 1) "\\"
  823. (match-string 2)) t t)))
  824. ((equal (match-string 2) "...")
  825. (replace-match
  826. (concat (match-string 1)
  827. (org-export-latex-protect-string "\\ldots{}")) t t))
  828. ((equal (match-string 2) "~")
  829. (cond ((equal (match-string 1) "\\") nil)
  830. ((eq 'org-link (get-text-property 0 'face (match-string 2)))
  831. (replace-match (concat (match-string 1) "\\~") t t))
  832. (t (replace-match
  833. (org-export-latex-protect-string
  834. (concat (match-string 1) "\\~{}")) t t))))
  835. ((member (match-string 2) '("{" "}"))
  836. (unless (save-match-data (org-inside-LaTeX-fragment-p))
  837. (if (equal (match-string 1) "\\")
  838. (replace-match (match-string 2) t t)
  839. (replace-match (concat (match-string 1) "\\"
  840. (match-string 2)) t t)))))
  841. (unless (save-match-data (org-inside-LaTeX-fragment-p))
  842. (cond ((equal (match-string 2) "\\")
  843. (replace-match (or (save-match-data
  844. (org-export-latex-treat-backslash-char
  845. (match-string 1)
  846. (match-string 3))) "") t t))
  847. ((member (match-string 2) '("_" "^"))
  848. (replace-match (or (save-match-data
  849. (org-export-latex-treat-sub-super-char
  850. sub-superscript
  851. (match-string 2)
  852. (match-string 1)
  853. (match-string 3))) "") t t)))))))
  854. '("^\\([^\n$]*?\\|^\\)\\(\\\\?\\$\\)\\([^\n$]*\\)$"
  855. "\\([a-za-z0-9]+\\|[ \t\n]\\|\\b\\|\\\\\\)\\(_\\|\\^\\)\\([a-za-z0-9]+\\|[ \t\n]\\|[:punct:]\\|{[a-za-z0-9]+}\\|([a-za-z0-9]+)\\)"
  856. "\\(.\\|^\\)\\(\\\\\\)\\([ \t\n]\\|[a-zA-Z&#%{}\"]+\\)"
  857. "\\(.\\|^\\)\\(&\\)"
  858. "\\(.\\|^\\)\\(#\\)"
  859. "\\(.\\|^\\)\\(%\\)"
  860. "\\(.\\|^\\)\\({\\)"
  861. "\\(.\\|^\\)\\(}\\)"
  862. "\\(.\\|^\\)\\(~\\)"
  863. "\\(.\\|^\\)\\(\\.\\.\\.\\)"
  864. ;; (?\< . "\\textless{}")
  865. ;; (?\> . "\\textgreater{}")
  866. )))
  867. (defun org-export-latex-treat-sub-super-char
  868. (subsup char string-before string-after)
  869. "Convert the \"_\" and \"^\" characters to LaTeX.
  870. SUBSUP corresponds to the ^: option in the #+OPTIONS line.
  871. Convert CHAR depending on STRING-BEFORE and STRING-AFTER."
  872. (cond ((equal string-before "\\")
  873. (concat string-before char string-after))
  874. ;; this is part of a math formula
  875. ((and (string-match "\\S-+" string-before)
  876. (string-match "\\S-+" string-after))
  877. (cond ((eq 'org-link (get-text-property 0 'face char))
  878. (concat string-before "\\" char string-after))
  879. ((save-match-data (org-inside-LaTeX-fragment-p))
  880. (if subsup
  881. (cond ((eq 1 (length string-after))
  882. (concat string-before char string-after))
  883. ((string-match "[({]?\\([^)}]+\\)[)}]?" string-after)
  884. (format "%s%s{%s}" string-before char
  885. (match-string 1 string-after))))))
  886. ((and (> (length string-after) 1)
  887. (or (eq subsup t)
  888. (and (equal subsup '{}) (eq (string-to-char string-after) ?\{)))
  889. (string-match "[({]?\\([^)}]+\\)[)}]?" string-after))
  890. (format "%s$%s{%s}$" string-before char
  891. (if (> (match-end 1) (1+ (match-beginning 1)))
  892. (concat "\\mathrm{" (match-string 1 string-after) "}")
  893. (match-string 1 string-after))))
  894. ((eq subsup t) (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)))))
  899. (defun org-export-latex-treat-backslash-char (string-before string-after)
  900. "Convert the \"$\" special character to LaTeX.
  901. The conversion is made depending of STRING-BEFORE and STRING-AFTER."
  902. (cond ((member (list string-after) org-html-entities)
  903. ;; backslash is part of a special entity (like "\alpha")
  904. (concat string-before "$\\"
  905. (or (cdar (member (list string-after) org-html-entities))
  906. string-after) "$"))
  907. ((and (not (string-match "^[ \n\t]" string-after))
  908. (not (string-match "[ \t]\\'\\|^" string-before)))
  909. ;; backslash is inside a word
  910. (org-export-latex-protect-string
  911. (concat string-before "\\textbackslash{}" string-after)))
  912. ((not (or (equal string-after "")
  913. (string-match "^[ \t\n]" string-after)))
  914. ;; backslash might escape a character (like \#) or a user TeX
  915. ;; macro (like \setcounter)
  916. (org-export-latex-protect-string
  917. (concat string-before "\\" string-after)))
  918. ((and (string-match "^[ \t\n]" string-after)
  919. (string-match "[ \t\n]\\'" string-before))
  920. ;; backslash is alone, convert it to $\backslash$
  921. (org-export-latex-protect-string
  922. (concat string-before "\\textbackslash{}" string-after)))
  923. (t (org-export-latex-protect-string
  924. (concat string-before "\\textbackslash{}" string-after)))))
  925. (defun org-export-latex-keywords (timestamps)
  926. "Convert special keywords to LaTeX.
  927. Regexps are those from `org-export-latex-special-string-regexps'.
  928. If TIMESTAMPS, convert timestamps, otherwise delete them."
  929. (let ((rg org-export-latex-special-string-regexps) r)
  930. (while (setq r (pop rg))
  931. (goto-char (point-min))
  932. (while (re-search-forward (eval r) nil t)
  933. (if (not timestamps)
  934. (replace-match (format "\\\\texttt{%s}" (match-string 0)) t)
  935. (replace-match ""))))))
  936. (defun org-export-latex-fixed-width (opt)
  937. "When OPT is non-nil convert fixed-width sections to LaTeX."
  938. (goto-char (point-min))
  939. (while (re-search-forward "^[ \t]*:" nil t)
  940. (if opt
  941. (progn (goto-char (match-beginning 0))
  942. (insert "\\begin{verbatim}\n")
  943. (while (looking-at "^\\([ \t]*\\):\\(.*\\)$")
  944. (replace-match (concat (match-string 1)
  945. (match-string 2)) t t)
  946. (forward-line))
  947. (insert "\\end{verbatim}\n\n"))
  948. (progn (goto-char (match-beginning 0))
  949. (while (looking-at "^\\([ \t]*\\):\\(.*\\)$")
  950. (replace-match (concat "%" (match-string 1)
  951. (match-string 2)) t t)
  952. (forward-line))))))
  953. (defvar org-table-last-alignment) ; defined in org-table.el
  954. (declare-function orgtbl-to-latex "org-table" (table params) t)
  955. (defun org-export-latex-tables (insert)
  956. "Convert tables to LaTeX and INSERT it."
  957. (goto-char (point-min))
  958. (while (re-search-forward "^\\([ \t]*\\)|" nil t)
  959. ;; FIXME really need to save-excursion?
  960. (save-excursion (org-table-align))
  961. (let* ((beg (org-table-begin))
  962. (end (org-table-end))
  963. (raw-table (buffer-substring beg end))
  964. fnum fields line lines olines gr colgropen line-fmt align
  965. caption label attr floatp longtblp)
  966. (if org-export-latex-tables-verbatim
  967. (let* ((tbl (concat "\\begin{verbatim}\n" raw-table
  968. "\\end{verbatim}\n")))
  969. (apply 'delete-region (list beg end))
  970. (insert (org-export-latex-protect-string tbl)))
  971. (progn
  972. (setq caption (org-find-text-property-in-string
  973. 'org-caption raw-table)
  974. attr (org-find-text-property-in-string
  975. 'org-attributes raw-table)
  976. label (org-find-text-property-in-string
  977. 'org-label raw-table)
  978. longtblp (and attr (stringp attr)
  979. (string-match "\\<longtable\\>" attr))
  980. align (and attr (stringp attr)
  981. (string-match "\\<align=\\([^ \t\n\r,]+\\)" attr)
  982. (match-string 1 attr))
  983. floatp (or caption label))
  984. (setq lines (split-string raw-table "\n" t))
  985. (apply 'delete-region (list beg end))
  986. (when org-export-table-remove-special-lines
  987. (setq lines (org-table-clean-before-export lines)))
  988. ;; make a formatting string to reflect aligment
  989. (setq olines lines)
  990. (while (and (not line-fmt) (setq line (pop olines)))
  991. (unless (string-match "^[ \t]*|-" line)
  992. (setq fields (org-split-string line "[ \t]*|[ \t]*"))
  993. (setq fnum (make-vector (length fields) 0))
  994. (setq line-fmt
  995. (mapconcat
  996. (lambda (x)
  997. (setq gr (pop org-table-colgroup-info))
  998. (format "%s%%s%s"
  999. (cond ((eq gr ':start)
  1000. (prog1 (if colgropen "|" "")
  1001. (setq colgropen t)))
  1002. ((eq gr ':startend)
  1003. (prog1 (if colgropen "|" "|")
  1004. (setq colgropen nil)))
  1005. (t ""))
  1006. (if (memq gr '(:end :startend))
  1007. (progn (setq colgropen nil) "|")
  1008. "")))
  1009. fnum ""))))
  1010. ;; fix double || in line-fmt
  1011. (setq line-fmt (replace-regexp-in-string "||" "|" line-fmt))
  1012. ;; maybe remove the first and last "|"
  1013. (when (and (not org-export-latex-tables-column-borders)
  1014. (string-match "^\\(|\\)?\\(.+\\)|$" line-fmt))
  1015. (setq line-fmt (match-string 2 line-fmt)))
  1016. ;; format alignment
  1017. (unless align
  1018. (setq align (apply 'format
  1019. (cons line-fmt
  1020. (mapcar (lambda (x) (if x "r" "l"))
  1021. org-table-last-alignment)))))
  1022. ;; prepare the table to send to orgtbl-to-latex
  1023. (setq lines
  1024. (mapcar
  1025. (lambda(elem)
  1026. (or (and (string-match "[ \t]*|-+" elem) 'hline)
  1027. (split-string (org-trim elem) "|" t)))
  1028. lines))
  1029. (when insert
  1030. (insert (org-export-latex-protect-string
  1031. (concat
  1032. (if longtblp
  1033. (concat "\\begin{longtable}{" align "}\n")
  1034. (if floatp "\\begin{table}[htb]\n"))
  1035. (if (or floatp longtblp)
  1036. (format
  1037. "\\caption{%s%s}"
  1038. (if label (concat "\\\label{" label "}") "")
  1039. (or caption "")))
  1040. (if longtblp "\\\\\n" "\n")
  1041. (if (not longtblp) "\\begin{center}\n")
  1042. (if (not longtblp) (concat "\\begin{tabular}{" align "}\n"))
  1043. (orgtbl-to-latex
  1044. lines
  1045. `(:tstart nil :tend nil
  1046. :hlend ,(if longtblp
  1047. (format "\\\\
  1048. \\hline
  1049. \\endhead
  1050. \\hline\\multicolumn{%d}{r}{Continued on next page}\\
  1051. \\endfoot
  1052. \\endlastfoot" (length org-table-last-alignment))
  1053. nil)))
  1054. (if (not longtblp) (concat "\n\\end{tabular}"))
  1055. (if longtblp "\n" "\n\\end{center}\n")
  1056. (if longtblp
  1057. "\\end{longtable}"
  1058. (if floatp "\\end{table}"))))
  1059. "\n\n")))))))
  1060. (defun org-export-latex-fontify ()
  1061. "Convert fontification to LaTeX."
  1062. (goto-char (point-min))
  1063. (while (re-search-forward org-emph-re nil t)
  1064. ;; The match goes one char after the *string*
  1065. (let ((emph (assoc (match-string 3)
  1066. org-export-latex-emphasis-alist))
  1067. rpl)
  1068. (unless (get-text-property (1- (point)) 'org-protected)
  1069. (setq rpl (concat (match-string 1)
  1070. (format (org-export-latex-protect-char-in-string
  1071. '("\\" "{" "}") (cadr emph))
  1072. (match-string 4))
  1073. (match-string 5)))
  1074. (if (caddr emph)
  1075. (setq rpl (org-export-latex-protect-string rpl)))
  1076. (replace-match rpl t t)))
  1077. (backward-char)))
  1078. (defun org-export-latex-links ()
  1079. ;; Make sure to use the LaTeX hyperref and graphicx package
  1080. ;; or send some warnings.
  1081. "Convert links to LaTeX."
  1082. (goto-char (point-min))
  1083. (while (re-search-forward org-bracket-link-analytic-regexp nil t)
  1084. (org-if-unprotected
  1085. (goto-char (match-beginning 0))
  1086. (let* ((re-radio org-export-latex-all-targets-re)
  1087. (remove (list (match-beginning 0) (match-end 0)))
  1088. (raw-path (org-extract-attributes (match-string 3)))
  1089. (full-raw-path (concat (match-string 1) raw-path))
  1090. (desc (match-string 5))
  1091. (type (or (match-string 2)
  1092. (if (or (file-name-absolute-p raw-path)
  1093. (string-match "^\\.\\.?/" raw-path))
  1094. "file")))
  1095. (caption (org-find-text-property-in-string 'org-caption raw-path))
  1096. (attr (org-find-text-property-in-string 'org-attributes raw-path))
  1097. (label (org-find-text-property-in-string 'org-label raw-path))
  1098. (floatp (or label caption))
  1099. imgp radiop
  1100. ;; define the path of the link
  1101. (path (cond
  1102. ((member type '("http" "https" "ftp"))
  1103. (concat type ":" raw-path))
  1104. ((and re-radio (string-match re-radio raw-path))
  1105. (setq radiop t))
  1106. ((equal type "mailto")
  1107. (concat type ":" raw-path))
  1108. ((equal type "file")
  1109. (if (and (or (org-file-image-p (expand-file-name raw-path))
  1110. (string-match "\\.\\(pdf\\|jpg\\|ps\\|eps\\)$"
  1111. raw-path))
  1112. (equal desc full-raw-path))
  1113. (setq imgp t)
  1114. (progn (when (string-match "\\(.+\\)::.+" raw-path)
  1115. (setq raw-path (match-string 1 raw-path)))
  1116. (if (file-exists-p raw-path)
  1117. (concat type "://" (expand-file-name raw-path))
  1118. (concat type "://" (org-export-directory
  1119. :LaTeX org-export-latex-options-plist)
  1120. raw-path))))))))
  1121. ;; process with link inserting
  1122. (apply 'delete-region remove)
  1123. (cond ((and imgp (plist-get org-export-latex-options-plist :inline-images))
  1124. (insert
  1125. (concat
  1126. (if floatp "\\begin{figure}[htb]\n")
  1127. (format "\\centerline{\\includegraphics[%s]{%s}}\n"
  1128. (or attr org-export-latex-image-default-option)
  1129. (expand-file-name raw-path))
  1130. (if floatp
  1131. (format "\\caption{%s%s}\n"
  1132. (if label (concat "\\label{" label "}") "")
  1133. (or caption "")))
  1134. (if floatp "\\end{figure}\n"))))
  1135. (radiop (insert (format "\\hyperref[%s]{%s}"
  1136. (org-solidify-link-text raw-path) desc)))
  1137. ((not type)
  1138. (insert (format "\\hyperref[%s]{%s}"
  1139. (org-solidify-link-text raw-path) desc)))
  1140. (path (insert (format "\\href{%s}{%s}" path desc)))
  1141. (t (insert "\\texttt{" desc "}")))))))
  1142. (defvar org-latex-entities) ; defined below
  1143. (defvar org-latex-entities-regexp) ; defined below
  1144. (defun org-export-latex-preprocess ()
  1145. "Clean stuff in the LaTeX export."
  1146. ;; Preserve line breaks
  1147. (goto-char (point-min))
  1148. (while (re-search-forward "\\\\\\\\" nil t)
  1149. (add-text-properties (match-beginning 0) (match-end 0)
  1150. '(org-protected t)))
  1151. ;; Preserve latex environments
  1152. (goto-char (point-min))
  1153. (while (re-search-forward "^[ \t]*\\begin{\\([a-zA-Z]+\\)}" nil t)
  1154. (let* ((start (progn (beginning-of-line) (point)))
  1155. (end (or (and (re-search-forward
  1156. (concat "^[ \t]*\\end{" (match-string 1) "}" nil t)
  1157. (point-at-eol)))
  1158. (point-max))))
  1159. (add-text-properties start end '(org-protected t))))
  1160. ;; Convert LaTeX to \LaTeX{}
  1161. (goto-char (point-min))
  1162. (let ((case-fold-search nil) rpl)
  1163. (while (re-search-forward "\\([^+_]\\)LaTeX" nil t)
  1164. (replace-match (org-export-latex-protect-string
  1165. (concat (match-string 1) "\\LaTeX{}")) t t)))
  1166. ;; Convert blockquotes
  1167. (goto-char (point-min))
  1168. (while (search-forward "ORG-BLOCKQUOTE-START" nil t)
  1169. (replace-match "\\begin{quote}" t t))
  1170. (goto-char (point-min))
  1171. (while (search-forward "ORG-BLOCKQUOTE-END" nil t)
  1172. (replace-match "\\end{quote}" t t))
  1173. ;; Convert verse
  1174. (goto-char (point-min))
  1175. (while (search-forward "ORG-VERSE-START" nil t)
  1176. (replace-match "\\begin{verse}" t t))
  1177. (goto-char (point-min))
  1178. (while (search-forward "ORG-VERSE-END" nil t)
  1179. (replace-match "\\end{verse}" t t))
  1180. ;; Convert horizontal rules
  1181. (goto-char (point-min))
  1182. (while (re-search-forward "^----+.$" nil t)
  1183. (replace-match (org-export-latex-protect-string "\\hrule") t t))
  1184. ;; Protect LaTeX commands like \command[...]{...} or \command{...}
  1185. (goto-char (point-min))
  1186. (while (re-search-forward "\\\\[a-zA-Z]+\\(?:\\[.*\\]\\)?{.*}" nil t)
  1187. (add-text-properties (match-beginning 0) (match-end 0)
  1188. '(org-protected t)))
  1189. ;; Protect LaTeX entities
  1190. (goto-char (point-min))
  1191. (while (re-search-forward org-latex-entities-regexp nil t)
  1192. (add-text-properties (match-beginning 0) (match-end 0)
  1193. '(org-protected t)))
  1194. ;; Replace radio links
  1195. (goto-char (point-min))
  1196. (while (re-search-forward
  1197. (concat "<<<?" org-export-latex-all-targets-re
  1198. ">>>?\\((INVISIBLE)\\)?") nil t)
  1199. (replace-match
  1200. (org-export-latex-protect-string
  1201. (format "\\label{%s}%s" (save-match-data (org-solidify-link-text
  1202. (match-string 1)))
  1203. (if (match-string 2) "" (match-string 1)))) t t))
  1204. ;; Delete @<...> constructs
  1205. ;; Thanks to Daniel Clemente for this regexp
  1206. (goto-char (point-min))
  1207. (while (re-search-forward "@<\\(?:[^\"\n]\\|\".*\"\\)*?>" nil t)
  1208. (replace-match ""))
  1209. ;; When converting to LaTeX, replace footnotes
  1210. ;; FIXME: don't protect footnotes from conversion
  1211. (when (plist-get org-export-latex-options-plist :footnotes)
  1212. (goto-char (point-min))
  1213. (while (re-search-forward "\\[[0-9]+\\]" nil t)
  1214. (when (save-match-data
  1215. (save-excursion (beginning-of-line)
  1216. (looking-at "[^:|#]")))
  1217. (let ((foot-beg (match-beginning 0))
  1218. (foot-end (match-end 0))
  1219. (foot-prefix (match-string 0))
  1220. footnote footnote-rpl)
  1221. (save-excursion
  1222. (when (search-forward foot-prefix nil t)
  1223. (replace-match "")
  1224. (let ((end (save-excursion
  1225. (if (re-search-forward "^$\\|^#.*$\\|\\[[0-9]+\\]" nil t)
  1226. (match-beginning 0) (point-max)))))
  1227. (setq footnote (concat (org-trim (buffer-substring (point) end))
  1228. " ")) ; prevent last } being part of a link
  1229. (delete-region (point) end))
  1230. (goto-char foot-beg)
  1231. (delete-region foot-beg foot-end)
  1232. (unless (null footnote)
  1233. (setq footnote-rpl (format "\\footnote{%s}" footnote))
  1234. (add-text-properties 0 10 '(org-protected t) footnote-rpl)
  1235. (add-text-properties (1- (length footnote-rpl))
  1236. (length footnote-rpl)
  1237. '(org-protected t) footnote-rpl)
  1238. (insert footnote-rpl)))))))
  1239. ;; Replace footnote section tag for LaTeX
  1240. (goto-char (point-min))
  1241. (while (re-search-forward
  1242. (concat "^" footnote-section-tag-regexp) nil t)
  1243. (replace-match ""))))
  1244. ;;; List handling:
  1245. (defun org-export-latex-lists ()
  1246. "Replace plain text lists in current buffer into LaTeX lists."
  1247. "Convert lists to LaTeX."
  1248. (goto-char (point-min))
  1249. (while (re-search-forward org-list-beginning-re nil t)
  1250. (org-if-unprotected
  1251. (beginning-of-line)
  1252. (insert (org-list-to-latex (org-list-parse-list t)) "\n"))))
  1253. (defconst org-latex-entities
  1254. '("\\!"
  1255. "\\'"
  1256. "\\+"
  1257. "\\,"
  1258. "\\-"
  1259. "\\:"
  1260. "\\;"
  1261. "\\<"
  1262. "\\="
  1263. "\\>"
  1264. "\\Huge"
  1265. "\\LARGE"
  1266. "\\Large"
  1267. "\\Styles"
  1268. "\\\\"
  1269. "\\`"
  1270. "\\addcontentsline"
  1271. "\\address"
  1272. "\\addtocontents"
  1273. "\\addtocounter"
  1274. "\\addtolength"
  1275. "\\addvspace"
  1276. "\\alph"
  1277. "\\appendix"
  1278. "\\arabic"
  1279. "\\author"
  1280. "\\begin{array}"
  1281. "\\begin{center}"
  1282. "\\begin{description}"
  1283. "\\begin{enumerate}"
  1284. "\\begin{eqnarray}"
  1285. "\\begin{equation}"
  1286. "\\begin{figure}"
  1287. "\\begin{flushleft}"
  1288. "\\begin{flushright}"
  1289. "\\begin{itemize}"
  1290. "\\begin{list}"
  1291. "\\begin{minipage}"
  1292. "\\begin{picture}"
  1293. "\\begin{quotation}"
  1294. "\\begin{quote}"
  1295. "\\begin{tabbing}"
  1296. "\\begin{table}"
  1297. "\\begin{tabular}"
  1298. "\\begin{thebibliography}"
  1299. "\\begin{theorem}"
  1300. "\\begin{titlepage}"
  1301. "\\begin{verbatim}"
  1302. "\\begin{verse}"
  1303. "\\bf"
  1304. "\\bf"
  1305. "\\bibitem"
  1306. "\\bigskip"
  1307. "\\cdots"
  1308. "\\centering"
  1309. "\\circle"
  1310. "\\cite"
  1311. "\\cleardoublepage"
  1312. "\\clearpage"
  1313. "\\cline"
  1314. "\\closing"
  1315. "\\dashbox"
  1316. "\\date"
  1317. "\\ddots"
  1318. "\\dotfill"
  1319. "\\em"
  1320. "\\fbox"
  1321. "\\flushbottom"
  1322. "\\fnsymbol"
  1323. "\\footnote"
  1324. "\\footnotemark"
  1325. "\\footnotesize"
  1326. "\\footnotetext"
  1327. "\\frac"
  1328. "\\frame"
  1329. "\\framebox"
  1330. "\\hfill"
  1331. "\\hline"
  1332. "\\hrulespace"
  1333. "\\hspace"
  1334. "\\huge"
  1335. "\\hyphenation"
  1336. "\\include"
  1337. "\\includeonly"
  1338. "\\indent"
  1339. "\\input"
  1340. "\\it"
  1341. "\\kill"
  1342. "\\label"
  1343. "\\large"
  1344. "\\ldots"
  1345. "\\line"
  1346. "\\linebreak"
  1347. "\\linethickness"
  1348. "\\listoffigures"
  1349. "\\listoftables"
  1350. "\\location"
  1351. "\\makebox"
  1352. "\\maketitle"
  1353. "\\mark"
  1354. "\\mbox"
  1355. "\\medskip"
  1356. "\\multicolumn"
  1357. "\\multiput"
  1358. "\\newcommand"
  1359. "\\newcounter"
  1360. "\\newenvironment"
  1361. "\\newfont"
  1362. "\\newlength"
  1363. "\\newline"
  1364. "\\newpage"
  1365. "\\newsavebox"
  1366. "\\newtheorem"
  1367. "\\nocite"
  1368. "\\nofiles"
  1369. "\\noindent"
  1370. "\\nolinebreak"
  1371. "\\nopagebreak"
  1372. "\\normalsize"
  1373. "\\onecolumn"
  1374. "\\opening"
  1375. "\\oval"
  1376. "\\overbrace"
  1377. "\\overline"
  1378. "\\pagebreak"
  1379. "\\pagenumbering"
  1380. "\\pageref"
  1381. "\\pagestyle"
  1382. "\\par"
  1383. "\\parbox"
  1384. "\\put"
  1385. "\\raggedbottom"
  1386. "\\raggedleft"
  1387. "\\raggedright"
  1388. "\\raisebox"
  1389. "\\ref"
  1390. "\\rm"
  1391. "\\roman"
  1392. "\\rule"
  1393. "\\savebox"
  1394. "\\sc"
  1395. "\\scriptsize"
  1396. "\\setcounter"
  1397. "\\setlength"
  1398. "\\settowidth"
  1399. "\\sf"
  1400. "\\shortstack"
  1401. "\\signature"
  1402. "\\sl"
  1403. "\\small"
  1404. "\\smallskip"
  1405. "\\sqrt"
  1406. "\\tableofcontents"
  1407. "\\telephone"
  1408. "\\thanks"
  1409. "\\thispagestyle"
  1410. "\\tiny"
  1411. "\\title"
  1412. "\\tt"
  1413. "\\twocolumn"
  1414. "\\typein"
  1415. "\\typeout"
  1416. "\\underbrace"
  1417. "\\underline"
  1418. "\\usebox"
  1419. "\\usecounter"
  1420. "\\value"
  1421. "\\vdots"
  1422. "\\vector"
  1423. "\\verb"
  1424. "\\vfill"
  1425. "\\vline"
  1426. "\\vspace")
  1427. "A list of LaTeX commands to be protected when performing conversion.")
  1428. (defconst org-latex-entities-regexp
  1429. (let (names rest)
  1430. (dolist (x org-latex-entities)
  1431. (if (string-match "[a-z][A-Z]$" x)
  1432. (push x names)
  1433. (push x rest)))
  1434. (concat "\\(" (regexp-opt (nreverse names)) "\\>\\)"
  1435. "\\|\\(" (regexp-opt (nreverse rest)) "\\)")))
  1436. (provide 'org-export-latex)
  1437. ;; arch-tag: 23c2b87d-da04-4c2d-ad2d-1eb6487bc3ad
  1438. ;;; org-export-latex.el ends here