org-e-latex.el 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136
  1. ;;; org-e-latex.el --- LaTeX Back-End For Org Export Engine
  2. ;; Copyright (C) 2011-2012 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; This program is free software; you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. ;;; Commentary:
  16. ;; This library implements a LaTeX back-end for Org generic exporter.
  17. ;; To test it, run
  18. ;;
  19. ;; M-: (org-export-to-buffer 'e-latex "*Test e-LaTeX*") RET
  20. ;;
  21. ;; in an org-mode buffer then switch to the buffer to see the LaTeX
  22. ;; export. See contrib/lisp/org-export.el for more details on how
  23. ;; this exporter works.
  24. ;; It introduces three new buffer keywords: "LATEX_CLASS",
  25. ;; "LATEX_CLASS_OPTIONS" and "LATEX_HEADER".
  26. ;;; Code:
  27. (eval-when-compile (require 'cl))
  28. (defvar org-export-latex-default-packages-alist)
  29. (defvar org-export-latex-packages-alist)
  30. (declare-function org-element-get-property "org-element" (property element))
  31. (declare-function org-element-normalize-string "org-element" (s))
  32. (declare-function org-element-parse-secondary-string
  33. "org-element" (string restriction &optional buffer))
  34. (defvar org-element-string-restrictions)
  35. (declare-function org-export-clean-table "org-export" (table specialp))
  36. (declare-function org-export-data "org-export" (data backend info))
  37. (declare-function org-export-directory "org-export" (type plist))
  38. (declare-function org-export-expand-macro "org-export" (macro info))
  39. (declare-function org-export-first-sibling-p "org-export" (headline info))
  40. (declare-function org-export-footnote-first-reference-p "org-export" (footnote-reference info))
  41. (declare-function org-export-get-coderef-format "org-export" (path desc))
  42. (declare-function org-export-get-footnote-definition "org-export" (footnote-reference info))
  43. (declare-function org-export-get-footnote-number "org-export" (footnote info))
  44. (declare-function org-export-get-previous-element "org-export" (blob info))
  45. (declare-function org-export-get-relative-level "org-export" (headline info))
  46. (declare-function org-export-handle-code
  47. "org-export" (element info &optional num-fmt ref-fmt delayed))
  48. (declare-function org-export-included-file "org-export" (keyword backend info))
  49. (declare-function org-export-inline-image-p "org-export" (link &optional extensions))
  50. (declare-function org-export-last-sibling-p "org-export" (headline info))
  51. (declare-function org-export-low-level-p "org-export" (headline info))
  52. (declare-function org-export-output-file-name
  53. "org-export" (extension &optional subtreep pub-dir))
  54. (declare-function org-export-resolve-coderef "org-export" (ref info))
  55. (declare-function org-export-resolve-fuzzy-link "org-export" (link info))
  56. (declare-function org-export-secondary-string "org-export" (secondary backend info))
  57. (declare-function org-export-solidify-link-text "org-export" (s))
  58. (declare-function org-export-table-format-info "org-export" (table))
  59. (declare-function
  60. org-export-to-buffer "org-export"
  61. (backend buffer &optional subtreep visible-only body-only ext-plist))
  62. (declare-function
  63. org-export-to-file "org-export"
  64. (backend file &optional subtreep visible-only body-only ext-plist))
  65. ;;; Internal Variables
  66. (defconst org-e-latex-option-alist
  67. '((:date "DATE" nil org-e-latex-date-format t)
  68. (:latex-class "LATEX_CLASS" nil org-e-latex-default-class t)
  69. (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
  70. (:latex-header-extra "LATEX_HEADER" nil nil newline))
  71. "Alist between LaTeX export properties and ways to set them.
  72. See `org-export-option-alist' for more information on the
  73. structure of the value.")
  74. ;;; User Configurable Variables
  75. (defgroup org-export-e-latex nil
  76. "Options for exporting Org mode files to LaTeX."
  77. :tag "Org Export LaTeX"
  78. :group 'org-export)
  79. ;;;; Preamble
  80. (defcustom org-e-latex-default-class "article"
  81. "The default LaTeX class."
  82. :group 'org-export-e-latex
  83. :type '(string :tag "LaTeX class"))
  84. (defcustom org-e-latex-classes
  85. '(("article"
  86. "\\documentclass[11pt]{article}"
  87. ("\\section{%s}" . "\\section*{%s}")
  88. ("\\subsection{%s}" . "\\subsection*{%s}")
  89. ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
  90. ("\\paragraph{%s}" . "\\paragraph*{%s}")
  91. ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
  92. ("report"
  93. "\\documentclass[11pt]{report}"
  94. ("\\part{%s}" . "\\part*{%s}")
  95. ("\\chapter{%s}" . "\\chapter*{%s}")
  96. ("\\section{%s}" . "\\section*{%s}")
  97. ("\\subsection{%s}" . "\\subsection*{%s}")
  98. ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
  99. ("book"
  100. "\\documentclass[11pt]{book}"
  101. ("\\part{%s}" . "\\part*{%s}")
  102. ("\\chapter{%s}" . "\\chapter*{%s}")
  103. ("\\section{%s}" . "\\section*{%s}")
  104. ("\\subsection{%s}" . "\\subsection*{%s}")
  105. ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
  106. "Alist of LaTeX classes and associated header and structure.
  107. If #+LaTeX_CLASS is set in the buffer, use its value and the
  108. associated information. Here is the structure of each cell:
  109. \(class-name
  110. header-string
  111. \(numbered-section . unnumbered-section\)
  112. ...\)
  113. The header string
  114. -----------------
  115. The HEADER-STRING is the header that will be inserted into the LaTeX file.
  116. It should contain the \\documentclass macro, and anything else that is needed
  117. for this setup. To this header, the following commands will be added:
  118. - Calls to \\usepackage for all packages mentioned in the variables
  119. `org-e-latex-default-packages-alist' and
  120. `org-e-latex-packages-alist'. Thus, your header definitions should
  121. avoid to also request these packages.
  122. - Lines specified via \"#+LaTeX_HEADER:\"
  123. If you need more control about the sequence in which the header is built
  124. up, or if you want to exclude one of these building blocks for a particular
  125. class, you can use the following macro-like placeholders.
  126. [DEFAULT-PACKAGES] \\usepackage statements for default packages
  127. [NO-DEFAULT-PACKAGES] do not include any of the default packages
  128. [PACKAGES] \\usepackage statements for packages
  129. [NO-PACKAGES] do not include the packages
  130. [EXTRA] the stuff from #+LaTeX_HEADER
  131. [NO-EXTRA] do not include #+LaTeX_HEADER stuff
  132. [BEAMER-HEADER-EXTRA] the beamer extra headers
  133. So a header like
  134. \\documentclass{article}
  135. [NO-DEFAULT-PACKAGES]
  136. [EXTRA]
  137. \\providecommand{\\alert}[1]{\\textbf{#1}}
  138. [PACKAGES]
  139. will omit the default packages, and will include the #+LaTeX_HEADER lines,
  140. then have a call to \\providecommand, and then place \\usepackage commands
  141. based on the content of `org-e-latex-packages-alist'.
  142. If your header or `org-e-latex-default-packages-alist' inserts
  143. \"\\usepackage[AUTO]{inputenc}\", AUTO will automatically be replaced with
  144. a coding system derived from `buffer-file-coding-system'. See also the
  145. variable `org-e-latex-inputenc-alist' for a way to influence this
  146. mechanism.
  147. The sectioning structure
  148. ------------------------
  149. The sectioning structure of the class is given by the elements following
  150. the header string. For each sectioning level, a number of strings is
  151. specified. A %s formatter is mandatory in each section string and will
  152. be replaced by the title of the section.
  153. Instead of a cons cell \(numbered . unnumbered\), you can also
  154. provide a list of 2 or 4 elements,
  155. \(numbered-open numbered-close\)
  156. or
  157. \(numbered-open numbered-close unnumbered-open unnumbered-close\)
  158. providing opening and closing strings for a LaTeX environment that should
  159. represent the document section. The opening clause should have a %s
  160. to represent the section title.
  161. Instead of a list of sectioning commands, you can also specify a
  162. function name. That function will be called with two parameters,
  163. the (reduced) level of the headline, and a predicate non-nil when
  164. the headline should be numbered. It must return a format string in
  165. which the section title will be added."
  166. :group 'org-export-e-latex
  167. :type '(repeat
  168. (list (string :tag "LaTeX class")
  169. (string :tag "LaTeX header")
  170. (repeat :tag "Levels" :inline t
  171. (choice
  172. (cons :tag "Heading"
  173. (string :tag " numbered")
  174. (string :tag "unnumbered"))
  175. (list :tag "Environment"
  176. (string :tag "Opening (numbered)")
  177. (string :tag "Closing (numbered)")
  178. (string :tag "Opening (unnumbered)")
  179. (string :tag "Closing (unnumbered)"))
  180. (function :tag "Hook computing sectioning"))))))
  181. (defcustom org-e-latex-inputenc-alist nil
  182. "Alist of inputenc coding system names, and what should really be used.
  183. For example, adding an entry
  184. (\"utf8\" . \"utf8x\")
  185. will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
  186. are written as utf8 files."
  187. :group 'org-export-e-latex
  188. :type '(repeat
  189. (cons
  190. (string :tag "Derived from buffer")
  191. (string :tag "Use this instead"))))
  192. (defcustom org-e-latex-date-format
  193. "\\today"
  194. "Format string for \\date{...}."
  195. :group 'org-export-e-latex
  196. :type 'boolean)
  197. (defcustom org-e-latex-title-command "\\maketitle"
  198. "The command used to insert the title just after \\begin{document}.
  199. If this string contains the formatting specification \"%s\" then
  200. it will be used as a formatting string, passing the title as an
  201. argument."
  202. :group 'org-export-e-latex
  203. :type 'string)
  204. ;;;; Headline
  205. (defcustom org-e-latex-format-headline-function nil
  206. "Function to format headline text.
  207. This function will be called with 5 arguments:
  208. TODO the todo keyword \(string or nil\).
  209. TODO-TYPE the type of todo \(symbol: `todo', `done', nil\)
  210. PRIORITY the priority of the headline \(integer or nil\)
  211. TEXT the main headline text \(string\).
  212. TAGS the tags string, separated with colons \(string or nil\).
  213. The function result will be used in the section format string.
  214. As an example, one could set the variable to the following, in
  215. order to reproduce the default set-up:
  216. \(defun org-e-latex-format-headline \(todo todo-type priority text tags\)
  217. \"Default format function for an headline.\"
  218. \(concat \(when todo
  219. \(format \"\\\\textbf{\\\\textsc{\\\\textsf{%s}}} \" todo\)\)
  220. \(when priority
  221. \(format \"\\\\framebox{\\\\#%c} \" priority\)\)
  222. text
  223. \(when tags \(format \"\\\\hfill{}\\\\textsc{%s}\" tags\)\)\)\)"
  224. :group 'org-export-e-latex
  225. :type 'function)
  226. ;;;; Emphasis
  227. (defcustom org-e-latex-emphasis-alist
  228. '(("*" . "\\textbf{%s}")
  229. ("/" . "\\emph{%s}")
  230. ("_" . "\\underline{%s}")
  231. ("+" . "\\st{%s}")
  232. ("=" . protectedtexttt)
  233. ("~" . verb))
  234. "Alist of LaTeX expressions to convert emphasis fontifiers.
  235. The key is the character used as a marker for fontification. The
  236. value is a formatting string to wrap fontified text with.
  237. Value can also be set to the following symbols: `verb' and
  238. `protectedtexttt'. For the former, Org will use \"\\verb\" to
  239. create a format string and select a delimiter character that
  240. isn't in the string. For the latter, Org will use \"\\texttt\"
  241. to typeset and try to protect special characters."
  242. :group 'org-export-e-latex
  243. :type 'alist)
  244. ;;;; Footnotes
  245. (defcustom org-e-latex-footnote-separator "\\textsuperscript{,}\\,"
  246. "Text used to separate footnotes."
  247. :group 'org-export-e-latex
  248. :type 'string)
  249. ;;;; Time-stamps
  250. (defcustom org-e-latex-active-timestamp-format "\\textit{%s}"
  251. "A printf format string to be applied to active time-stamps."
  252. :group 'org-export-e-latex
  253. :type 'string)
  254. (defcustom org-e-latex-inactive-timestamp-format "\\textit{%s}"
  255. "A printf format string to be applied to inactive time-stamps."
  256. :group 'org-export-e-latex
  257. :type 'string)
  258. (defcustom org-e-latex-diary-timestamp-format "\\textit{%s}"
  259. "A printf format string to be applied to diary time-stamps."
  260. :group 'org-export-e-latex
  261. :type 'string)
  262. ;;;; Links
  263. (defcustom org-e-latex-image-default-option "width=.9\\linewidth"
  264. "Default option for images."
  265. :group 'org-export-e-latex
  266. :type 'string)
  267. (defcustom org-e-latex-default-figure-position "htb"
  268. "Default position for latex figures."
  269. :group 'org-export-e-latex
  270. :type 'string)
  271. (defcustom org-e-latex-inline-image-extensions
  272. '("pdf" "jpeg" "jpg" "png" "ps" "eps")
  273. "Extensions of image files that can be inlined into LaTeX.
  274. Note that the image extension *actually* allowed depend on the
  275. way the LaTeX file is processed. When used with pdflatex, pdf,
  276. jpg and png images are OK. When processing through dvi to
  277. Postscript, only ps and eps are allowed. The default we use here
  278. encompasses both."
  279. :group 'org-export-e-latex
  280. :type '(repeat (string :tag "Extension")))
  281. ;;;; Tables
  282. (defcustom org-e-latex-default-table-environment "tabular"
  283. "Default environment used to build tables."
  284. :group 'org-export-e-latex
  285. :type 'string)
  286. (defcustom org-e-latex-tables-centered t
  287. "When non-nil, tables are exported in a center environment."
  288. :group 'org-export-e-latex
  289. :type 'boolean)
  290. (defcustom org-e-latex-tables-verbatim nil
  291. "When non-nil, tables are exported verbatim."
  292. :group 'org-export-e-latex
  293. :type 'boolean)
  294. (defcustom org-e-latex-table-caption-above t
  295. "When non-nil, place caption string at the beginning of the table.
  296. Otherwise, place it near the end."
  297. :group 'org-export-e-latex
  298. :type 'boolean)
  299. ;;;; Drawers
  300. (defcustom org-e-latex-format-drawer-function nil
  301. "Function called to format a drawer in LaTeX code.
  302. The function must accept two parameters:
  303. NAME the drawer name, like \"LOGBOOK\"
  304. CONTENTS the contents of the drawer.
  305. The function should return the string to be exported.
  306. For example, the variable could be set to the following function
  307. in order to mimic default behaviour:
  308. \(defun org-e-latex-format-drawer-default \(name contents\)
  309. \"Format a drawer element for LaTeX export.\"
  310. contents\)"
  311. :group 'org-export-e-latex
  312. :type 'function)
  313. ;;;; Inlinetasks
  314. (defcustom org-e-latex-format-inlinetask-function nil
  315. "Function called to format an inlinetask in LaTeX code.
  316. The function must accept six parameters:
  317. TODO the todo keyword, as a string
  318. TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
  319. PRIORITY the inlinetask priority, as a string
  320. NAME the inlinetask name, as a string.
  321. TAGS the inlinetask tags, as a string.
  322. CONTENTS the contents of the inlinetask, as a string.
  323. The function should return the string to be exported.
  324. For example, the variable could be set to the following function
  325. in order to mimic default behaviour:
  326. \(defun org-e-latex-format-inlinetask \(todo type priority name tags contents\)
  327. \"Format an inline task element for LaTeX export.\"
  328. \(let \(\(full-title
  329. \(concat
  330. \(when todo
  331. \(format \"\\\\textbf{\\\\textsf{\\\\textsc{%s}}} \" todo\)\)
  332. \(when priority \(format \"\\\\framebox{\\\\#%c} \" priority\)\)
  333. title
  334. \(when tags \(format \"\\\\hfill{}\\\\textsc{%s}\" tags\)\)\)\)\)
  335. \(format \(concat \"\\\\begin{center}\\n\"
  336. \"\\\\fbox{\\n\"
  337. \"\\\\begin{minipage}[c]{.6\\\\textwidth}\\n\"
  338. \"%s\\n\\n\"
  339. \"\\\\rule[.8em]{\\\\textwidth}{2pt}\\n\\n\"
  340. \"%s\"
  341. \"\\\\end{minipage}}\"
  342. \"\\\\end{center}\"\)
  343. full-title contents\)\)"
  344. :group 'org-export-e-latex
  345. :type 'function)
  346. ;; Src blocks
  347. (defcustom org-e-latex-listings nil
  348. "Non-nil means export source code using the listings package.
  349. This package will fontify source code, possibly even with color.
  350. If you want to use this, you also need to make LaTeX use the
  351. listings package, and if you want to have color, the color
  352. package. Just add these to `org-e-latex-packages-alist',
  353. for example using customize, or with something like
  354. (require 'org-e-latex)
  355. (add-to-list 'org-e-latex-packages-alist '(\"\" \"listings\"))
  356. (add-to-list 'org-e-latex-packages-alist '(\"\" \"color\"))
  357. Alternatively,
  358. (setq org-e-latex-listings 'minted)
  359. causes source code to be exported using the minted package as
  360. opposed to listings. If you want to use minted, you need to add
  361. the minted package to `org-e-latex-packages-alist', for
  362. example using customize, or with
  363. (require 'org-e-latex)
  364. (add-to-list 'org-e-latex-packages-alist '(\"\" \"minted\"))
  365. In addition, it is necessary to install
  366. pygments (http://pygments.org), and to configure the variable
  367. `org-e-latex-to-pdf-process' so that the -shell-escape option is
  368. passed to pdflatex."
  369. :group 'org-export-e-latex
  370. :type '(choice
  371. (const :tag "Use listings" t)
  372. (const :tag "Use minted" 'minted)
  373. (const :tag "Export verbatim" nil)))
  374. (defcustom org-e-latex-listings-langs
  375. '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
  376. (c "C") (cc "C++")
  377. (fortran "fortran")
  378. (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
  379. (html "HTML") (xml "XML")
  380. (tex "TeX") (latex "TeX")
  381. (shell-script "bash")
  382. (gnuplot "Gnuplot")
  383. (ocaml "Caml") (caml "Caml")
  384. (sql "SQL") (sqlite "sql"))
  385. "Alist mapping languages to their listing language counterpart.
  386. The key is a symbol, the major mode symbol without the \"-mode\".
  387. The value is the string that should be inserted as the language parameter
  388. for the listings package. If the mode name and the listings name are
  389. the same, the language does not need an entry in this list - but it does not
  390. hurt if it is present."
  391. :group 'org-export-e-latex
  392. :type '(repeat
  393. (list
  394. (symbol :tag "Major mode ")
  395. (string :tag "Listings language"))))
  396. (defcustom org-e-latex-listings-options nil
  397. "Association list of options for the latex listings package.
  398. These options are supplied as a comma-separated list to the
  399. \\lstset command. Each element of the association list should be
  400. a list containing two strings: the name of the option, and the
  401. value. For example,
  402. (setq org-e-latex-listings-options
  403. '((\"basicstyle\" \"\\small\")
  404. (\"keywordstyle\" \"\\color{black}\\bfseries\\underbar\")))
  405. will typeset the code in a small size font with underlined, bold
  406. black keywords.
  407. Note that the same options will be applied to blocks of all
  408. languages."
  409. :group 'org-export-e-latex
  410. :type '(repeat
  411. (list
  412. (string :tag "Listings option name ")
  413. (string :tag "Listings option value"))))
  414. (defcustom org-e-latex-minted-langs
  415. '((emacs-lisp "common-lisp")
  416. (cc "c++")
  417. (cperl "perl")
  418. (shell-script "bash")
  419. (caml "ocaml"))
  420. "Alist mapping languages to their minted language counterpart.
  421. The key is a symbol, the major mode symbol without the \"-mode\".
  422. The value is the string that should be inserted as the language parameter
  423. for the minted package. If the mode name and the listings name are
  424. the same, the language does not need an entry in this list - but it does not
  425. hurt if it is present.
  426. Note that minted uses all lower case for language identifiers,
  427. and that the full list of language identifiers can be obtained
  428. with:
  429. pygmentize -L lexers"
  430. :group 'org-export-e-latex
  431. :type '(repeat
  432. (list
  433. (symbol :tag "Major mode ")
  434. (string :tag "Minted language"))))
  435. (defcustom org-e-latex-minted-options nil
  436. "Association list of options for the latex minted package.
  437. These options are supplied within square brackets in
  438. \\begin{minted} environments. Each element of the alist should
  439. be a list containing two strings: the name of the option, and the
  440. value. For example,
  441. (setq org-e-latex-minted-options
  442. '((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
  443. will result in src blocks being exported with
  444. \\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
  445. as the start of the minted environment. Note that the same
  446. options will be applied to blocks of all languages."
  447. :group 'org-export-e-latex
  448. :type '(repeat
  449. (list
  450. (string :tag "Minted option name ")
  451. (string :tag "Minted option value"))))
  452. (defvar org-e-latex-custom-lang-environments nil
  453. "Alist mapping languages to language-specific LaTeX environments.
  454. It is used during export of src blocks by the listings and minted
  455. latex packages. For example,
  456. \(setq org-e-latex-custom-lang-environments
  457. '\(\(python \"pythoncode\"\)\)\)
  458. would have the effect that if org encounters begin_src python
  459. during latex export it will output
  460. \\begin{pythoncode}
  461. <src block body>
  462. \\end{pythoncode}")
  463. ;;;; Plain text
  464. (defcustom org-e-latex-quotes
  465. '(("fr" ("\\(\\s-\\|[[(]\\)\"" . "«~") ("\\(\\S-\\)\"" . "~»") ("\\(\\s-\\|(\\)'" . "'"))
  466. ("en" ("\\(\\s-\\|[[(]\\)\"" . "``") ("\\(\\S-\\)\"" . "''") ("\\(\\s-\\|(\\)'" . "`")))
  467. "Alist for quotes to use when converting english double-quotes.
  468. The CAR of each item in this alist is the language code.
  469. The CDR of each item in this alist is a list of three CONS:
  470. - the first CONS defines the opening quote;
  471. - the second CONS defines the closing quote;
  472. - the last CONS defines single quotes.
  473. For each item in a CONS, the first string is a regexp
  474. for allowed characters before/after the quote, the second
  475. string defines the replacement string for this quote."
  476. :group 'org-export-e-latex
  477. :type '(list
  478. (cons :tag "Opening quote"
  479. (string :tag "Regexp for char before")
  480. (string :tag "Replacement quote "))
  481. (cons :tag "Closing quote"
  482. (string :tag "Regexp for char after ")
  483. (string :tag "Replacement quote "))
  484. (cons :tag "Single quote"
  485. (string :tag "Regexp for char before")
  486. (string :tag "Replacement quote "))))
  487. ;;;; Compilation
  488. (defcustom org-e-latex-pdf-process
  489. '("pdflatex -interaction nonstopmode -output-directory %o %f"
  490. "pdflatex -interaction nonstopmode -output-directory %o %f"
  491. "pdflatex -interaction nonstopmode -output-directory %o %f")
  492. "Commands to process a LaTeX file to a PDF file.
  493. This is a list of strings, each of them will be given to the shell
  494. as a command. %f in the command will be replaced by the full file name, %b
  495. by the file base name (i.e. without extension) and %o by the base directory
  496. of the file.
  497. The reason why this is a list is that it usually takes several runs of
  498. `pdflatex', maybe mixed with a call to `bibtex'. Org does not have a clever
  499. mechanism to detect which of these commands have to be run to get to a stable
  500. result, and it also does not do any error checking.
  501. By default, Org uses 3 runs of `pdflatex' to do the processing. If you
  502. have texi2dvi on your system and if that does not cause the infamous
  503. egrep/locale bug:
  504. http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
  505. then `texi2dvi' is the superior choice. Org does offer it as one
  506. of the customize options.
  507. Alternatively, this may be a Lisp function that does the processing, so you
  508. could use this to apply the machinery of AUCTeX or the Emacs LaTeX mode.
  509. This function should accept the file name as its single argument."
  510. :group 'org-export-pdf
  511. :type '(choice
  512. (repeat :tag "Shell command sequence"
  513. (string :tag "Shell command"))
  514. (const :tag "2 runs of pdflatex"
  515. ("pdflatex -interaction nonstopmode -output-directory %o %f"
  516. "pdflatex -interaction nonstopmode -output-directory %o %f"))
  517. (const :tag "3 runs of pdflatex"
  518. ("pdflatex -interaction nonstopmode -output-directory %o %f"
  519. "pdflatex -interaction nonstopmode -output-directory %o %f"
  520. "pdflatex -interaction nonstopmode -output-directory %o %f"))
  521. (const :tag "pdflatex,bibtex,pdflatex,pdflatex"
  522. ("pdflatex -interaction nonstopmode -output-directory %o %f"
  523. "bibtex %b"
  524. "pdflatex -interaction nonstopmode -output-directory %o %f"
  525. "pdflatex -interaction nonstopmode -output-directory %o %f"))
  526. (const :tag "texi2dvi"
  527. ("texi2dvi -p -b -c -V %f"))
  528. (const :tag "rubber"
  529. ("rubber -d --into %o %f"))
  530. (function)))
  531. (defcustom org-e-latex-logfiles-extensions
  532. '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb")
  533. "The list of file extensions to consider as LaTeX logfiles."
  534. :group 'org-export-e-latex
  535. :type '(repeat (string :tag "Extension")))
  536. (defcustom org-e-latex-remove-logfiles t
  537. "Non-nil means remove the logfiles produced by PDF production.
  538. These are the .aux, .log, .out, and .toc files."
  539. :group 'org-export-e-latex
  540. :type 'boolean)
  541. ;;; Internal Functions
  542. (defun org-e-latex--caption/label-string (caption label info)
  543. "Return caption and label LaTeX string for floats.
  544. CAPTION is a cons cell of secondary strings, the car being the
  545. standard caption and the cdr its short form. LABEL is a string
  546. representing the label. INFO is a plist holding contextual
  547. information.
  548. If there's no caption nor label, return the empty string.
  549. For non-floats, see `org-e-latex--wrap-label'."
  550. (let ((label-str (if label (format "\\label{%s}" label) "")))
  551. (cond
  552. ((and (not caption) (not label)) "")
  553. ((not caption) (format "\\label{%s}\n" label))
  554. ;; Option caption format with short name.
  555. ((cdr caption)
  556. (format "\\caption[%s]{%s%s}\n"
  557. (org-export-secondary-string (cdr caption) 'e-latex info)
  558. label-str
  559. (org-export-secondary-string (car caption) 'e-latex info)))
  560. ;; Standard caption format.
  561. (t (format "\\caption{%s%s}\n"
  562. label-str
  563. (org-export-secondary-string (car caption) 'e-latex info))))))
  564. (defun org-e-latex--guess-inputenc (header)
  565. "Set the coding system in inputenc to what the buffer is.
  566. HEADER is the LaTeX header string.
  567. Return the new header."
  568. (let* ((cs (or (ignore-errors
  569. (latexenc-coding-system-to-inputenc
  570. buffer-file-coding-system))
  571. "utf8")))
  572. (if (not cs)
  573. header
  574. ;; First translate if that is requested.
  575. (setq cs (or (cdr (assoc cs org-e-latex-inputenc-alist)) cs))
  576. ;; Then find the \usepackage statement and replace the option.
  577. (replace-regexp-in-string "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
  578. cs header t nil 1))))
  579. (defun org-e-latex--find-verb-separator (s)
  580. "Return a character not used in string S.
  581. This is used to choose a separator for constructs like \\verb."
  582. (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
  583. (loop for c across ll
  584. when (not (string-match (regexp-quote (char-to-string c)) s))
  585. return (char-to-string c))))
  586. (defun org-e-latex--make-option-string (options)
  587. "Return a comma separated string of keywords and values.
  588. OPTIONS is an alist where the key is the options keyword as
  589. a string, and the value a list containing the keyword value, or
  590. nil."
  591. (mapconcat (lambda (pair)
  592. (concat (first pair)
  593. (when (> (length (second pair)) 0)
  594. (concat "=" (second pair)))))
  595. options
  596. ","))
  597. (defun org-e-latex--quotation-marks (text info)
  598. "Export quotation marks depending on language conventions.
  599. TEXT is a string containing quotation marks to be replaced. INFO
  600. is a plist used as a communication channel."
  601. (mapc (lambda(l)
  602. (let ((start 0))
  603. (while (setq start (string-match (car l) text start))
  604. (let ((new-quote (concat (match-string 1 text) (cdr l))))
  605. (setq text (replace-match new-quote t t text))))))
  606. (cdr (or (assoc (plist-get info :language) org-e-latex-quotes)
  607. ;; Falls back on English.
  608. (assoc "en" org-e-latex-quotes))))
  609. text)
  610. (defun org-e-latex--wrap-label (element output)
  611. "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
  612. This function shouldn't be used for floats. See
  613. `org-e-latex--caption/label-string'."
  614. (let ((label (org-element-get-property :name element)))
  615. (if (or (not output) (not label) (string= output "") (string= label ""))
  616. output
  617. (concat (format "\\label{%s}\n" label) output))))
  618. ;;; Template
  619. (defun org-e-latex-template (contents info)
  620. "Return complete document string after LaTeX conversion.
  621. CONTENTS is the transcoded contents string. INFO is a plist
  622. holding export options."
  623. (let ((title (org-export-secondary-string
  624. (plist-get info :title) 'e-latex info)))
  625. (concat
  626. ;; 1. Time-stamp.
  627. (and (plist-get info :time-stamp-file)
  628. (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
  629. ;; 2. Document class and packages.
  630. (let ((class (plist-get info :latex-class))
  631. (class-options (plist-get info :latex-class-options)))
  632. (org-element-normalize-string
  633. (let* ((header (nth 1 (assoc class org-e-latex-classes)))
  634. (document-class-string
  635. (and (stringp header)
  636. (if class-options
  637. (replace-regexp-in-string
  638. "^[ \t]*\\\\documentclass\\(\\[.*?\\]\\)"
  639. class-options header t nil 1)
  640. header))))
  641. (org-e-latex--guess-inputenc
  642. (org-splice-latex-header
  643. document-class-string
  644. org-export-latex-default-packages-alist ; defined in org.el
  645. org-export-latex-packages-alist nil ; defined in org.el
  646. (plist-get info :latex-header-extra))))))
  647. ;; 3. Define alert if not yet defined.
  648. "\\providecommand{\\alert}[1]{\\textbf{#1}}\n"
  649. ;; 4. Possibly limit depth for headline numbering.
  650. (let ((sec-num (plist-get info :section-numbers)))
  651. (when (integerp sec-num)
  652. (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
  653. ;; 5. Author.
  654. (let ((author (and (plist-get info :with-author)
  655. (let ((auth (plist-get info :author)))
  656. (and auth (org-export-secondary-string
  657. auth 'e-latex info)))))
  658. (email (and (plist-get info :with-email)
  659. (org-export-secondary-string
  660. (plist-get info :email) 'e-latex info))))
  661. (cond ((and author email (not (string= "" email)))
  662. (format "\\author{%s\\thanks{%s}}\n" author email))
  663. (author (format "\\author{%s}\n" author))
  664. (t "\\author{}\n")))
  665. ;; 6. Date.
  666. (let ((date (plist-get info :date)))
  667. (and date (format "\\date{%s}\n" date)))
  668. ;; 7. Title
  669. (format "\\title{%s}\n" title)
  670. ;; 8. Hyperref options.
  671. (format "\\hypersetup{\n pdfkeywords={%s},\n pdfsubject={%s},\n pdfcreator={%s}}\n"
  672. (or (plist-get info :keywords) "")
  673. (or (plist-get info :description) "")
  674. (let ((creator-info (plist-get info :with-creator)))
  675. (cond
  676. ((not creator-info) "")
  677. ((eq creator-info 'comment) "")
  678. (t (plist-get info :creator)))))
  679. ;; 9. Document start.
  680. "\\begin{document}\n\n"
  681. ;; 10. Title command.
  682. (org-element-normalize-string
  683. (cond ((string= "" title) nil)
  684. ((not (stringp org-e-latex-title-command)) nil)
  685. ((string-match "\\(?:[^%]\\|^\\)%s"
  686. org-e-latex-title-command)
  687. (format org-e-latex-title-command title))
  688. (t org-e-latex-title-command)))
  689. ;; 11. Table of contents.
  690. (let ((depth (plist-get info :with-toc)))
  691. (when depth
  692. (concat (when (wholenump depth)
  693. (format "\\setcounter{tocdepth}{%d}\n" depth))
  694. "\\tableofcontents\n\\vspace*{1cm}\n\n")))
  695. ;; 12. Document's body.
  696. contents
  697. ;; 13. Creator.
  698. (let ((creator-info (plist-get info :with-creator)))
  699. (cond
  700. ((not creator-info))
  701. ((eq creator-info 'comment)
  702. (format "%% %s\n" (plist-get info :creator)))
  703. (t (concat (plist-get info :creator) "\n"))))
  704. ;; 14. Document end.
  705. "\\end{document}")))
  706. ;;; Transcode Functions
  707. ;;;; Block
  708. (defun org-e-latex-center-block (center-block contents info)
  709. "Transcode a CENTER-BLOCK element from Org to LaTeX.
  710. CONTENTS holds the contents of the block. INFO is a plist
  711. holding contextual information."
  712. (org-e-latex--wrap-label
  713. center-block
  714. (format "\\begin{center}\n%s\\end{center}" contents)))
  715. ;;;; Comment
  716. ;; Comments are ignored.
  717. ;;;; Comment Block
  718. ;; Comment Blocks are ignored.
  719. ;;;; Drawer
  720. (defun org-e-latex-drawer (drawer contents info)
  721. "Transcode a DRAWER element from Org to LaTeX.
  722. CONTENTS holds the contents of the block. INFO is a plist
  723. holding contextual information."
  724. (let* ((name (org-element-get-property :drawer-name drawer))
  725. (output (if (functionp org-e-latex-format-drawer-function)
  726. (funcall org-e-latex-format-drawer-function
  727. name contents)
  728. ;; If there's no user defined function: simply
  729. ;; display contents of the drawer.
  730. contents)))
  731. (org-e-latex--wrap-label drawer output)))
  732. ;;;; Dynamic Block
  733. (defun org-e-latex-dynamic-block (dynamic-block contents info)
  734. "Transcode a DYNAMIC-BLOCK element from Org to LaTeX.
  735. CONTENTS holds the contents of the block. INFO is a plist
  736. holding contextual information. See
  737. `org-export-data'."
  738. (org-e-latex--wrap-label dynamic-block contents))
  739. ;;;; Emphasis
  740. (defun org-e-latex-emphasis (emphasis contents info)
  741. "Transcode EMPHASIS from Org to LaTeX.
  742. CONTENTS is the contents of the emphasized text. INFO is a plist
  743. holding contextual information.."
  744. (format (cdr (assoc (org-element-get-property :marker emphasis)
  745. org-e-latex-emphasis-alist))
  746. contents))
  747. ;;;; Entity
  748. (defun org-e-latex-entity (entity contents info)
  749. "Transcode an ENTITY object from Org to LaTeX.
  750. CONTENTS are the definition itself. INFO is a plist holding
  751. contextual information."
  752. (let ((ent (org-element-get-property :latex entity)))
  753. (if (org-element-get-property :latex-math-p entity)
  754. (format "$%s$" ent)
  755. ent)))
  756. ;;;; Example Block
  757. (defun org-e-latex-example-block (example-block contents info)
  758. "Transcode a EXAMPLE-BLOCK element from Org to LaTeX.
  759. CONTENTS is nil. INFO is a plist holding contextual information."
  760. (let* ((options (or (org-element-get-property :options example-block) ""))
  761. (value (org-export-handle-code example-block info)))
  762. (org-e-latex--wrap-label
  763. example-block (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
  764. ;;;; Export Snippet
  765. (defun org-e-latex-export-snippet (export-snippet contents info)
  766. "Transcode a EXPORT-SNIPPET object from Org to LaTeX.
  767. CONTENTS is nil. INFO is a plist holding contextual information."
  768. (org-element-get-property :value export-snippet))
  769. ;;;; Export Block
  770. (defun org-e-latex-export-block (export-block contents info)
  771. "Transcode a EXPORT-BLOCK element from Org to LaTeX.
  772. CONTENTS is nil. INFO is a plist holding contextual information."
  773. (when (string= (org-element-get-property :type export-block) "latex")
  774. (org-remove-indentation (org-element-get-property :value export-block))))
  775. ;;;; Fixed Width
  776. (defun org-e-latex-fixed-width (fixed-width contents info)
  777. "Transcode a FIXED-WIDTH element from Org to LaTeX.
  778. CONTENTS is nil. INFO is a plist holding contextual information."
  779. (let* ((value (org-element-normalize-string
  780. (replace-regexp-in-string
  781. "^[ \t]*: ?" ""
  782. (org-element-get-property :value fixed-width)))))
  783. (org-e-latex--wrap-label
  784. fixed-width (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
  785. ;;;; Footnote Definition
  786. ;; Footnote Definitions are ignored.
  787. ;;;; Footnote Reference
  788. (defun org-e-latex-footnote-reference (footnote-reference contents info)
  789. "Transcode a FOOTNOTE-REFERENCE element from Org to LaTeX.
  790. CONTENTS is nil. INFO is a plist holding contextual information."
  791. (concat
  792. ;; Insert separator between two footnotes in a row.
  793. (let ((prev (org-export-get-previous-element footnote-reference info)))
  794. (when (and (listp prev) (eq (car prev) 'footnote-reference))
  795. org-e-latex-footnote-separator))
  796. ;; Use \footnotemark if the footnote has already been defined.
  797. ;; Otherwise, define it with \footnote command.
  798. (cond
  799. ((not (org-export-footnote-first-reference-p footnote-reference info))
  800. (format "\\footnotemark[%s]"
  801. (org-export-get-footnote-number footnote-reference info)))
  802. ;; Inline definitions are secondary strings.
  803. ((eq (org-element-get-property :type footnote-reference) 'inline)
  804. (format "\\footnote{%s}"
  805. (org-trim
  806. (org-export-secondary-string
  807. (org-export-get-footnote-definition footnote-reference info)
  808. 'e-latex info))))
  809. ;; Non-inline footnotes definitions are full Org data.
  810. (t
  811. (format "\\footnote{%s}"
  812. (org-trim
  813. (org-export-data
  814. (org-export-get-footnote-definition footnote-reference info)
  815. 'e-latex info)))))))
  816. ;;;; Headline
  817. (defun org-e-latex-headline (headline contents info)
  818. "Transcode an HEADLINE element from Org to LaTeX.
  819. CONTENTS holds the contents of the headline. INFO is a plist
  820. holding contextual information."
  821. (let* ((class (plist-get info :latex-class))
  822. (numberedp (plist-get info :section-numbers))
  823. ;; Get level relative to current parsed data.
  824. (level (org-export-get-relative-level headline info))
  825. (class-sectionning (assoc class org-e-latex-classes))
  826. ;; Section formatting will set two placeholders: one for the
  827. ;; title and the other for the contents.
  828. (section-fmt
  829. (let ((sec (if (and (symbolp (nth 2 class-sectionning))
  830. (fboundp (nth 2 class-sectionning)))
  831. (funcall (nth 2 class-sectionning) level numberedp)
  832. (nth (1+ level) class-sectionning))))
  833. (cond
  834. ;; No section available for that LEVEL.
  835. ((not sec) nil)
  836. ;; Section format directly returned by a function.
  837. ((stringp sec) sec)
  838. ;; (numbered-section . unnumbered-section)
  839. ((not (consp (cdr sec)))
  840. (concat (funcall (if numberedp #'car #'cdr) sec) "\n%s"))
  841. ;; (numbered-open numbered-close)
  842. ((= (length sec) 2)
  843. (when numberedp (concat (car sec) "\n%s" (nth 1 sec))))
  844. ;; (num-in num-out no-num-in no-num-out)
  845. ((= (length sec) 4)
  846. (if numberedp
  847. (concat (car sec) "\n%s" (nth 1 sec))
  848. (concat (nth 2 sec) "\n%s" (nth 3 sec)))))))
  849. (text (org-export-secondary-string
  850. (org-element-get-property :title headline) 'e-latex info))
  851. (todo (and (plist-get info :with-todo-keywords)
  852. (let ((todo (org-element-get-property
  853. :todo-keyword headline)))
  854. (and todo
  855. (org-export-secondary-string todo 'e-latex info)))))
  856. (todo-type (and todo (org-element-get-property :todo-type headline)))
  857. (tags (and (plist-get info :with-tags)
  858. (org-element-get-property :tags headline)))
  859. (priority (and (plist-get info :with-priority)
  860. (org-element-get-property :priority headline)))
  861. ;; Create the headline text.
  862. (full-text (if (functionp org-e-latex-format-headline-function)
  863. ;; User-defined formatting function.
  864. (funcall org-e-latex-format-headline-function
  865. todo todo-type priority text tags)
  866. ;; Default formatting.
  867. (concat
  868. (when todo
  869. (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
  870. (when priority (format "\\framebox{\\#%c} " priority))
  871. text
  872. (when tags (format "\\hfill{}\\textsc{%s}" tags)))))
  873. ;; Associate some \label to the headline for internal links.
  874. (headline-label
  875. (format "\\label{sec-%s}\n"
  876. (mapconcat 'number-to-string
  877. (org-export-get-headline-number headline info)
  878. "-")))
  879. (pre-blanks (make-string
  880. (org-element-get-property :pre-blank headline) 10)))
  881. (cond
  882. ;; Case 1: This is a footnote section: ignore it.
  883. ((org-element-get-property :footnote-section-p headline) nil)
  884. ;; Case 2. This is a deep sub-tree: export it as a list item.
  885. ;; Also export as items headlines for which no section
  886. ;; format has been found.
  887. ((or (not section-fmt) (org-export-low-level-p headline info))
  888. ;; Build the real contents of the sub-tree.
  889. (let ((low-level-body
  890. (concat
  891. ;; If the headline is the first sibling, start a list.
  892. (when (org-export-first-sibling-p headline info)
  893. (format "\\begin{%s}\n" (if numberedp 'enumerate 'itemize)))
  894. ;; Itemize headline
  895. "\\item " full-text "\n" headline-label pre-blanks contents)))
  896. ;; If headline in the last sibling, close the list, before any
  897. ;; blank line. Otherwise, simply return LOW-LEVEL-BODY.
  898. (if (org-export-last-sibling-p headline info)
  899. (replace-regexp-in-string
  900. "[ \t\n]*\\'"
  901. (format "\n\\\\end{%s}" (if numberedp 'enumerate 'itemize))
  902. low-level-body)
  903. low-level-body)))
  904. ;; Case 3. Standard headline. Export it as a section.
  905. (t (format section-fmt full-text
  906. (concat headline-label pre-blanks contents))))))
  907. ;;;; Horizontal Rule
  908. (defun org-e-latex-horizontal-rule (horizontal-rule contents info)
  909. "Transcode an HORIZONTAL-RULE object from Org to LaTeX.
  910. CONTENTS is nil. INFO is a plist holding contextual information."
  911. (let ((attr (mapconcat #'identity
  912. (org-element-get-property :attr_latex horizontal-rule)
  913. " ")))
  914. (org-e-latex--wrap-label horizontal-rule (concat "\\hrule " attr))))
  915. ;;;; Inline Babel Call
  916. ;; Inline Babel Calls are ignored.
  917. ;;;; Inline Src Block
  918. (defun org-e-latex-inline-src-block (inline-src-block contents info)
  919. "Transcode an INLINE-SRC-BLOCK element from Org to LaTeX.
  920. CONTENTS holds the contents of the item. INFO is a plist holding
  921. contextual information."
  922. (let* ((code (org-element-get-property :value inline-src-block))
  923. (separator (org-e-latex--find-verb-separator code)))
  924. (cond
  925. ;; Do not use a special package: transcode it verbatim.
  926. ((not org-e-latex-listings)
  927. (concat "\\verb" separator code separator))
  928. ;; Use minted package.
  929. ((eq org-e-latex-listings 'minted)
  930. (let* ((org-lang (org-element-get-property :language inline-src-block))
  931. (mint-lang (or (cadr (assq (intern org-lang)
  932. org-e-latex-minted-langs))
  933. org-lang))
  934. (options (org-e-latex--make-option-string
  935. org-e-latex-minted-options)))
  936. (concat (format "\\mint%s{%s}"
  937. (if (string= options "") "" (format "[%s]" options))
  938. mint-lang)
  939. separator code separator)))
  940. ;; Use listings package.
  941. (t
  942. ;; Maybe translate language's name.
  943. (let* ((org-lang (org-element-get-property :language inline-src-block))
  944. (lst-lang (or (cadr (assq (intern org-lang)
  945. org-e-latex-listings-langs))
  946. org-lang))
  947. (options (org-e-latex--make-option-string
  948. (append org-e-latex-listings-options
  949. `(("language" ,lst-lang))))))
  950. (concat (format "\\lstinline[%s]" options)
  951. separator code separator))))))
  952. ;;;; Inlinetask
  953. (defun org-e-latex-inlinetask (inlinetask contents info)
  954. "Transcode an INLINETASK element from Org to LaTeX.
  955. CONTENTS holds the contents of the block. INFO is a plist
  956. holding contextual information."
  957. (let ((title (org-export-secondary-string
  958. (org-element-get-property :title inlinetask) 'e-latex info))
  959. (todo (and (plist-get info :with-todo-keywords)
  960. (let ((todo (org-element-get-property
  961. :todo-keyword inlinetask)))
  962. (and todo
  963. (org-export-secondary-string todo 'e-latex info)))))
  964. (todo-type (org-element-get-property :todo-type inlinetask))
  965. (tags (and (plist-get info :with-tags)
  966. (org-element-get-property :tags inlinetask)))
  967. (priority (and (plist-get info :with-priority)
  968. (org-element-get-property :priority inlinetask))))
  969. ;; If `org-e-latex-format-inlinetask-function' is provided, call it
  970. ;; with appropriate arguments.
  971. (if (functionp org-e-latex-format-inlinetask-function)
  972. (funcall org-e-latex-format-inlinetask-function
  973. todo todo-type priority title tags contents)
  974. ;; Otherwise, use a default template.
  975. (org-e-latex--wrap-label
  976. inlinetask
  977. (let ((full-title
  978. (concat
  979. (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
  980. (when priority (format "\\framebox{\\#%c} " priority))
  981. title
  982. (when tags (format "\\hfill{}\\textsc{%s}" tags)))))
  983. (format (concat "\\begin{center}\n"
  984. "\\fbox{\n"
  985. "\\begin{minipage}[c]{.6\\textwidth}\n"
  986. "%s\n\n"
  987. "\\rule[.8em]{\\textwidth}{2pt}\n\n"
  988. "%s"
  989. "\\end{minipage}\n"
  990. "}\n"
  991. "\\end{center}")
  992. full-title contents))))))
  993. ;;;; Item
  994. (defun org-e-latex-item (item contents info)
  995. "Transcode an ITEM element from Org to LaTeX.
  996. CONTENTS holds the contents of the item. INFO is a plist holding
  997. contextual information."
  998. ;; Grab `:level' from plain-list properties, which is always the
  999. ;; first element above current item.
  1000. (let* ((level (org-element-get-property
  1001. :level (car (plist-get info :genealogy))))
  1002. (counter (let ((count (org-element-get-property :counter item)))
  1003. (and count
  1004. (< level 4)
  1005. (format "\\setcounter{enum%s}{%s}\n"
  1006. (nth level '("i" "ii" "iii" "iv"))
  1007. (1- count)))))
  1008. (checkbox (let ((checkbox (org-element-get-property :checkbox item)))
  1009. (cond ((eq checkbox 'on) "$\\boxtimes$ ")
  1010. ((eq checkbox 'off) "$\\Box$ ")
  1011. ((eq checkbox 'trans) "$\\boxminus$ "))))
  1012. (tag (let ((tag (org-element-get-property :tag item)))
  1013. (and tag
  1014. (format "[%s]" (org-export-secondary-string
  1015. tag 'e-latex info))))))
  1016. (concat counter "\\item" tag " " checkbox contents)))
  1017. ;;;; Keyword
  1018. (defun org-e-latex-keyword (keyword contents info)
  1019. "Transcode a KEYWORD element from Org to LaTeX.
  1020. CONTENTS is nil. INFO is a plist holding contextual information."
  1021. (let ((key (downcase (org-element-get-property :key keyword)))
  1022. (value (org-element-get-property :value keyword)))
  1023. (cond
  1024. ((string= key "latex") value)
  1025. ((string= key "index") (format "\\index{%s}" value))
  1026. ((string= key "target")
  1027. (format "\\label{%s}" (org-export-solidify-link-text value)))
  1028. ((string= key "toc")
  1029. (let ((value (downcase value)))
  1030. (cond
  1031. ((string-match "\\<headlines\\>" value)
  1032. (let ((depth (or (and (string-match "[0-9]+" value)
  1033. (string-to-number (match-string 0 value)))
  1034. (plist-get info :with-toc))))
  1035. (concat
  1036. (when (wholenump depth)
  1037. (format "\\setcounter{tocdepth}{%s}\n" depth))
  1038. "\\tableofcontents")))
  1039. ((string= "tables" value) "\\listoftables")
  1040. ((string= "figures" value) "\\listoffigures")
  1041. ((string= "listings" value) "\\listoflistings"))))
  1042. ((string= key "include")
  1043. (org-export-included-file keyword 'e-latex info)))))
  1044. ;;;; Latex Environment
  1045. (defun org-e-latex-latex-environment (latex-environment contents info)
  1046. "Transcode a LATEX-ENVIRONMENT element from Org to LaTeX.
  1047. CONTENTS is nil. INFO is a plist holding contextual information."
  1048. (org-e-latex--wrap-label
  1049. latex-environment
  1050. (org-remove-indentation (org-element-get-property :value latex-environment))))
  1051. ;;;; Latex Fragment
  1052. (defun org-e-latex-latex-fragment (latex-fragment contents info)
  1053. "Transcode a LATEX-FRAGMENT object from Org to LaTeX.
  1054. CONTENTS is nil. INFO is a plist holding contextual information."
  1055. (org-element-get-property :value latex-fragment))
  1056. ;;;; Line Break
  1057. (defun org-e-latex-line-break (line-break contents info)
  1058. "Transcode a LINE-BREAK object from Org to LaTeX.
  1059. CONTENTS is nil. INFO is a plist holding contextual information."
  1060. "\\\\")
  1061. ;;;; Link
  1062. (defun org-e-latex-link--inline-image (path info)
  1063. "Return LaTeX code for an image at PATH.
  1064. INFO is a plist containing export options."
  1065. (let* ((parent-props (nth 1 (car (plist-get info :genealogy))))
  1066. (caption (org-e-latex--caption/label-string
  1067. (plist-get parent-props :caption)
  1068. (plist-get parent-props :name)
  1069. info))
  1070. ;; Retrieve latex attributes from the element around.
  1071. (attr (let ((raw-attr
  1072. (mapconcat #'identity
  1073. (plist-get parent-props :attr_latex) " ")))
  1074. (unless (string= raw-attr "") raw-attr)))
  1075. (disposition
  1076. (cond
  1077. ((and attr (string-match "\\<wrap\\>" attr)) 'wrap)
  1078. ((and attr (string-match "\\<multicolumn\\>" attr)) 'multicolumn)
  1079. ((or (and attr (string-match "\\<float\\>" attr))
  1080. (not (string= caption "")))
  1081. 'float)))
  1082. (placement
  1083. (cond
  1084. ((and attr (string-match "\\<placement=\\(\\S-+\\)" attr))
  1085. (org-match-string-no-properties 1 attr))
  1086. ((eq disposition 'wrap) "{l}{0.5\\textwidth}")
  1087. ((eq disposition 'float)
  1088. (concat "[" org-e-latex-default-figure-position "]"))
  1089. (t ""))))
  1090. ;; Now clear ATTR from any special keyword and set a default
  1091. ;; value if nothing is left.
  1092. (setq attr
  1093. (if (not attr) ""
  1094. (org-trim
  1095. (replace-regexp-in-string
  1096. "\\(wrap\\|multicolumn\\|float\\|placement=\\S-+\\)" "" attr))))
  1097. (setq attr (cond ((not (string= attr "")) attr)
  1098. ((eq disposition 'float) "width=0.7\\textwidth")
  1099. ((eq disposition 'wrap) "width=0.48\\textwidth")
  1100. (t (or org-e-latex-image-default-option ""))))
  1101. ;; Return proper string, depending on DISPOSITION.
  1102. (case disposition
  1103. ('wrap (format "\\begin{wrapfigure}%s
  1104. \\centering
  1105. \\includegraphics[%s]{%s}
  1106. %s\\end{wrapfigure}" placement attr path caption))
  1107. ('mulicolumn (format "\\begin{figure*}%s
  1108. \\centering
  1109. \\includegraphics[%s]{%s}
  1110. %s\\end{figure*}" placement attr path caption))
  1111. ('float (format "\\begin{figure}%s
  1112. \\centering
  1113. \\includegraphics[%s]{%s}
  1114. %s\\end{figure}" placement attr path caption))
  1115. (t (format "\\includegraphics[%s]{%s}" attr path)))))
  1116. (defun org-e-latex-link (link desc info)
  1117. "Transcode a LINK object from Org to LaTeX.
  1118. DESC is the description part of the link, or the empty string.
  1119. INFO is a plist holding contextual information. See
  1120. `org-export-data'."
  1121. (let* ((type (org-element-get-property :type link))
  1122. (raw-path (org-element-get-property :path link))
  1123. ;; Ensure DESC really exists, or set it to nil.
  1124. (desc (and (not (string= desc "")) desc))
  1125. (imagep (org-export-inline-image-p
  1126. link org-e-latex-inline-image-extensions))
  1127. (path (cond
  1128. ((member type '("http" "https" "ftp" "mailto"))
  1129. (concat type ":" raw-path))
  1130. (imagep (if (not (file-name-absolute-p raw-path)) raw-path
  1131. (expand-file-name raw-path)))
  1132. ((string= type "file")
  1133. (when (string-match "\\(.+\\)::.+" raw-path)
  1134. (setq raw-path (match-string 1 raw-path)))
  1135. (if (file-name-absolute-p raw-path)
  1136. (concat "file://" (expand-file-name raw-path))
  1137. ;; TODO: Not implemented yet. Concat also:
  1138. ;; (org-export-directory :LaTeX info)
  1139. (concat "file://" raw-path)))
  1140. (t raw-path)))
  1141. protocol)
  1142. (cond
  1143. ;; Image file.
  1144. (imagep (org-e-latex-link--inline-image path info))
  1145. ;; Target or radioed target: replace link with the normalized
  1146. ;; custom-id/target name.
  1147. ((member type '("target" "radio"))
  1148. (format "\\hyperref[%s]{%s}"
  1149. (org-export-solidify-link-text path)
  1150. (or desc (org-export-secondary-string path 'e-latex info))))
  1151. ;; Links pointing to an headline: Find destination and build
  1152. ;; appropriate referencing commanding.
  1153. ((member type '("custom-id" "fuzzy" "id"))
  1154. (let ((destination (if (string= type "fuzzy")
  1155. (org-export-resolve-fuzzy-link link info)
  1156. (org-export-resolve-id-link link info))))
  1157. ;; Fuzzy link points to a target. Do as above.
  1158. (case (car destination)
  1159. (target
  1160. (format "\\hyperref[%s]{%s}"
  1161. (org-export-solidify-link-text
  1162. (org-element-get-property :raw-value destination))
  1163. (or desc
  1164. (org-export-secondary-string
  1165. (org-element-get-property :raw-link link)
  1166. 'e-latex info))))
  1167. ;; Fuzzy link points to an headline. If headlines are
  1168. ;; numbered and the link has no description, display
  1169. ;; headline's number. Otherwise, display description or
  1170. ;; headline's title.
  1171. (headline
  1172. (let ((label
  1173. (format "sec-%s"
  1174. (mapconcat
  1175. 'number-to-string
  1176. (org-export-get-headline-number destination info)
  1177. "-"))))
  1178. (if (and (plist-get info :section-numbers) (not desc))
  1179. (format "\\ref{%s}" label)
  1180. (format "\\hyperref[%s]{%s}" label
  1181. (or desc
  1182. (org-export-secondary-string
  1183. (org-element-get-property :title destination)
  1184. 'e-latex info))))))
  1185. ;; Fuzzy link points nowhere.
  1186. (otherwise
  1187. (format "\\texttt{%s}"
  1188. (or desc
  1189. (org-export-secondary-string
  1190. (org-element-get-property :raw-link link)
  1191. 'e-latex info)))))))
  1192. ;; Coderef: replace link with the reference name or the
  1193. ;; equivalent line number.
  1194. ((string= type "coderef")
  1195. (format (org-export-get-coderef-format path (or desc ""))
  1196. (org-export-resolve-coderef path info)))
  1197. ;; Link type is handled by a special function.
  1198. ((functionp (setq protocol (nth 2 (assoc type org-link-protocols))))
  1199. (funcall protocol (org-link-unescape path) desc 'latex))
  1200. ;; External link with a description part.
  1201. ((and path desc) (format "\\href{%s}{%s}" path desc))
  1202. ;; External link without a description part.
  1203. (path (format "\\url{%s}" path))
  1204. ;; No path, only description. Try to do something useful.
  1205. (t (format "\\texttt{%s}" desc)))))
  1206. ;;;; Babel Call
  1207. ;; Babel Calls are ignored.
  1208. ;;;; Macro
  1209. (defun org-e-latex-macro (macro contents info)
  1210. "Transcode a MACRO element from Org to LaTeX.
  1211. CONTENTS is nil. INFO is a plist holding contextual information."
  1212. ;; Use available tools.
  1213. (org-export-expand-macro macro info))
  1214. ;;;; Paragraph
  1215. (defun org-e-latex-paragraph (paragraph contents info)
  1216. "Transcode a PARAGRAPH element from Org to LaTeX.
  1217. CONTENTS is the contents of the paragraph, as a string. INFO is
  1218. the plist used as a communication channel."
  1219. contents)
  1220. ;;;; Plain List
  1221. (defun org-e-latex-plain-list (plain-list contents info)
  1222. "Transcode a PLAIN-LIST element from Org to LaTeX.
  1223. CONTENTS is the contents of the list. INFO is a plist holding
  1224. contextual information."
  1225. (let* ((type (org-element-get-property :type plain-list))
  1226. (paralist-types '("inparaenum" "asparaenum" "inparaitem" "asparaitem"
  1227. "inparadesc" "asparadesc"))
  1228. (paralist-regexp (concat
  1229. "\\("
  1230. (mapconcat 'identity paralist-types "\\|")
  1231. "\\)"))
  1232. (attr (mapconcat #'identity
  1233. (org-element-get-property :attr_latex plain-list)
  1234. " "))
  1235. (latex-type (cond
  1236. ((and attr
  1237. (string-match
  1238. (format "\\<%s\\>" paralist-regexp) attr))
  1239. (match-string 1 attr))
  1240. ((eq type 'ordered) "enumerate")
  1241. ((eq type 'unordered) "itemize")
  1242. ((eq type 'descriptive) "description"))))
  1243. (org-e-latex--wrap-label
  1244. plain-list
  1245. (format "\\begin{%s}%s\n%s\\end{%s}"
  1246. latex-type
  1247. ;; Once special environment, if any, has been removed, the
  1248. ;; rest of the attributes will be optional arguments.
  1249. ;; They will be put inside square brackets if necessary.
  1250. (let ((opt (replace-regexp-in-string
  1251. (format " *%s *" paralist-regexp) "" attr)))
  1252. (cond ((string= opt "") "")
  1253. ((string-match "\\`\\[[^][]+\\]\\'" opt) opt)
  1254. (t (format "[%s]" opt))))
  1255. contents
  1256. latex-type))))
  1257. ;;;; Plain Text
  1258. (defun org-e-latex-plain-text (text info)
  1259. "Transcode a TEXT string from Org to LaTeX.
  1260. TEXT is the string to transcode. INFO is a plist holding
  1261. contextual information."
  1262. ;; Protect %, #, &, $, ~, ^, _, { and }.
  1263. (while (string-match "\\([^\\]\\|^\\)\\([%$#&{}~^_]\\)" text)
  1264. (setq text
  1265. (replace-match (format "\\%s" (match-string 2 text)) nil t text 2)))
  1266. ;; Protect \
  1267. (setq text (replace-regexp-in-string
  1268. "\\(?:[^\\]\\|^\\)\\(\\\\\\)\\(?:[^%$#&{}~^_\\]\\|$\\)"
  1269. "$\\backslash$" text nil t 1))
  1270. ;; LaTeX into \LaTeX{} and TeX into \TeX{}.
  1271. (let ((case-fold-search nil)
  1272. (start 0))
  1273. (while (string-match "\\<\\(\\(?:La\\)?TeX\\)\\>" text start)
  1274. (setq text (replace-match
  1275. (format "\\%s{}" (match-string 1 text)) nil t text)
  1276. start (match-end 0))))
  1277. ;; Handle quotation marks
  1278. (setq text (org-e-latex--quotation-marks text info))
  1279. ;; Convert special strings.
  1280. (when (plist-get info :with-special-strings)
  1281. (while (string-match (regexp-quote "...") text)
  1282. (setq text (replace-match "\\ldots{}" nil t text))))
  1283. ;; Handle break preservation if required.
  1284. (when (plist-get info :preserve-breaks)
  1285. (setq text (replace-regexp-in-string "\\(\\\\\\\\\\)?[ \t]*\n" " \\\\\\\\\n"
  1286. text)))
  1287. ;; Return value.
  1288. text)
  1289. ;;;; Property Drawer
  1290. (defun org-e-latex-property-drawer (property-drawer contents info)
  1291. "Transcode a PROPERTY-DRAWER element from Org to LaTeX.
  1292. CONTENTS is nil. INFO is a plist holding contextual
  1293. information."
  1294. ;; The property drawer isn't exported but we want separating blank
  1295. ;; lines nonetheless.
  1296. "")
  1297. ;;;; Quote Block
  1298. (defun org-e-latex-quote-block (quote-block contents info)
  1299. "Transcode a QUOTE-BLOCK element from Org to LaTeX.
  1300. CONTENTS holds the contents of the block. INFO is a plist
  1301. holding contextual information."
  1302. (org-e-latex--wrap-label
  1303. quote-block
  1304. (format "\\begin{quote}\n%s\\end{quote}" contents)))
  1305. ;;;; Quote Section
  1306. (defun org-e-latex-quote-section (quote-section contents info)
  1307. "Transcode a QUOTE-SECTION element from Org to LaTeX.
  1308. CONTENTS is nil. INFO is a plist holding contextual information."
  1309. (let ((value (org-remove-indentation
  1310. (org-element-get-property :value quote-section))))
  1311. (when value (format "\\begin{verbatim}\n%s\\end{verbatim}" value))))
  1312. ;;;; Section
  1313. (defun org-e-latex-section (section contents info)
  1314. "Transcode a SECTION element from Org to LaTeX.
  1315. CONTENTS holds the contents of the section. INFO is a plist
  1316. holding contextual information."
  1317. contents)
  1318. ;;;; Radio Target
  1319. (defun org-e-latex-radio-target (radio-target text info)
  1320. "Transcode a RADIO-TARGET object from Org to LaTeX.
  1321. TEXT is the text of the target. INFO is a plist holding
  1322. contextual information."
  1323. (format "\\label{%s}%s"
  1324. (org-export-solidify-link-text
  1325. (org-element-get-property :raw-value radio-target))
  1326. text))
  1327. ;;;; Special Block
  1328. (defun org-e-latex-special-block (special-block contents info)
  1329. "Transcode a SPECIAL-BLOCK element from Org to LaTeX.
  1330. CONTENTS holds the contents of the block. INFO is a plist
  1331. holding contextual information."
  1332. (let ((type (downcase (org-element-get-property :type special-block))))
  1333. (org-e-latex--wrap-label
  1334. special-block
  1335. (format "\\begin{%s}\n%s\\end{%s}" type contents type))))
  1336. ;;;; Src Block
  1337. (defun org-e-latex-src-block (src-block contents info)
  1338. "Transcode a SRC-BLOCK element from Org to LaTeX.
  1339. CONTENTS holds the contents of the item. INFO is a plist holding
  1340. contextual information."
  1341. (let* ((lang (org-element-get-property :language src-block))
  1342. (code (org-export-handle-code src-block info))
  1343. (caption (org-element-get-property :caption src-block))
  1344. (label (org-element-get-property :name src-block))
  1345. (custom-env (and lang
  1346. (cadr (assq (intern lang)
  1347. org-e-latex-custom-lang-environments)))))
  1348. (cond
  1349. ;; No source fontification.
  1350. ((not org-e-latex-listings)
  1351. (let ((caption-str (org-e-latex--caption/label-string
  1352. caption label info))
  1353. (float-env (when caption "\\begin{figure}[H]\n%s\n\\end{figure}")))
  1354. (format (or float-env "%s")
  1355. (concat
  1356. caption-str
  1357. (format "\\begin{verbatim}\n%s\\end{verbatim}" code)))))
  1358. ;; Custom environment.
  1359. (custom-env
  1360. (format "\\begin{%s}\n%s\\end{%s}\n" custom-env code custom-env))
  1361. ;; Use minted package.
  1362. ((eq org-e-latex-listings 'minted)
  1363. (let* ((mint-lang (or (cadr (assq (intern lang) org-e-latex-minted-langs))
  1364. lang))
  1365. (float-env (when (or label caption)
  1366. (format "\\begin{listing}[H]\n%%s\n%s\\end{listing}"
  1367. (org-e-latex--caption/label-string
  1368. caption label info))))
  1369. (body (format "\\begin{minted}[%s]{%s}\n%s\\end{minted}"
  1370. (org-e-latex--make-option-string
  1371. org-e-latex-minted-options)
  1372. mint-lang code)))
  1373. (if float-env (format float-env body) body)))
  1374. ;; Use listings package.
  1375. (t
  1376. (let ((lst-lang
  1377. (or (cadr (assq (intern lang) org-e-latex-listings-langs)) lang))
  1378. (caption-str
  1379. (when caption
  1380. (let ((main (org-export-secondary-string
  1381. (car caption) 'e-latex info)))
  1382. (if (not (cdr caption)) (format "{%s}" main)
  1383. (format
  1384. "{[%s]%s}"
  1385. (org-export-secondary-string (cdr caption) 'e-latex info)
  1386. main))))))
  1387. (concat (format "\\lstset{%s}\n"
  1388. (org-e-latex--make-option-string
  1389. (append org-e-latex-listings-options
  1390. `(("language" ,lst-lang))
  1391. (when label `(("label" ,label)))
  1392. (when caption-str
  1393. `(("caption" ,caption-str))))))
  1394. (format "\\begin{lstlisting}\n%s\\end{lstlisting}" code)))))))
  1395. ;;;; Statistics Cookie
  1396. (defun org-e-latex-statistics-cookie (statistics-cookie contents info)
  1397. "Transcode a STATISTICS-COOKIE object from Org to LaTeX.
  1398. CONTENTS is nil. INFO is a plist holding contextual information."
  1399. (org-element-get-property :value statistics-cookie))
  1400. ;;;; Subscript
  1401. (defun org-e-latex-subscript (subscript contents info)
  1402. "Transcode a SUBSCRIPT object from Org to LaTeX.
  1403. CONTENTS is the contents of the object. INFO is a plist holding
  1404. contextual information."
  1405. (format (if (= (length contents) 1) "$_%s$" "$_{\\mathrm{%s}}$") contents))
  1406. ;;;; Superscript
  1407. (defun org-e-latex-superscript (superscript contents info)
  1408. "Transcode a SUPERSCRIPT object from Org to LaTeX.
  1409. CONTENTS is the contents of the object. INFO is a plist holding
  1410. contextual information."
  1411. (format (if (= (length contents) 1) "$^%s$" "$^{\\mathrm{%s}}$") contents))
  1412. ;;;; Table
  1413. (defun org-e-latex-table--format-string (table table-info info)
  1414. "Return an appropriate format string for TABLE.
  1415. TABLE-INFO is the plist containing format info about the table,
  1416. as returned by `org-export-table-format-info'. INFO is a plist
  1417. used as a communication channel.
  1418. The format string one placeholder for the body of the table."
  1419. (let* ((label (org-element-get-property :name table))
  1420. (caption (org-e-latex--caption/label-string
  1421. (org-element-get-property :caption table) label info))
  1422. (attr (mapconcat #'identity
  1423. (org-element-get-property :attr_latex table)
  1424. " "))
  1425. ;; Determine alignment string.
  1426. (alignment (org-e-latex-table--align-string attr table-info))
  1427. ;; Determine environment for the table: longtable, tabular...
  1428. (table-env (cond
  1429. ((not attr) org-e-latex-default-table-environment)
  1430. ((string-match "\\<longtable\\>" attr) "longtable")
  1431. ((string-match "\\(tabular.\\)" attr)
  1432. (org-match-string-no-properties 1 attr))
  1433. (t org-e-latex-default-table-environment)))
  1434. ;; If table is a float, determine environment: table or table*.
  1435. (float-env (cond
  1436. ((string= "longtable" table-env) nil)
  1437. ((and attr
  1438. (or (string-match (regexp-quote "table*") attr)
  1439. (string-match "\\<multicolumn\\>" attr)))
  1440. "table*")
  1441. ((or (not (string= caption "")) label) "table")))
  1442. ;; Extract others display options.
  1443. (width (and attr
  1444. (string-match "\\<width=\\(\\S-+\\)" attr)
  1445. (org-match-string-no-properties 1 attr)))
  1446. (placement (if (and attr
  1447. (string-match "\\<placement=\\(\\S-+\\)" attr))
  1448. (org-match-string-no-properties 1 attr)
  1449. (concat "["
  1450. org-e-latex-default-figure-position
  1451. "]"))))
  1452. ;; Prepare the final format string for the table.
  1453. (cond
  1454. ;; Longtable.
  1455. ((string= "longtable" table-env)
  1456. (format "\\begin{longtable}{%s}\n%s\n%%s\n%s\\end{longtable}"
  1457. alignment
  1458. (if (or (not org-e-latex-table-caption-above)
  1459. (string= "" caption))
  1460. ""
  1461. (concat (org-trim caption) "\\\\"))
  1462. (if (or org-e-latex-table-caption-above
  1463. (string= "" caption))
  1464. ""
  1465. (concat (org-trim caption) "\\\\\n"))))
  1466. ;; Others.
  1467. (t (concat (when float-env
  1468. (concat
  1469. (format "\\begin{%s}%s\n" float-env placement)
  1470. (if org-e-latex-table-caption-above caption "")))
  1471. (when org-e-latex-tables-centered "\\begin{center}\n")
  1472. (format "\\begin{%s}%s{%s}\n%%s\n\\end{%s}"
  1473. table-env
  1474. (if width (format "{%s}" width) "")
  1475. alignment
  1476. table-env)
  1477. (when org-e-latex-tables-centered "\n\\end{center}")
  1478. (when float-env
  1479. (concat (if org-e-latex-table-caption-above "" caption)
  1480. (format "\n\\end{%s}" float-env))))))))
  1481. (defun org-e-latex-table--align-string (attr table-info)
  1482. "Return an appropriate LaTeX alignment string.
  1483. ATTR is a string containing table's LaTeX specific attributes.
  1484. TABLE-INFO is the plist containing format info about the table,
  1485. as returned by `org-export-table-format-info'."
  1486. (or (and attr
  1487. (string-match "\\<align=\\(\\S-+\\)" attr)
  1488. (match-string 1 attr))
  1489. (let* ((align (copy-sequence (plist-get table-info :alignment)))
  1490. (colgroups (copy-sequence (plist-get table-info :column-groups)))
  1491. (cols (length align))
  1492. (separators (make-vector (1+ cols) "")))
  1493. ;; Ignore the first column if it's special.
  1494. (when (plist-get table-info :special-column-p)
  1495. (aset align 0 "") (aset colgroups 0 nil))
  1496. (let ((col 0))
  1497. (mapc (lambda (el)
  1498. (let ((gr (aref colgroups col)))
  1499. (when (memq gr '(start start-end))
  1500. (aset separators col "|"))
  1501. (when (memq gr '(end start-end))
  1502. (aset separators (1+ col) "|")))
  1503. (incf col))
  1504. align))
  1505. ;; Build the LaTeX specific alignment string.
  1506. (loop for al across align
  1507. for sep across separators
  1508. concat (concat sep al) into output
  1509. finally return (concat output (aref separators cols))))))
  1510. (defun org-e-latex-table (table contents info)
  1511. "Transcode a TABLE element from Org to LaTeX.
  1512. CONTENTS is nil. INFO is a plist holding contextual information."
  1513. (let ((attr (mapconcat #'identity
  1514. (org-element-get-property :attr_latex table)
  1515. " "))
  1516. (raw-table (org-element-get-property :raw-table table)))
  1517. (cond
  1518. ;; Case 1: verbatim table.
  1519. ((or org-e-latex-tables-verbatim
  1520. (and attr (string-match "\\<verbatim\\>" attr)))
  1521. (format "\\begin{verbatim}\n%s\n\\end{verbatim}"
  1522. (org-export-clean-table
  1523. raw-table
  1524. (plist-get (org-export-table-format-info raw-table)
  1525. :special-column-p))))
  1526. ;; Case 2: table.el table. Convert it using appropriate tools.
  1527. ((eq (org-element-get-property :type table) 'table.el)
  1528. (require 'table)
  1529. ;; Ensure "*org-export-table*" buffer is empty.
  1530. (and (get-buffer "*org-export-table*")
  1531. (kill-buffer (get-buffer "*org-export-table*")))
  1532. (let ((output (with-temp-buffer
  1533. (insert raw-table)
  1534. (goto-char 1)
  1535. (re-search-forward "^[ \t]*|[^|]" nil t)
  1536. (table-generate-source 'latex "*org-export-table*")
  1537. (with-current-buffer "*org-export-table*"
  1538. (org-trim (buffer-string))))))
  1539. (kill-buffer (get-buffer "*org-export-table*"))
  1540. ;; Remove left out comments.
  1541. (while (string-match "^%.*\n" output)
  1542. (setq output (replace-match "" t t output)))
  1543. ;; When the "rmlines" attribute is provided, remove all hlines
  1544. ;; but the the one separating heading from the table body.
  1545. (when (and attr (string-match "\\<rmlines\\>" attr))
  1546. (let ((n 0) (pos 0))
  1547. (while (and (< (length output) pos)
  1548. (setq pos (string-match "^\\\\hline\n?" output pos)))
  1549. (incf n)
  1550. (unless (= n 2) (setq output (replace-match "" nil nil output))))))
  1551. (if org-e-latex-tables-centered
  1552. (format "\\begin{center}\n%s\n\\end{center}" output)
  1553. output)))
  1554. ;; Case 3: Standard table.
  1555. (t
  1556. (let* ((table-info (org-export-table-format-info raw-table))
  1557. (clean-table (org-export-clean-table
  1558. raw-table (plist-get table-info :special-column-p)))
  1559. (columns-number (length (plist-get table-info :alignment))))
  1560. ;; Convert ROWS to send them to `orgtbl-to-latex'. In
  1561. ;; particular, send each cell to
  1562. ;; `org-element-parse-secondary-string' to expand any Org
  1563. ;; object within. Eventually, flesh the format string out with
  1564. ;; the table.
  1565. (format (org-e-latex-table--format-string table table-info info)
  1566. (orgtbl-to-latex
  1567. (mapcar
  1568. (lambda (row)
  1569. (if (string-match org-table-hline-regexp row)
  1570. 'hline
  1571. (mapcar
  1572. (lambda (cell)
  1573. (org-export-secondary-string
  1574. (org-element-parse-secondary-string
  1575. cell
  1576. (cdr (assq 'table org-element-string-restrictions)))
  1577. 'e-latex info))
  1578. (org-split-string row "[ \t]*|[ \t]*"))))
  1579. (org-split-string clean-table "\n"))
  1580. `(:tstart nil :tend nil
  1581. ;; Longtable environment requires specific
  1582. ;; header line end.
  1583. :hlend ,(and attr
  1584. (string-match "\\<longtable\\>" attr)
  1585. (format "\\\\
  1586. \\hline
  1587. \\endhead
  1588. \\hline\\multicolumn{%d}{r}{Continued on next page}\\\\
  1589. \\endfoot
  1590. \\endlastfoot"
  1591. columns-number))))))))))
  1592. ;;;; Target
  1593. (defun org-e-latex-target (target text info)
  1594. "Transcode a TARGET object from Org to LaTeX.
  1595. TEXT is the text of the target. INFO is a plist holding
  1596. contextual information."
  1597. (format "\\label{%s}%s"
  1598. (org-export-solidify-link-text
  1599. (org-element-get-property :raw-value target))
  1600. text))
  1601. ;;;; Time-stamp
  1602. (defun org-e-latex-time-stamp (time-stamp contents info)
  1603. "Transcode a TIME-STAMP object from Org to LaTeX.
  1604. CONTENTS is nil. INFO is a plist holding contextual
  1605. information."
  1606. (let ((value (org-element-get-property :value time-stamp))
  1607. (type (org-element-get-property :type time-stamp))
  1608. (appt-type (org-element-get-property :appt-type time-stamp)))
  1609. (concat (cond ((eq appt-type 'scheduled)
  1610. (format "\\textbf{\\textsc{%s}} " org-scheduled-string))
  1611. ((eq appt-type 'deadline)
  1612. (format "\\textbf{\\textsc{%s}} " org-deadline-string))
  1613. ((eq appt-type 'closed)
  1614. (format "\\textbf{\\textsc{%s}} " org-closed-string)))
  1615. (cond ((memq type '(active active-range))
  1616. (format org-e-latex-active-timestamp-format value))
  1617. ((memq type '(inactive inactive-range))
  1618. (format org-e-latex-inactive-timestamp-format value))
  1619. (t
  1620. (format org-e-latex-diary-timestamp-format value))))))
  1621. ;;;; Verbatim
  1622. (defun org-e-latex-verbatim (verbatim contents info)
  1623. "Transcode a VERBATIM object from Org to LaTeX.
  1624. CONTENTS is nil. INFO is a plist used as a communication
  1625. channel."
  1626. (let ((fmt (cdr (assoc (org-element-get-property :marker verbatim)
  1627. org-e-latex-emphasis-alist)))
  1628. (value (org-element-get-property :value verbatim)))
  1629. (cond
  1630. ;; Handle the `verb' special case.
  1631. ((eq 'verb fmt)
  1632. (let ((separator (org-e-latex--find-verb-separator value)))
  1633. (concat "\\verb" separator value separator)))
  1634. ;; Handle the `protectedtexttt' special case.
  1635. ((eq 'protectedtexttt fmt)
  1636. (let ((start 0)
  1637. (trans '(("\\" . "\\textbackslash{}")
  1638. ("~" . "\\textasciitilde{}")
  1639. ("^" . "\\textasciicircum{}")))
  1640. (rtn "")
  1641. char)
  1642. (while (string-match "[\\{}$%&_#~^]" value)
  1643. (setq char (match-string 0 value))
  1644. (if (> (match-beginning 0) 0)
  1645. (setq rtn (concat rtn (substring value 0 (match-beginning 0)))))
  1646. (setq value (substring value (1+ (match-beginning 0))))
  1647. (setq char (or (cdr (assoc char trans)) (concat "\\" char))
  1648. rtn (concat rtn char)))
  1649. (setq value (concat rtn value)
  1650. fmt "\\texttt{%s}")
  1651. (while (string-match "--" value)
  1652. (setq value (replace-match "-{}-" t t value)))
  1653. (format fmt value)))
  1654. ;; Else use format string.
  1655. (t (format fmt value)))))
  1656. ;;;; Verse Block
  1657. (defun org-e-latex-verse-block (verse-block contents info)
  1658. "Transcode a VERSE-BLOCK element from Org to LaTeX.
  1659. CONTENTS is nil. INFO is a plist holding contextual information."
  1660. (org-e-latex--wrap-label
  1661. verse-block
  1662. ;; In a verse environment, add a line break to each newline
  1663. ;; character and change each white space at beginning of a line
  1664. ;; into a space of 1 em. Also change each blank line with
  1665. ;; a vertical space of 1 em.
  1666. (progn
  1667. (setq contents (replace-regexp-in-string
  1668. "^ *\\\\\\\\$" "\\\\vspace*{1em}"
  1669. (replace-regexp-in-string
  1670. "\\(\\\\\\\\\\)?[ \t]*\n" " \\\\\\\\\n"
  1671. (org-remove-indentation
  1672. (org-export-secondary-string
  1673. (org-element-get-property :value verse-block)
  1674. 'e-latex info)))))
  1675. (while (string-match "^[ \t]+" contents)
  1676. (let ((new-str (format "\\hspace*{%dem}"
  1677. (length (match-string 0 contents)))))
  1678. (setq contents (replace-match new-str nil t contents))))
  1679. (format "\\begin{verse}\n%s\\end{verse}" contents))))
  1680. ;;; Interactive functions
  1681. (defun org-e-latex-export-to-latex
  1682. (&optional subtreep visible-only body-only ext-plist pub-dir)
  1683. "Export current buffer to a LaTeX file.
  1684. If narrowing is active in the current buffer, only export its
  1685. narrowed part.
  1686. If a region is active, export that region.
  1687. When optional argument SUBTREEP is non-nil, export the sub-tree
  1688. at point, extracting information from the headline properties
  1689. first.
  1690. When optional argument VISIBLE-ONLY is non-nil, don't export
  1691. contents of hidden elements.
  1692. When optional argument BODY-ONLY is non-nil, only write code
  1693. between \"\\begin{document}\" and \"\\end{document}\".
  1694. EXT-PLIST, when provided, is a property list with external
  1695. parameters overriding Org default settings, but still inferior to
  1696. file-local settings.
  1697. When optional argument PUB-DIR is set, use it as the publishing
  1698. directory.
  1699. Return output file's name."
  1700. (interactive)
  1701. (let ((outfile (org-export-output-file-name ".tex" subtreep pub-dir)))
  1702. (org-export-to-file
  1703. 'e-latex outfile subtreep visible-only body-only ext-plist)))
  1704. (defun org-e-latex-export-to-pdf
  1705. (&optional subtreep visible-only body-only ext-plist pub-dir)
  1706. "Export current buffer to LaTeX then process through to PDF.
  1707. If narrowing is active in the current buffer, only export its
  1708. narrowed part.
  1709. If a region is active, export that region.
  1710. When optional argument SUBTREEP is non-nil, export the sub-tree
  1711. at point, extracting information from the headline properties
  1712. first.
  1713. When optional argument VISIBLE-ONLY is non-nil, don't export
  1714. contents of hidden elements.
  1715. When optional argument BODY-ONLY is non-nil, only write code
  1716. between \"\\begin{document}\" and \"\\end{document}\".
  1717. EXT-PLIST, when provided, is a property list with external
  1718. parameters overriding Org default settings, but still inferior to
  1719. file-local settings.
  1720. When optional argument PUB-DIR is set, use it as the publishing
  1721. directory.
  1722. Return PDF file's name."
  1723. (interactive)
  1724. (org-e-latex-compile
  1725. (org-e-latex-export-to-latex
  1726. subtreep visible-only body-only ext-plist pub-dir)))
  1727. (defun org-e-latex-compile (texfile)
  1728. "Compile a TeX file.
  1729. TEXFILE is the name of the file being compiled. Processing is
  1730. done through the command specified in `org-e-latex-pdf-process'.
  1731. Return PDF file name or an error if it couldn't be produced."
  1732. (let* ((wconfig (current-window-configuration))
  1733. (texfile (file-truename texfile))
  1734. (base (file-name-sans-extension texfile))
  1735. errors)
  1736. (message (format "Processing LaTeX file %s ..." texfile))
  1737. (unwind-protect
  1738. (progn
  1739. (cond
  1740. ;; A function is provided: Apply it.
  1741. ((functionp org-latex-to-pdf-process)
  1742. (funcall org-latex-to-pdf-process (shell-quote-argument texfile)))
  1743. ;; A list is provided: Replace %b, %f and %o with appropriate
  1744. ;; values in each command before applying it. Output is
  1745. ;; redirected to "*Org PDF LaTeX Output*" buffer.
  1746. ((consp org-e-latex-pdf-process)
  1747. (let* ((out-dir (or (file-name-directory texfile) "./"))
  1748. (outbuf (get-buffer-create "*Org PDF LaTeX Output*")))
  1749. (mapc
  1750. (lambda (command)
  1751. (shell-command
  1752. (replace-regexp-in-string
  1753. "%b" (shell-quote-argument base)
  1754. (replace-regexp-in-string
  1755. "%f" (shell-quote-argument texfile)
  1756. (replace-regexp-in-string
  1757. "%o" (shell-quote-argument out-dir) command)))
  1758. outbuf))
  1759. org-e-latex-pdf-process)
  1760. ;; Collect standard errors from output buffer.
  1761. (setq errors (org-e-latex-collect-errors outbuf))))
  1762. (t (error "No valid command to process to PDF")))
  1763. (let ((pdffile (concat base ".pdf")))
  1764. ;; Check for process failure. Provide collected errors if
  1765. ;; possible.
  1766. (if (not (file-exists-p pdffile))
  1767. (error (concat (format "PDF file %s wasn't produced" pdffile)
  1768. (when errors (concat ": " errors))))
  1769. ;; Else remove log files, when specified, and signal end of
  1770. ;; process to user, along with any error encountered.
  1771. (when org-e-latex-remove-logfiles
  1772. (dolist (ext org-e-latex-logfiles-extensions)
  1773. (let ((file (concat base "." ext)))
  1774. (when (file-exists-p file) (delete-file file)))))
  1775. (message (concat "Process completed"
  1776. (if (not errors) "."
  1777. (concat " with errors: " errors)))))
  1778. ;; Return output file name.
  1779. pdffile))
  1780. (set-window-configuration wconfig))))
  1781. (defun org-e-latex-collect-errors (buffer)
  1782. "Collect some kind of errors from \"pdflatex\" command output.
  1783. BUFFER is the buffer containing output.
  1784. Return collected error types as a string, or nil if there was
  1785. none."
  1786. (with-current-buffer buffer
  1787. (save-excursion
  1788. (goto-char (point-max))
  1789. ;; Find final "pdflatex" run.
  1790. (when (re-search-backward "^[ \t]*This is pdf.*?TeX.*?Version" nil t)
  1791. (let ((case-fold-search t)
  1792. (errors ""))
  1793. (when (save-excursion
  1794. (re-search-forward "Reference.*?undefined" nil t))
  1795. (setq errors (concat errors " [undefined reference]")))
  1796. (when (save-excursion
  1797. (re-search-forward "Citation.*?undefined" nil t))
  1798. (setq errors (concat errors " [undefined citation]")))
  1799. (when (save-excursion
  1800. (re-search-forward "Undefined control sequence" nil t))
  1801. (setq errors (concat errors " [undefined control sequence]")))
  1802. (when (save-excursion
  1803. (re-search-forward "^! LaTeX.*?Error" nil t))
  1804. (setq errors (concat errors " [LaTeX error]")))
  1805. (when (save-excursion
  1806. (re-search-forward "^! Package.*?Error" nil t))
  1807. (setq errors (concat errors " [package error]")))
  1808. (and (org-string-nw-p errors) (org-trim errors)))))))
  1809. (provide 'org-e-latex)
  1810. ;;; org-e-latex.el ends here