ox-koma-letter.el 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. ;;; ox-koma-letter.el --- KOMA Scrlttr2 Back-End for Org Export Engine
  2. ;; Copyright (C) 2007-2015 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <n.goaziou AT gmail DOT com>
  4. ;; Alan Schmitt <alan.schmitt AT polytechnique DOT org>
  5. ;; Viktor Rosenfeld <listuser36 AT gmail DOT com>
  6. ;; Rasmus Pank Roulund <emacs AT pank DOT eu>
  7. ;; Keywords: org, wp, tex
  8. ;; This program is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; This program is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;;
  20. ;; This library implements a KOMA Scrlttr2 back-end, derived from the
  21. ;; LaTeX one.
  22. ;;
  23. ;; Depending on the desired output format, three commands are provided
  24. ;; for export: `org-koma-letter-export-as-latex' (temporary buffer),
  25. ;; `org-koma-letter-export-to-latex' ("tex" file) and
  26. ;; `org-koma-letter-export-to-pdf' ("pdf" file).
  27. ;;
  28. ;; On top of buffer keywords supported by `latex' back-end (see
  29. ;; `org-latex-options-alist'), this back-end introduces the following
  30. ;; keywords:
  31. ;; - CLOSING: see `org-koma-letter-closing',
  32. ;; - FROM_ADDRESS: see `org-koma-letter-from-address',
  33. ;; - LCO: see `org-koma-letter-class-option-file',
  34. ;; - OPENING: see `org-koma-letter-opening',
  35. ;; - PHONE_NUMBER: see `org-koma-letter-phone-number',
  36. ;; - SIGNATURE: see `org-koma-letter-signature',
  37. ;; - PLACE: see `org-koma-letter-place',
  38. ;; - TO_ADDRESS: If unspecified this is set to "\mbox{}".
  39. ;;
  40. ;; TO_ADDRESS and FROM_ADDRESS can also be specified using heading
  41. ;; with the special tags specified in
  42. ;; `org-koma-letter-special-tags-in-letter', namely "to" and "from".
  43. ;; LaTeX line breaks are not necessary if using these headings. If
  44. ;; both a headline and a keyword specify a to or from address the
  45. ;; value is determined in accordance with
  46. ;; `org-koma-letter-prefer-special-headings'.
  47. ;;
  48. ;; A number of OPTIONS settings can be set to change which contents is
  49. ;; exported.
  50. ;; - backaddress (see `org-koma-letter-use-backaddress')
  51. ;; - foldmarks (see `org-koma-letter-use-foldmarks')
  52. ;; - phone (see `org-koma-letter-use-phone')
  53. ;; - email (see `org-koma-letter-use-email')
  54. ;; - place (see `org-koma-letter-use-place')
  55. ;; - subject, a list of format options
  56. ;; (see `org-koma-letter-subject-format')
  57. ;; - after-closing-order, a list of the ordering of headings with
  58. ;; special tags after closing (see
  59. ;; `org-koma-letter-special-tags-after-closing')
  60. ;; - after-letter-order, as above, but after the end of the letter
  61. ;; (see `org-koma-letter-special-tags-after-letter').
  62. ;;
  63. ;; The following variables works differently from the main LaTeX class
  64. ;; - AUTHOR: Default to user-full-name but may be disabled.
  65. ;; (See also `org-koma-letter-author'),
  66. ;; - EMAIL: Same as AUTHOR. (see also `org-koma-letter-email'),
  67. ;;
  68. ;; Headlines are in general ignored. However, headlines with special
  69. ;; tags can be used for specified contents like postscript (ps),
  70. ;; carbon copy (cc), enclosures (encl) and code to be inserted after
  71. ;; \end{letter} (after_letter). Specials tags are defined in
  72. ;; `org-koma-letter-special-tags-after-closing' and
  73. ;; `org-koma-letter-special-tags-after-letter'. Currently members of
  74. ;; `org-koma-letter-special-tags-after-closing' used as macros and the
  75. ;; content of the headline is the argument.
  76. ;;
  77. ;; Headlines with two and from may also be used rather than the
  78. ;; keyword approach described above. If both a keyword and a headline
  79. ;; with information is present precedence is determined by
  80. ;; `org-koma-letter-prefer-special-headings'.
  81. ;;
  82. ;; You need an appropriate association in `org-latex-classes' in order
  83. ;; to use the KOMA Scrlttr2 class. By default, a sparse scrlttr2
  84. ;; class is provided: "default-koma-letter". You can also add you own
  85. ;; letter class. For instance:
  86. ;;
  87. ;; (add-to-list 'org-latex-classes
  88. ;; '("my-letter"
  89. ;; "\\documentclass\[%
  90. ;; DIV=14,
  91. ;; fontsize=12pt,
  92. ;; parskip=half,
  93. ;; subject=titled,
  94. ;; backaddress=false,
  95. ;; fromalign=left,
  96. ;; fromemail=true,
  97. ;; fromphone=true\]\{scrlttr2\}
  98. ;; \[DEFAULT-PACKAGES]
  99. ;; \[PACKAGES]
  100. ;; \[EXTRA]"))
  101. ;;
  102. ;; Then, in your Org document, be sure to require the proper class
  103. ;; with:
  104. ;;
  105. ;; #+LATEX_CLASS: my-letter
  106. ;;
  107. ;; Or by setting `org-koma-letter-default-class'.
  108. ;;
  109. ;; You may have to load (LaTeX) Babel as well, e.g., by adding
  110. ;; it to `org-latex-packages-alist',
  111. ;;
  112. ;; (add-to-list 'org-latex-packages-alist '("AUTO" "babel" nil))
  113. ;;; Code:
  114. (require 'ox-latex)
  115. ;; Install a default letter class.
  116. (unless (assoc "default-koma-letter" org-latex-classes)
  117. (add-to-list 'org-latex-classes
  118. '("default-koma-letter" "\\documentclass[11pt]{scrlttr2}")))
  119. ;;; User-Configurable Variables
  120. (defgroup org-export-koma-letter nil
  121. "Options for exporting to KOMA scrlttr2 class in LaTeX export."
  122. :tag "Org Koma-Letter"
  123. :group 'org-export)
  124. (defcustom org-koma-letter-class-option-file "NF"
  125. "Letter Class Option File.
  126. This option can also be set with the LCO keyword."
  127. :group 'org-export-koma-letter
  128. :type 'string)
  129. (defcustom org-koma-letter-author 'user-full-name
  130. "Sender's name.
  131. This variable defaults to calling the function `user-full-name'
  132. which just returns the current function `user-full-name'.
  133. Alternatively a string, nil or a function may be given.
  134. Functions must return a string.
  135. This option can also be set with the AUTHOR keyword."
  136. :group 'org-export-koma-letter
  137. :type '(radio (function-item user-full-name)
  138. (string)
  139. (function)
  140. (const :tag "Do not export author" nil)))
  141. (defcustom org-koma-letter-email 'org-koma-letter-email
  142. "Sender's email address.
  143. This variable defaults to the value `org-koma-letter-email' which
  144. returns `user-mail-address'. Alternatively a string, nil or
  145. a function may be given. Functions must return a string.
  146. This option can also be set with the EMAIL keyword."
  147. :group 'org-export-koma-letter
  148. :type '(radio (function-item org-koma-letter-email)
  149. (string)
  150. (function)
  151. (const :tag "Do not export email" nil)))
  152. (defcustom org-koma-letter-from-address ""
  153. "Sender's address, as a string.
  154. This option can also be set with one or more FROM_ADDRESS
  155. keywords."
  156. :group 'org-export-koma-letter
  157. :type 'string)
  158. (defcustom org-koma-letter-phone-number ""
  159. "Sender's phone number, as a string.
  160. This option can also be set with the PHONE_NUMBER keyword."
  161. :group 'org-export-koma-letter
  162. :type 'string)
  163. (defcustom org-koma-letter-place ""
  164. "Place from which the letter is sent, as a string.
  165. This option can also be set with the PLACE keyword."
  166. :group 'org-export-koma-letter
  167. :type 'string)
  168. (defcustom org-koma-letter-opening ""
  169. "Letter's opening, as a string.
  170. This option can also be set with the OPENING keyword. Moreover,
  171. when:
  172. (1) Either `org-koma-letter-prefer-special-headings' is non-nil
  173. or the CLOSING keyword is empty
  174. (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
  175. (3) the letter contains a headline without a special
  176. tag (e.g. \"to\" or \"ps\");
  177. then the opening will be implicitly set as the untagged headline title."
  178. :group 'org-export-koma-letter
  179. :type 'string)
  180. (defcustom org-koma-letter-closing ""
  181. "Letter's closing, as a string.
  182. This option can also be set with the CLOSING keyword. Moreover,
  183. when:
  184. (1) Either `org-koma-letter-prefer-special-headings' is non-nil
  185. or the CLOSING keyword is empty;
  186. (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
  187. (3) the letter contains a headline with the special
  188. tag \"closing\";
  189. then the opening will be set as the title of the closing special
  190. heading title."
  191. :group 'org-export-koma-letter
  192. :type 'string)
  193. (defcustom org-koma-letter-signature ""
  194. "Signature, as a string.
  195. This option can also be set with the SIGNATURE keyword.
  196. Moreover, when:
  197. (1) Either `org-koma-letter-prefer-special-headings' is non-nil
  198. or there is no CLOSING keyword or the CLOSING keyword is empty;
  199. (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
  200. (3) the letter contains a headline with the special
  201. tag \"closing\";
  202. then the signature will be set as the content of the
  203. closing special heading.
  204. Note if the content is empty the signature will not be set."
  205. :group 'org-export-koma-letter
  206. :type 'string)
  207. (defcustom org-koma-letter-prefer-special-headings nil
  208. "Non-nil means prefer headlines over keywords for TO and FROM.
  209. This option can also be set with the OPTIONS keyword, e.g.:
  210. \"special-headings:t\"."
  211. :group 'org-export-koma-letter
  212. :type 'boolean)
  213. (defcustom org-koma-letter-subject-format t
  214. "Non-nil means include the subject.
  215. Support formatting options.
  216. When t, insert a subject using default options. When nil, do not
  217. insert a subject at all. It can also be a list of symbols among
  218. the following ones:
  219. `afteropening' Subject after opening
  220. `beforeopening' Subject before opening
  221. `centered' Subject centered
  222. `left' Subject left-justified
  223. `right' Subject right-justified
  224. `titled' Add title/description to subject
  225. `underlined' Set subject underlined
  226. `untitled' Do not add title/description to subject
  227. Please refer to the KOMA-script manual (Table 4.16. in the
  228. English manual of 2012-07-22).
  229. This option can also be set with the OPTIONS keyword, e.g.:
  230. \"subject:(underlined centered)\"."
  231. :type
  232. '(choice
  233. (const :tag "No export" nil)
  234. (const :tag "Default options" t)
  235. (set :tag "Configure options"
  236. (const :tag "Subject after opening" afteropening)
  237. (const :tag "Subject before opening" beforeopening)
  238. (const :tag "Subject centered" centered)
  239. (const :tag "Subject left-justified" left)
  240. (const :tag "Subject right-justified" right)
  241. (const :tag "Add title or description to subject" underlined)
  242. (const :tag "Set subject underlined" titled)
  243. (const :tag "Do not add title or description to subject" untitled)))
  244. :group 'org-export-koma-letter)
  245. (defcustom org-koma-letter-use-backaddress nil
  246. "Non-nil prints return address in line above to address.
  247. This option can also be set with the OPTIONS keyword, e.g.:
  248. \"backaddress:t\"."
  249. :group 'org-export-koma-letter
  250. :type 'boolean)
  251. (defcustom org-koma-letter-use-foldmarks t
  252. "Configure appearance of folding marks.
  253. When t, activate default folding marks. When nil, do not insert
  254. folding marks at all. It can also be a list of symbols among the
  255. following ones:
  256. `B' Activate upper horizontal mark on left paper edge
  257. `b' Deactivate upper horizontal mark on left paper edge
  258. `H' Activate all horizontal marks on left paper edge
  259. `h' Deactivate all horizontal marks on left paper edge
  260. `L' Activate left vertical mark on upper paper edge
  261. `l' Deactivate left vertical mark on upper paper edge
  262. `M' Activate middle horizontal mark on left paper edge
  263. `m' Deactivate middle horizontal mark on left paper edge
  264. `P' Activate punch or center mark on left paper edge
  265. `p' Deactivate punch or center mark on left paper edge
  266. `T' Activate lower horizontal mark on left paper edge
  267. `t' Deactivate lower horizontal mark on left paper edge
  268. `V' Activate all vertical marks on upper paper edge
  269. `v' Deactivate all vertical marks on upper paper edge
  270. This option can also be set with the OPTIONS keyword, e.g.:
  271. \"foldmarks:(b l m t)\"."
  272. :group 'org-export-koma-letter
  273. :type '(choice
  274. (const :tag "Activate default folding marks" t)
  275. (const :tag "Deactivate folding marks" nil)
  276. (set
  277. :tag "Configure folding marks"
  278. (const :tag "Activate upper horizontal mark on left paper edge" B)
  279. (const :tag "Deactivate upper horizontal mark on left paper edge" b)
  280. (const :tag "Activate all horizontal marks on left paper edge" H)
  281. (const :tag "Deactivate all horizontal marks on left paper edge" h)
  282. (const :tag "Activate left vertical mark on upper paper edge" L)
  283. (const :tag "Deactivate left vertical mark on upper paper edge" l)
  284. (const :tag "Activate middle horizontal mark on left paper edge" M)
  285. (const :tag "Deactivate middle horizontal mark on left paper edge" m)
  286. (const :tag "Activate punch or center mark on left paper edge" P)
  287. (const :tag "Deactivate punch or center mark on left paper edge" p)
  288. (const :tag "Activate lower horizontal mark on left paper edge" T)
  289. (const :tag "Deactivate lower horizontal mark on left paper edge" t)
  290. (const :tag "Activate all vertical marks on upper paper edge" V)
  291. (const :tag "Deactivate all vertical marks on upper paper edge" v))))
  292. (defcustom org-koma-letter-use-phone nil
  293. "Non-nil prints sender's phone number.
  294. This option can also be set with the OPTIONS keyword, e.g.:
  295. \"phone:t\"."
  296. :group 'org-export-koma-letter
  297. :type 'boolean)
  298. (defcustom org-koma-letter-use-email nil
  299. "Non-nil prints sender's email address.
  300. This option can also be set with the OPTIONS keyword, e.g.:
  301. \"email:t\"."
  302. :group 'org-export-koma-letter
  303. :type 'boolean)
  304. (defcustom org-koma-letter-use-place t
  305. "Non-nil prints the letter's place next to the date.
  306. This option can also be set with the OPTIONS keyword, e.g.:
  307. \"place:nil\"."
  308. :group 'org-export-koma-letter
  309. :type 'boolean)
  310. (defcustom org-koma-letter-default-class "default-koma-letter"
  311. "Default class for `org-koma-letter'.
  312. The value must be a member of `org-latex-classes'."
  313. :group 'org-export-koma-letter
  314. :type 'string)
  315. (defcustom org-koma-letter-headline-is-opening-maybe t
  316. "Non-nil means a headline may be used as an opening and closing.
  317. See also `org-koma-letter-opening' and
  318. `org-koma-letter-closing'."
  319. :group 'org-export-koma-letter
  320. :type 'boolean)
  321. (defcustom org-koma-letter-prefer-subject nil
  322. "Non-nil means title should be interpreted as subject if subject is missing.
  323. This option can also be set with the OPTIONS keyword,
  324. e.g. \"title-subject:t\"."
  325. :group 'org-export-koma-letter
  326. :type 'boolean)
  327. (defconst org-koma-letter-special-tags-in-letter '(to from closing)
  328. "Header tags related to the letter itself.")
  329. (defconst org-koma-letter-special-tags-after-closing '(ps encl cc)
  330. "Header tags to be inserted after closing.")
  331. (defconst org-koma-letter-special-tags-after-letter '(after_letter)
  332. "Header tags to be inserted after closing.")
  333. (defvar org-koma-letter-special-contents nil
  334. "Holds special content temporarily.")
  335. (make-obsolete-variable 'org-koma-letter-use-title
  336. 'org-export-with-title
  337. "25.1" 'set)
  338. ;;; Define Back-End
  339. (org-export-define-derived-backend 'koma-letter 'latex
  340. :options-alist
  341. '((:latex-class "LATEX_CLASS" nil org-koma-letter-default-class t)
  342. (:lco "LCO" nil org-koma-letter-class-option-file)
  343. (:author "AUTHOR" nil (org-koma-letter--get-value org-koma-letter-author) parse)
  344. (:author-changed-in-buffer-p "AUTHOR" nil nil t)
  345. (:from-address "FROM_ADDRESS" nil org-koma-letter-from-address newline)
  346. (:phone-number "PHONE_NUMBER" nil org-koma-letter-phone-number)
  347. (:email "EMAIL" nil (org-koma-letter--get-value org-koma-letter-email) t)
  348. (:to-address "TO_ADDRESS" nil nil newline)
  349. (:place "PLACE" nil org-koma-letter-place)
  350. (:subject "SUBJECT" nil nil parse)
  351. (:opening "OPENING" nil org-koma-letter-opening parse)
  352. (:closing "CLOSING" nil org-koma-letter-closing parse)
  353. (:signature "SIGNATURE" nil org-koma-letter-signature newline)
  354. (:special-headings nil "special-headings"
  355. org-koma-letter-prefer-special-headings)
  356. (:special-tags nil nil (append
  357. org-koma-letter-special-tags-in-letter
  358. org-koma-letter-special-tags-after-closing
  359. org-koma-letter-special-tags-after-letter))
  360. (:with-after-closing nil "after-closing-order"
  361. org-koma-letter-special-tags-after-closing)
  362. (:with-after-letter nil "after-letter-order"
  363. org-koma-letter-special-tags-after-letter)
  364. (:with-backaddress nil "backaddress" org-koma-letter-use-backaddress)
  365. (:with-email nil "email" org-koma-letter-use-email)
  366. (:with-foldmarks nil "foldmarks" org-koma-letter-use-foldmarks)
  367. (:with-phone nil "phone" org-koma-letter-use-phone)
  368. (:with-place nil "place" org-koma-letter-use-place)
  369. (:with-subject nil "subject" org-koma-letter-subject-format)
  370. (:with-title-as-subject nil "title-subject" org-koma-letter-prefer-subject)
  371. (:with-headline-opening nil nil org-koma-letter-headline-is-opening-maybe)
  372. ;; Special properties non-nil when a setting happened in buffer.
  373. ;; They are used to prioritize in-buffer settings over "lco"
  374. ;; files. See `org-koma-letter-template'.
  375. (:inbuffer-author "AUTHOR" nil 'koma-letter:empty)
  376. (:inbuffer-email "EMAIL" nil 'koma-letter:empty)
  377. (:inbuffer-phone-number "PHONE_NUMBER" nil 'koma-letter:empty)
  378. (:inbuffer-place "PLACE" nil 'koma-letter:empty)
  379. (:inbuffer-signature "SIGNATURE" nil 'koma-letter:empty)
  380. (:inbuffer-with-backaddress nil "backaddress" 'koma-letter:empty)
  381. (:inbuffer-with-email nil "email" 'koma-letter:empty)
  382. (:inbuffer-with-foldmarks nil "foldmarks" 'koma-letter:empty)
  383. (:inbuffer-with-phone nil "phone" 'koma-letter:empty)
  384. (:inbuffer-with-place nil "place" 'koma-letter:empty))
  385. :translate-alist '((export-block . org-koma-letter-export-block)
  386. (export-snippet . org-koma-letter-export-snippet)
  387. (headline . org-koma-letter-headline)
  388. (keyword . org-koma-letter-keyword)
  389. (template . org-koma-letter-template))
  390. :menu-entry
  391. '(?k "Export with KOMA Scrlttr2"
  392. ((?L "As LaTeX buffer" org-koma-letter-export-as-latex)
  393. (?l "As LaTeX file" org-koma-letter-export-to-latex)
  394. (?p "As PDF file" org-koma-letter-export-to-pdf)
  395. (?o "As PDF file and open"
  396. (lambda (a s v b)
  397. (if a (org-koma-letter-export-to-pdf t s v b)
  398. (org-open-file (org-koma-letter-export-to-pdf nil s v b))))))))
  399. ;;; Helper functions
  400. (defun org-koma-letter-email ()
  401. "Return the current `user-mail-address'."
  402. user-mail-address)
  403. ;; The following is taken from/inspired by ox-grof.el
  404. ;; Thanks, Luis!
  405. (defun org-koma-letter--get-tagged-contents (key)
  406. "Get contents from a headline tagged with KEY.
  407. The contents is stored in `org-koma-letter-special-contents'."
  408. (cdr (assoc-string (org-koma-letter--get-value key)
  409. org-koma-letter-special-contents)))
  410. (defun org-koma-letter--get-value (value)
  411. "Turn value into a string whenever possible.
  412. Determines if VALUE is nil, a string, a function or a symbol and
  413. return a string or nil."
  414. (when value
  415. (cond ((stringp value) value)
  416. ((functionp value) (funcall value))
  417. ((symbolp value) (symbol-name value))
  418. (t value))))
  419. (defun org-koma-letter--special-contents-as-macro
  420. (keywords &optional keep-newlines no-tag)
  421. "Process KEYWORDS members of `org-koma-letter-special-contents'.
  422. KEYWORDS is a list of symbols. Return them as a string to be
  423. formatted.
  424. The function is used for inserting content of special headings
  425. such as PS.
  426. If KEEP-NEWLINES is non-nil leading and trailing newlines are not
  427. removed. If NO-TAG is non-nil the content in
  428. `org-koma-letter-special-contents' are not wrapped in a macro
  429. named whatever the members of KEYWORDS are called."
  430. (mapconcat
  431. (lambda (keyword)
  432. (let* ((name (org-koma-letter--get-value keyword))
  433. (value (org-koma-letter--get-tagged-contents name)))
  434. (cond ((not value) nil)
  435. (no-tag (if keep-newlines value (org-trim value)))
  436. (t (format "\\%s{%s}\n"
  437. name
  438. (if keep-newlines value (org-trim value)))))))
  439. keywords
  440. ""))
  441. (defun org-koma-letter--determine-to-and-from (info key)
  442. "Given INFO determine KEY for the letter.
  443. KEY should be `to' or `from'.
  444. `ox-koma-letter' allows two ways to specify TO and FROM. If both
  445. are present return the preferred one as determined by
  446. `org-koma-letter-prefer-special-headings'."
  447. (let ((option (org-string-nw-p
  448. (plist-get info (if (eq key 'to) :to-address :from-address))))
  449. (headline (org-koma-letter--get-tagged-contents key)))
  450. (replace-regexp-in-string
  451. "\n" "\\\\\\\\\n"
  452. (org-trim
  453. (if (plist-get info :special-headings) (or headline option "")
  454. (or option headline ""))))))
  455. ;;; Transcode Functions
  456. ;;;; Export Block
  457. (defun org-koma-letter-export-block (export-block contents info)
  458. "Transcode an EXPORT-BLOCK element into KOMA Scrlttr2 code.
  459. CONTENTS is nil. INFO is a plist used as a communication
  460. channel."
  461. (when (member (org-element-property :type export-block) '("KOMA-LETTER" "LATEX"))
  462. (org-remove-indentation (org-element-property :value export-block))))
  463. ;;;; Export Snippet
  464. (defun org-koma-letter-export-snippet (export-snippet contents info)
  465. "Transcode an EXPORT-SNIPPET object into KOMA Scrlttr2 code.
  466. CONTENTS is nil. INFO is a plist used as a communication
  467. channel."
  468. (when (memq (org-export-snippet-backend export-snippet) '(latex koma-letter))
  469. (org-element-property :value export-snippet)))
  470. ;;;; Keyword
  471. (defun org-koma-letter-keyword (keyword contents info)
  472. "Transcode a KEYWORD element into KOMA Scrlttr2 code.
  473. CONTENTS is nil. INFO is a plist used as a communication
  474. channel."
  475. (let ((key (org-element-property :key keyword))
  476. (value (org-element-property :value keyword)))
  477. ;; Handle specifically KOMA-LETTER keywords. Otherwise, fallback
  478. ;; to `latex' back-end.
  479. (if (equal key "KOMA-LETTER") value
  480. (org-export-with-backend 'latex keyword contents info))))
  481. ;; Headline
  482. (defun org-koma-letter-headline (headline contents info)
  483. "Transcode a HEADLINE element from Org to LaTeX.
  484. CONTENTS holds the contents of the headline. INFO is a plist
  485. holding contextual information.
  486. Note that if a headline is tagged with a tag from
  487. `org-koma-letter-special-tags' it will not be exported, but
  488. stored in `org-koma-letter-special-contents' and included at the
  489. appropriate place."
  490. (let ((special-tag (org-koma-letter--special-tag headline info)))
  491. (if (not special-tag)
  492. contents
  493. (push (cons special-tag contents) org-koma-letter-special-contents)
  494. "")))
  495. (defun org-koma-letter--special-tag (headline info)
  496. "Non-nil if HEADLINE is a special headline.
  497. INFO is a plist holding contextual information. Return first
  498. special tag headline."
  499. (let ((special-tags (plist-get info :special-tags)))
  500. (catch 'exit
  501. (dolist (tag (org-export-get-tags headline info))
  502. (let ((tag (assoc-string tag special-tags)))
  503. (when tag (throw 'exit tag)))))))
  504. (defun org-koma-letter--keyword-or-headline (plist-key pred info)
  505. "Return the correct version of opening or closing.
  506. PLIST-KEY should be a key in info, typically :opening
  507. or :closing. PRED is a predicate run on headline to determine
  508. which title to use which takes two arguments, a headline element
  509. and an info plist. INFO is a plist holding contextual
  510. information. Return the preferred candidate for the exported of
  511. PLIST-KEY."
  512. (let* ((keyword-candidate (plist-get info plist-key))
  513. (headline-candidate (when (and (plist-get info :with-headline-opening)
  514. (or (plist-get info :special-headings)
  515. (not keyword-candidate)))
  516. (org-element-map (plist-get info :parse-tree)
  517. 'headline
  518. (lambda (head)
  519. (when (funcall pred head info)
  520. (org-element-property :title head)))
  521. info t))))
  522. (org-export-data (or headline-candidate keyword-candidate "") info)))
  523. ;;;; Template
  524. (defun org-koma-letter-template (contents info)
  525. "Return complete document string after KOMA Scrlttr2 conversion.
  526. CONTENTS is the transcoded contents string. INFO is a plist
  527. holding export options."
  528. (concat
  529. ;; Time-stamp.
  530. (and (plist-get info :time-stamp-file)
  531. (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
  532. ;; LaTeX compiler
  533. (org-latex--insert-compiler info)
  534. ;; Document class and packages.
  535. (org-latex--make-preamble info)
  536. ;; Settings. They can come from three locations, in increasing
  537. ;; order of precedence: global variables, LCO files and in-buffer
  538. ;; settings. Thus, we first insert settings coming from global
  539. ;; variables, then we insert LCO files, and, eventually, we insert
  540. ;; settings coming from buffer keywords.
  541. (org-koma-letter--build-settings 'global info)
  542. (mapconcat #'(lambda (file) (format "\\LoadLetterOption{%s}\n" file))
  543. (org-split-string (or (plist-get info :lco) "") " ")
  544. "")
  545. (org-koma-letter--build-settings 'buffer info)
  546. ;; From address.
  547. (let ((from-address (org-koma-letter--determine-to-and-from info 'from)))
  548. (when (org-string-nw-p from-address)
  549. (format "\\setkomavar{fromaddress}{%s}\n" from-address)))
  550. ;; Date.
  551. (format "\\date{%s}\n" (org-export-data (org-export-get-date info) info))
  552. ;; Hyperref, document start, and subject and title.
  553. (let* ((with-subject (plist-get info :with-subject))
  554. (with-title (plist-get info :with-title))
  555. (title-as-subject (and with-subject
  556. (plist-get info :with-title-as-subject)))
  557. (subject* (org-string-nw-p
  558. (org-export-data (plist-get info :subject) info)))
  559. (title* (and with-title
  560. (org-string-nw-p
  561. (org-export-data (plist-get info :title) info))))
  562. (subject (cond ((not with-subject) nil)
  563. (title-as-subject (or subject* title*))
  564. (t subject*)))
  565. (title (cond ((not with-title) nil)
  566. (title-as-subject (and subject* title*))
  567. (t title*)))
  568. (hyperref-template (plist-get info :latex-hyperref-template))
  569. (spec (append (list (cons ?t (or title subject "")))
  570. (org-latex--format-spec info))))
  571. (concat
  572. (when (and with-subject (not (eq with-subject t)))
  573. (format "\\KOMAoption{subject}{%s}\n"
  574. (if (symbolp with-subject) with-subject
  575. (mapconcat #'symbol-name with-subject ","))))
  576. ;; Hyperref.
  577. (format-spec hyperref-template spec)
  578. ;; Document start.
  579. "\\begin{document}\n\n"
  580. ;; Subject and title.
  581. (when subject (format "\\setkomavar{subject}{%s}\n" subject))
  582. (when title (format "\\setkomavar{title}{%s}\n" title))
  583. (when (or (org-string-nw-p title) (org-string-nw-p subject)) "\n")))
  584. ;; Letter start.
  585. (format "\\begin{letter}{%%\n%s}\n\n"
  586. (org-koma-letter--determine-to-and-from info 'to))
  587. ;; Opening.
  588. (format "\\opening{%s}\n\n"
  589. (org-koma-letter--keyword-or-headline
  590. :opening (lambda (h i) (not (org-koma-letter--special-tag h i)))
  591. info))
  592. ;; Letter body.
  593. contents
  594. ;; Closing.
  595. (format "\\closing{%s}\n"
  596. (org-koma-letter--keyword-or-headline
  597. :closing (lambda (h i) (eq (org-koma-letter--special-tag h i)
  598. 'closing))
  599. info))
  600. (org-koma-letter--special-contents-as-macro
  601. (plist-get info :with-after-closing))
  602. ;; Letter end.
  603. "\n\\end{letter}\n"
  604. (org-koma-letter--special-contents-as-macro
  605. (plist-get info :with-after-letter) t t)
  606. ;; Document end.
  607. "\n\\end{document}"))
  608. (defun org-koma-letter--build-settings (scope info)
  609. "Build settings string according to type.
  610. SCOPE is either `global' or `buffer'. INFO is a plist used as
  611. a communication channel."
  612. (let ((check-scope
  613. (function
  614. ;; Non-nil value when SETTING was defined in SCOPE.
  615. (lambda (setting)
  616. (let ((property (intern (format ":inbuffer-%s" setting))))
  617. (if (eq scope 'global)
  618. (eq (plist-get info property) 'koma-letter:empty)
  619. (not (eq (plist-get info property) 'koma-letter:empty))))))))
  620. (concat
  621. ;; Name.
  622. (let ((author (plist-get info :author)))
  623. (and author
  624. (funcall check-scope 'author)
  625. (format "\\setkomavar{fromname}{%s}\n"
  626. (org-export-data author info))))
  627. ;; Email.
  628. (let ((email (plist-get info :email)))
  629. (and email
  630. (funcall check-scope 'email)
  631. (format "\\setkomavar{fromemail}{%s}\n" email)))
  632. (and (funcall check-scope 'with-email)
  633. (format "\\KOMAoption{fromemail}{%s}\n"
  634. (if (plist-get info :with-email) "true" "false")))
  635. ;; Phone number.
  636. (let ((phone-number (plist-get info :phone-number)))
  637. (and (org-string-nw-p phone-number)
  638. (funcall check-scope 'phone-number)
  639. (format "\\setkomavar{fromphone}{%s}\n" phone-number)))
  640. (and (funcall check-scope 'with-phone)
  641. (format "\\KOMAoption{fromphone}{%s}\n"
  642. (if (plist-get info :with-phone) "true" "false")))
  643. ;; Signature.
  644. (let* ((heading-val
  645. (and (plist-get info :with-headline-opening)
  646. (org-string-nw-p
  647. (org-trim
  648. (org-export-data
  649. (org-koma-letter--get-tagged-contents 'closing)
  650. info)))))
  651. (signature (org-string-nw-p (plist-get info :signature)))
  652. (signature-scope (funcall check-scope 'signature)))
  653. (and (or (and signature signature-scope)
  654. heading-val)
  655. (not (and (eq scope 'global) heading-val))
  656. (format "\\setkomavar{signature}{%s}\n"
  657. (if signature-scope signature heading-val))))
  658. ;; Back address.
  659. (and (funcall check-scope 'with-backaddress)
  660. (format "\\KOMAoption{backaddress}{%s}\n"
  661. (if (plist-get info :with-backaddress) "true" "false")))
  662. ;; Place.
  663. (let ((with-place-set (funcall check-scope 'with-place))
  664. (place-set (funcall check-scope 'place)))
  665. (and (or (and with-place-set place-set)
  666. (and (eq scope 'buffer) (or with-place-set place-set)))
  667. (format "\\setkomavar{place}{%s}\n"
  668. (if (plist-get info :with-place) (plist-get info :place)
  669. ""))))
  670. ;; Folding marks.
  671. (and (funcall check-scope 'with-foldmarks)
  672. (let ((foldmarks (plist-get info :with-foldmarks)))
  673. (cond ((consp foldmarks)
  674. (format "\\KOMAoptions{foldmarks=true,foldmarks=%s}\n"
  675. (mapconcat #'symbol-name foldmarks "")))
  676. (foldmarks "\\KOMAoptions{foldmarks=true}\n")
  677. (t "\\KOMAoptions{foldmarks=false}\n")))))))
  678. ;;; Commands
  679. ;;;###autoload
  680. (defun org-koma-letter-export-as-latex
  681. (&optional async subtreep visible-only body-only ext-plist)
  682. "Export current buffer as a KOMA Scrlttr2 letter.
  683. If narrowing is active in the current buffer, only export its
  684. narrowed part.
  685. If a region is active, export that region.
  686. A non-nil optional argument ASYNC means the process should happen
  687. asynchronously. The resulting buffer should be accessible
  688. through the `org-export-stack' interface.
  689. When optional argument SUBTREEP is non-nil, export the sub-tree
  690. at point, extracting information from the headline properties
  691. first.
  692. When optional argument VISIBLE-ONLY is non-nil, don't export
  693. contents of hidden elements.
  694. When optional argument BODY-ONLY is non-nil, only write code
  695. between \"\\begin{letter}\" and \"\\end{letter}\".
  696. EXT-PLIST, when provided, is a proeprty list with external
  697. parameters overriding Org default settings, but still inferior to
  698. file-local settings.
  699. Export is done in a buffer named \"*Org KOMA-LETTER Export*\". It
  700. will be displayed if `org-export-show-temporary-export-buffer' is
  701. non-nil."
  702. (interactive)
  703. (let (org-koma-letter-special-contents)
  704. (org-export-to-buffer 'koma-letter "*Org KOMA-LETTER Export*"
  705. async subtreep visible-only body-only ext-plist
  706. (lambda () (LaTeX-mode)))))
  707. ;;;###autoload
  708. (defun org-koma-letter-export-to-latex
  709. (&optional async subtreep visible-only body-only ext-plist)
  710. "Export current buffer as a KOMA Scrlttr2 letter (tex).
  711. If narrowing is active in the current buffer, only export its
  712. narrowed part.
  713. If a region is active, export that region.
  714. A non-nil optional argument ASYNC means the process should happen
  715. asynchronously. The resulting file should be accessible through
  716. the `org-export-stack' interface.
  717. When optional argument SUBTREEP is non-nil, export the sub-tree
  718. at point, extracting information from the headline properties
  719. first.
  720. When optional argument VISIBLE-ONLY is non-nil, don't export
  721. contents of hidden elements.
  722. When optional argument BODY-ONLY is non-nil, only write code
  723. between \"\\begin{letter}\" and \"\\end{letter}\".
  724. EXT-PLIST, when provided, is a property list with external
  725. parameters overriding Org default settings, but still inferior to
  726. file-local settings.
  727. When optional argument PUB-DIR is set, use it as the publishing
  728. directory.
  729. Return output file's name."
  730. (interactive)
  731. (let ((outfile (org-export-output-file-name ".tex" subtreep))
  732. (org-koma-letter-special-contents))
  733. (org-export-to-file 'koma-letter outfile
  734. async subtreep visible-only body-only ext-plist)))
  735. ;;;###autoload
  736. (defun org-koma-letter-export-to-pdf
  737. (&optional async subtreep visible-only body-only ext-plist)
  738. "Export current buffer as a KOMA Scrlttr2 letter (pdf).
  739. If narrowing is active in the current buffer, only export its
  740. narrowed part.
  741. If a region is active, export that region.
  742. A non-nil optional argument ASYNC means the process should happen
  743. asynchronously. The resulting file should be accessible through
  744. the `org-export-stack' interface.
  745. When optional argument SUBTREEP is non-nil, export the sub-tree
  746. at point, extracting information from the headline properties
  747. first.
  748. When optional argument VISIBLE-ONLY is non-nil, don't export
  749. contents of hidden elements.
  750. When optional argument BODY-ONLY is non-nil, only write code
  751. between \"\\begin{letter}\" and \"\\end{letter}\".
  752. EXT-PLIST, when provided, is a property list with external
  753. parameters overriding Org default settings, but still inferior to
  754. file-local settings.
  755. Return PDF file's name."
  756. (interactive)
  757. (let ((file (org-export-output-file-name ".tex" subtreep))
  758. (org-koma-letter-special-contents))
  759. (org-export-to-file 'koma-letter file
  760. async subtreep visible-only body-only ext-plist
  761. (lambda (file) (org-latex-compile file)))))
  762. (provide 'ox-koma-letter)
  763. ;;; ox-koma-letter.el ends here