Remove no longer appropriate test
[org-mode/org-tableheadings.git] / lisp / ox-beamer.el
blob5d0b55d96eb4b3dfcf68574c7269319b65c51ddd
1 ;;; ox-beamer.el --- Beamer Back-End for Org Export Engine
3 ;; Copyright (C) 2007-2015 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com>
6 ;; Nicolas Goaziou <n.goaziou AT gmail DOT com>
7 ;; Keywords: org, wp, tex
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This library implements both a Beamer back-end, derived from the
27 ;; LaTeX one and a minor mode easing structure edition of the
28 ;; document. See Org manual for more information.
30 ;;; Code:
32 (eval-when-compile (require 'cl))
33 (require 'ox-latex)
35 ;; Install a default set-up for Beamer export.
36 (unless (assoc "beamer" org-latex-classes)
37 (add-to-list 'org-latex-classes
38 '("beamer"
39 "\\documentclass[presentation]{beamer}"
40 ("\\section{%s}" . "\\section*{%s}")
41 ("\\subsection{%s}" . "\\subsection*{%s}")
42 ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
46 ;;; User-Configurable Variables
48 (defgroup org-export-beamer nil
49 "Options specific for using the beamer class in LaTeX export."
50 :tag "Org Beamer"
51 :group 'org-export
52 :version "24.2")
54 (defcustom org-beamer-frame-level 1
55 "The level at which headlines become frames.
57 Headlines at a lower level will be translated into a sectioning
58 structure. At a higher level, they will be translated into
59 blocks.
61 If a headline with a \"BEAMER_env\" property set to \"frame\" is
62 found within a tree, its level locally overrides this number.
64 This variable has no effect on headlines with the \"BEAMER_env\"
65 property set to either \"ignoreheading\", \"appendix\", or
66 \"note\", which will respectively, be invisible, become an
67 appendix or a note.
69 This integer is relative to the minimal level of a headline
70 within the parse tree, defined as 1."
71 :group 'org-export-beamer
72 :type 'integer)
74 (defcustom org-beamer-frame-default-options ""
75 "Default options string to use for frames.
76 For example, it could be set to \"allowframebreaks\"."
77 :group 'org-export-beamer
78 :type '(string :tag "[options]"))
80 (defcustom org-beamer-column-view-format
81 "%45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col) %8BEAMER_opt(Opt)"
82 "Column view format that should be used to fill the template."
83 :group 'org-export-beamer
84 :version "24.4"
85 :package-version '(Org . "8.0")
86 :type '(choice
87 (const :tag "Do not insert Beamer column view format" nil)
88 (string :tag "Beamer column view format")))
90 (defcustom org-beamer-theme "default"
91 "Default theme used in Beamer presentations."
92 :group 'org-export-beamer
93 :version "24.4"
94 :package-version '(Org . "8.0")
95 :type '(choice
96 (const :tag "Do not insert a Beamer theme" nil)
97 (string :tag "Beamer theme")))
99 (defcustom org-beamer-environments-extra nil
100 "Environments triggered by tags in Beamer export.
101 Each entry has 4 elements:
103 name Name of the environment
104 key Selection key for `org-beamer-select-environment'
105 open The opening template for the environment, with the following escapes
106 %a the action/overlay specification
107 %A the default action/overlay specification
108 %o the options argument of the template
109 %h the headline text
110 %r the raw headline text (i.e. without any processing)
111 %H if there is headline text, that raw text in {} braces
112 %U if there is headline text, that raw text in [] brackets
113 close The closing string of the environment."
114 :group 'org-export-beamer
115 :version "24.4"
116 :package-version '(Org . "8.1")
117 :type '(repeat
118 (list
119 (string :tag "Environment")
120 (string :tag "Selection key")
121 (string :tag "Begin")
122 (string :tag "End"))))
124 (defcustom org-beamer-outline-frame-title "Outline"
125 "Default title of a frame containing an outline."
126 :group 'org-export-beamer
127 :type '(string :tag "Outline frame title"))
129 (defcustom org-beamer-outline-frame-options ""
130 "Outline frame options appended after \\begin{frame}.
131 You might want to put e.g. \"allowframebreaks=0.9\" here."
132 :group 'org-export-beamer
133 :type '(string :tag "Outline frame options"))
137 ;;; Internal Variables
139 (defconst org-beamer-column-widths
140 "0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC"
141 "The column widths that should be installed as allowed property values.")
143 (defconst org-beamer-environments-special
144 '(("againframe" "A")
145 ("appendix" "x")
146 ("column" "c")
147 ("columns" "C")
148 ("frame" "f")
149 ("fullframe" "F")
150 ("ignoreheading" "i")
151 ("note" "n")
152 ("noteNH" "N"))
153 "Alist of environments treated in a special way by the back-end.
154 Keys are environment names, as strings, values are bindings used
155 in `org-beamer-select-environment'. Environments listed here,
156 along with their binding, are hard coded and cannot be modified
157 through `org-beamer-environments-extra' variable.")
159 (defconst org-beamer-environments-default
160 '(("block" "b" "\\begin{block}%a{%h}" "\\end{block}")
161 ("alertblock" "a" "\\begin{alertblock}%a{%h}" "\\end{alertblock}")
162 ("verse" "v" "\\begin{verse}%a %% %h" "\\end{verse}")
163 ("quotation" "q" "\\begin{quotation}%a %% %h" "\\end{quotation}")
164 ("quote" "Q" "\\begin{quote}%a %% %h" "\\end{quote}")
165 ("structureenv" "s" "\\begin{structureenv}%a %% %h" "\\end{structureenv}")
166 ("theorem" "t" "\\begin{theorem}%a%U" "\\end{theorem}")
167 ("definition" "d" "\\begin{definition}%a%U" "\\end{definition}")
168 ("example" "e" "\\begin{example}%a%U" "\\end{example}")
169 ("exampleblock" "E" "\\begin{exampleblock}%a{%h}" "\\end{exampleblock}")
170 ("proof" "p" "\\begin{proof}%a%U" "\\end{proof}")
171 ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}" "\\end{beamercolorbox}"))
172 "Environments triggered by properties in Beamer export.
173 These are the defaults - for user definitions, see
174 `org-beamer-environments-extra'.")
176 (defconst org-beamer-verbatim-elements
177 '(code example-block fixed-width inline-src-block src-block verbatim)
178 "List of element or object types producing verbatim text.
179 This is used internally to determine when a frame should have the
180 \"fragile\" option.")
184 ;;; Internal functions
186 (defun org-beamer--normalize-argument (argument type)
187 "Return ARGUMENT string with proper boundaries.
189 TYPE is a symbol among the following:
190 `action' Return ARGUMENT within angular brackets.
191 `defaction' Return ARGUMENT within both square and angular brackets.
192 `option' Return ARGUMENT within square brackets."
193 (if (not (string-match "\\S-" argument)) ""
194 (case type
195 (action (if (string-match "\\`<.*>\\'" argument) argument
196 (format "<%s>" argument)))
197 (defaction (cond
198 ((string-match "\\`\\[<.*>\\]\\'" argument) argument)
199 ((string-match "\\`<.*>\\'" argument)
200 (format "[%s]" argument))
201 ((string-match "\\`\\[\\(.*\\)\\]\\'" argument)
202 (format "[<%s>]" (match-string 1 argument)))
203 (t (format "[<%s>]" argument))))
204 (option (if (string-match "\\`\\[.*\\]\\'" argument) argument
205 (format "[%s]" argument)))
206 (otherwise argument))))
208 (defun org-beamer--element-has-overlay-p (element)
209 "Non-nil when ELEMENT has an overlay specified.
210 An element has an overlay specification when it starts with an
211 `beamer' export-snippet whose value is between angular brackets.
212 Return overlay specification, as a string, or nil."
213 (let ((first-object (car (org-element-contents element))))
214 (when (eq (org-element-type first-object) 'export-snippet)
215 (let ((value (org-element-property :value first-object)))
216 (and (string-match "\\`<.*>\\'" value) value)))))
220 ;;; Define Back-End
222 (org-export-define-derived-backend 'beamer 'latex
223 :export-block "BEAMER"
224 :menu-entry
225 '(?l 1
226 ((?B "As LaTeX buffer (Beamer)" org-beamer-export-as-latex)
227 (?b "As LaTeX file (Beamer)" org-beamer-export-to-latex)
228 (?P "As PDF file (Beamer)" org-beamer-export-to-pdf)
229 (?O "As PDF file and open (Beamer)"
230 (lambda (a s v b)
231 (if a (org-beamer-export-to-pdf t s v b)
232 (org-open-file (org-beamer-export-to-pdf nil s v b)))))))
233 :options-alist
234 '((:headline-levels nil "H" org-beamer-frame-level)
235 (:latex-class "LATEX_CLASS" nil "beamer" t)
236 (:beamer-column-view-format "COLUMNS" nil org-beamer-column-view-format)
237 (:beamer-theme "BEAMER_THEME" nil org-beamer-theme)
238 (:beamer-color-theme "BEAMER_COLOR_THEME" nil nil t)
239 (:beamer-font-theme "BEAMER_FONT_THEME" nil nil t)
240 (:beamer-inner-theme "BEAMER_INNER_THEME" nil nil t)
241 (:beamer-outer-theme "BEAMER_OUTER_THEME" nil nil t)
242 (:beamer-header "BEAMER_HEADER" nil nil newline)
243 (:beamer-environments-extra nil nil org-beamer-environments-extra)
244 (:beamer-frame-default-options nil nil org-beamer-frame-default-options)
245 (:beamer-outline-frame-options nil nil org-beamer-outline-frame-options)
246 (:beamer-outline-frame-title nil nil org-beamer-outline-frame-title))
247 :translate-alist '((bold . org-beamer-bold)
248 (export-block . org-beamer-export-block)
249 (export-snippet . org-beamer-export-snippet)
250 (headline . org-beamer-headline)
251 (item . org-beamer-item)
252 (keyword . org-beamer-keyword)
253 (link . org-beamer-link)
254 (plain-list . org-beamer-plain-list)
255 (radio-target . org-beamer-radio-target)
256 (target . org-beamer-target)
257 (template . org-beamer-template)))
261 ;;; Transcode Functions
263 ;;;; Bold
265 (defun org-beamer-bold (bold contents info)
266 "Transcode BLOCK object into Beamer code.
267 CONTENTS is the text being bold. INFO is a plist used as
268 a communication channel."
269 (format "\\alert%s{%s}"
270 (or (org-beamer--element-has-overlay-p bold) "")
271 contents))
274 ;;;; Export Block
276 (defun org-beamer-export-block (export-block contents info)
277 "Transcode an EXPORT-BLOCK element into Beamer code.
278 CONTENTS is nil. INFO is a plist used as a communication
279 channel."
280 (when (member (org-element-property :type export-block) '("BEAMER" "LATEX"))
281 (org-remove-indentation (org-element-property :value export-block))))
284 ;;;; Export Snippet
286 (defun org-beamer-export-snippet (export-snippet contents info)
287 "Transcode an EXPORT-SNIPPET object into Beamer code.
288 CONTENTS is nil. INFO is a plist used as a communication
289 channel."
290 (let ((backend (org-export-snippet-backend export-snippet))
291 (value (org-element-property :value export-snippet)))
292 ;; Only "latex" and "beamer" snippets are retained.
293 (cond ((eq backend 'latex) value)
294 ;; Ignore "beamer" snippets specifying overlays.
295 ((and (eq backend 'beamer)
296 (or (org-export-get-previous-element export-snippet info)
297 (not (string-match "\\`<.*>\\'" value))))
298 value))))
301 ;;;; Headline
303 ;; The main function to translate a headline is
304 ;; `org-beamer-headline'.
306 ;; Depending on the level at which a headline is considered as
307 ;; a frame (given by `org-beamer--frame-level'), the headline is
308 ;; either a section (`org-beamer--format-section'), a frame
309 ;; (`org-beamer--format-frame') or a block
310 ;; (`org-beamer--format-block').
312 ;; `org-beamer-headline' also takes care of special environments
313 ;; like "ignoreheading", "note", "noteNH", "appendix" and
314 ;; "againframe".
316 (defun org-beamer--get-label (headline info)
317 "Return label for HEADLINE, as a string.
319 INFO is a plist used as a communication channel.
321 The value is either the label specified in \"BEAMER_opt\"
322 property, or a fallback value built from headline's number. This
323 function assumes HEADLINE will be treated as a frame."
324 (let ((opt (org-element-property :BEAMER_OPT headline)))
325 (if (and (org-string-nw-p opt)
326 (string-match "\\(?:^\\|,\\)label=\\(.*?\\)\\(?:$\\|,\\)" opt))
327 (match-string 1 opt)
328 (format "sec-%s"
329 (mapconcat 'number-to-string
330 (org-export-get-headline-number headline info)
331 "-")))))
333 (defun org-beamer--frame-level (headline info)
334 "Return frame level in subtree containing HEADLINE.
335 INFO is a plist used as a communication channel."
337 ;; 1. Look for "frame" environment in parents, starting from the
338 ;; farthest.
339 (catch 'exit
340 (dolist (parent (nreverse (org-element-lineage headline)))
341 (let ((env (org-element-property :BEAMER_ENV parent)))
342 (when (and env (member-ignore-case env '("frame" "fullframe")))
343 (throw 'exit (org-export-get-relative-level parent info))))))
344 ;; 2. Look for "frame" environment in HEADLINE.
345 (let ((env (org-element-property :BEAMER_ENV headline)))
346 (and env (member-ignore-case env '("frame" "fullframe"))
347 (org-export-get-relative-level headline info)))
348 ;; 3. Look for "frame" environment in sub-tree.
349 (org-element-map headline 'headline
350 (lambda (hl)
351 (let ((env (org-element-property :BEAMER_ENV hl)))
352 (when (and env (member-ignore-case env '("frame" "fullframe")))
353 (org-export-get-relative-level hl info))))
354 info 'first-match)
355 ;; 4. No "frame" environment in tree: use default value.
356 (plist-get info :headline-levels)))
358 (defun org-beamer--format-section (headline contents info)
359 "Format HEADLINE as a sectioning part.
360 CONTENTS holds the contents of the headline. INFO is a plist
361 used as a communication channel."
362 (let ((latex-headline
363 (org-export-with-backend
364 ;; We create a temporary export back-end which behaves the
365 ;; same as current one, but adds "\protect" in front of the
366 ;; output of some objects.
367 (org-export-create-backend
368 :parent 'latex
369 :transcoders
370 (let ((protected-output
371 (function
372 (lambda (object contents info)
373 (let ((code (org-export-with-backend
374 'beamer object contents info)))
375 (if (org-string-nw-p code) (concat "\\protect" code)
376 code))))))
377 (mapcar #'(lambda (type) (cons type protected-output))
378 '(bold footnote-reference italic strike-through timestamp
379 underline))))
380 headline
381 contents
382 info))
383 (mode-specs (org-element-property :BEAMER_ACT headline)))
384 (if (and mode-specs
385 (string-match "\\`\\\\\\(.*?\\)\\(?:\\*\\|\\[.*\\]\\)?{"
386 latex-headline))
387 ;; Insert overlay specifications.
388 (replace-match (concat (match-string 1 latex-headline)
389 (format "<%s>" mode-specs))
390 nil nil latex-headline 1)
391 latex-headline)))
393 (defun org-beamer--format-frame (headline contents info)
394 "Format HEADLINE as a frame.
395 CONTENTS holds the contents of the headline. INFO is a plist
396 used as a communication channel."
397 (let ((fragilep
398 ;; FRAGILEP is non-nil when HEADLINE contains an element
399 ;; among `org-beamer-verbatim-elements'.
400 (org-element-map headline org-beamer-verbatim-elements 'identity
401 info 'first-match)))
402 (concat "\\begin{frame}"
403 ;; Overlay specification, if any. When surrounded by
404 ;; square brackets, consider it as a default
405 ;; specification.
406 (let ((action (org-element-property :BEAMER_ACT headline)))
407 (cond
408 ((not action) "")
409 ((string-match "\\`\\[.*\\]\\'" action )
410 (org-beamer--normalize-argument action 'defaction))
411 (t (org-beamer--normalize-argument action 'action))))
412 ;; Options, if any.
413 (let* ((beamer-opt (org-element-property :BEAMER_OPT headline))
414 (options
415 ;; Collect options from default value and headline's
416 ;; properties. Also add a label for links.
417 (append
418 (org-split-string
419 (plist-get info :beamer-frame-default-options) ",")
420 (and beamer-opt
421 (org-split-string
422 ;; Remove square brackets if user provided
423 ;; them.
424 (and (string-match "^\\[?\\(.*\\)\\]?$" beamer-opt)
425 (match-string 1 beamer-opt))
426 ","))
427 ;; Provide an automatic label for the frame
428 ;; unless the user specified one. Also refrain
429 ;; from labeling `allowframebreaks' frames; this
430 ;; is not allowed by beamer.
431 (unless (and beamer-opt
432 (or (string-match "\\(^\\|,\\)label=" beamer-opt)
433 (string-match "allowframebreaks" beamer-opt)))
434 (list
435 (format "label=%s"
436 (org-beamer--get-label headline info)))))))
437 ;; Change options list into a string.
438 (org-beamer--normalize-argument
439 (mapconcat
440 'identity
441 (if (or (not fragilep) (member "fragile" options)) options
442 (cons "fragile" options))
443 ",")
444 'option))
445 ;; Title.
446 (let ((env (org-element-property :BEAMER_ENV headline)))
447 (format "{%s}"
448 (if (and env (equal (downcase env) "fullframe")) ""
449 (org-export-data
450 (org-element-property :title headline) info))))
451 "\n"
452 ;; The following workaround is required in fragile frames
453 ;; as Beamer will append "\par" to the beginning of the
454 ;; contents. So we need to make sure the command is
455 ;; separated from the contents by at least one space. If
456 ;; it isn't, it will create "\parfirst-word" command and
457 ;; remove the first word from the contents in the PDF
458 ;; output.
459 (if (not fragilep) contents
460 (replace-regexp-in-string "\\`\n*" "\\& " (or contents "")))
461 "\\end{frame}")))
463 (defun org-beamer--format-block (headline contents info)
464 "Format HEADLINE as a block.
465 CONTENTS holds the contents of the headline. INFO is a plist
466 used as a communication channel."
467 (let* ((column-width (org-element-property :BEAMER_COL headline))
468 ;; ENVIRONMENT defaults to "block" if none is specified and
469 ;; there is no column specification. If there is a column
470 ;; specified but still no explicit environment, ENVIRONMENT
471 ;; is "column".
472 (environment (let ((env (org-element-property :BEAMER_ENV headline)))
473 (cond
474 ;; "block" is the fallback environment.
475 ((and (not env) (not column-width)) "block")
476 ;; "column" only.
477 ((not env) "column")
478 ;; Use specified environment.
479 (t env))))
480 (raw-title (org-element-property :raw-value headline))
481 (env-format
482 (cond ((member environment '("column" "columns")) nil)
483 ((assoc environment
484 (append (plist-get info :beamer-environments-extra)
485 org-beamer-environments-default)))
486 (t (user-error "Wrong block type at a headline named \"%s\""
487 raw-title))))
488 (title (org-export-data (org-element-property :title headline) info))
489 (options (let ((options (org-element-property :BEAMER_OPT headline)))
490 (if (not options) ""
491 (org-beamer--normalize-argument options 'option))))
492 ;; Start a "columns" environment when explicitly requested or
493 ;; when there is no previous headline or the previous
494 ;; headline do not have a BEAMER_column property.
495 (parent-env (org-element-property
496 :BEAMER_ENV (org-export-get-parent-headline headline)))
497 (start-columns-p
498 (or (equal environment "columns")
499 (and column-width
500 (not (and parent-env
501 (equal (downcase parent-env) "columns")))
502 (or (org-export-first-sibling-p headline info)
503 (not (org-element-property
504 :BEAMER_COL
505 (org-export-get-previous-element
506 headline info)))))))
507 ;; End the "columns" environment when explicitly requested or
508 ;; when there is no next headline or the next headline do not
509 ;; have a BEAMER_column property.
510 (end-columns-p
511 (or (equal environment "columns")
512 (and column-width
513 (not (and parent-env
514 (equal (downcase parent-env) "columns")))
515 (or (org-export-last-sibling-p headline info)
516 (not (org-element-property
517 :BEAMER_COL
518 (org-export-get-next-element headline info))))))))
519 (concat
520 (when start-columns-p
521 ;; Column can accept options only when the environment is
522 ;; explicitly defined.
523 (if (not (equal environment "columns")) "\\begin{columns}\n"
524 (format "\\begin{columns}%s\n" options)))
525 (when column-width
526 (format "\\begin{column}%s{%s}\n"
527 ;; One can specify placement for column only when
528 ;; HEADLINE stands for a column on its own.
529 (if (equal environment "column") options "")
530 (format "%s\\columnwidth" column-width)))
531 ;; Block's opening string.
532 (when (nth 2 env-format)
533 (concat
534 (org-fill-template
535 (nth 2 env-format)
536 (nconc
537 ;; If BEAMER_act property has its value enclosed in square
538 ;; brackets, it is a default overlay specification and
539 ;; overlay specification is empty. Otherwise, it is an
540 ;; overlay specification and the default one is nil.
541 (let ((action (org-element-property :BEAMER_ACT headline)))
542 (cond
543 ((not action) (list (cons "a" "") (cons "A" "")))
544 ((string-match "\\`\\[.*\\]\\'" action)
545 (list
546 (cons "A" (org-beamer--normalize-argument action 'defaction))
547 (cons "a" "")))
549 (list (cons "a" (org-beamer--normalize-argument action 'action))
550 (cons "A" "")))))
551 (list (cons "o" options)
552 (cons "h" title)
553 (cons "r" raw-title)
554 (cons "H" (if (equal raw-title "") ""
555 (format "{%s}" raw-title)))
556 (cons "U" (if (equal raw-title "") ""
557 (format "[%s]" raw-title))))))
558 "\n"))
559 contents
560 ;; Block's closing string, if any.
561 (and (nth 3 env-format) (concat (nth 3 env-format) "\n"))
562 (when column-width "\\end{column}\n")
563 (when end-columns-p "\\end{columns}"))))
565 (defun org-beamer-headline (headline contents info)
566 "Transcode HEADLINE element into Beamer code.
567 CONTENTS is the contents of the headline. INFO is a plist used
568 as a communication channel."
569 (unless (org-element-property :footnote-section-p headline)
570 (let ((level (org-export-get-relative-level headline info))
571 (frame-level (org-beamer--frame-level headline info))
572 (environment (let ((env (org-element-property :BEAMER_ENV headline)))
573 (or (org-string-nw-p env) "block"))))
574 (cond
575 ;; Case 1: Resume frame specified by "BEAMER_ref" property.
576 ((equal environment "againframe")
577 (let ((ref (org-element-property :BEAMER_REF headline)))
578 ;; Reference to frame being resumed is mandatory. Ignore
579 ;; the whole headline if it isn't provided.
580 (when (org-string-nw-p ref)
581 (concat "\\againframe"
582 ;; Overlay specification.
583 (let ((overlay (org-element-property :BEAMER_ACT headline)))
584 (when overlay
585 (org-beamer--normalize-argument
586 overlay
587 (if (string-match "^\\[.*\\]$" overlay) 'defaction
588 'action))))
589 ;; Options.
590 (let ((options (org-element-property :BEAMER_OPT headline)))
591 (when options
592 (org-beamer--normalize-argument options 'option)))
593 ;; Resolve reference provided by "BEAMER_ref"
594 ;; property. This is done by building a minimal fake
595 ;; link and calling the appropriate resolve function,
596 ;; depending on the reference syntax.
597 (let* ((type
598 (progn
599 (string-match "^\\(id:\\|#\\|\\*\\)?\\(.*\\)" ref)
600 (cond
601 ((or (not (match-string 1 ref))
602 (equal (match-string 1 ref) "*")) 'fuzzy)
603 ((equal (match-string 1 ref) "id:") 'id)
604 (t 'custom-id))))
605 (link (list 'link (list :path (match-string 2 ref))))
606 (target (if (eq type 'fuzzy)
607 (org-export-resolve-fuzzy-link link info)
608 (org-export-resolve-id-link link info))))
609 ;; Now use user-defined label provided in TARGET
610 ;; headline, or fallback to standard one.
611 (format "{%s}" (org-beamer--get-label target info)))))))
612 ;; Case 2: Creation of an appendix is requested.
613 ((equal environment "appendix")
614 (concat "\\appendix"
615 (org-element-property :BEAMER_ACT headline)
616 "\n"
617 (make-string (org-element-property :pre-blank headline) ?\n)
618 contents))
619 ;; Case 3: Ignore heading.
620 ((equal environment "ignoreheading")
621 (concat (make-string (org-element-property :pre-blank headline) ?\n)
622 contents))
623 ;; Case 4: HEADLINE is a note.
624 ((member environment '("note" "noteNH"))
625 (format "\\note{%s}"
626 (concat (and (equal environment "note")
627 (concat
628 (org-export-data
629 (org-element-property :title headline) info)
630 "\n"))
631 (org-trim contents))))
632 ;; Case 5: HEADLINE is a frame.
633 ((= level frame-level)
634 (org-beamer--format-frame headline contents info))
635 ;; Case 6: Regular section, extracted from
636 ;; `org-latex-classes'.
637 ((< level frame-level)
638 (org-beamer--format-section headline contents info))
639 ;; Case 7: Otherwise, HEADLINE is a block.
640 (t (org-beamer--format-block headline contents info))))))
643 ;;;; Item
645 (defun org-beamer-item (item contents info)
646 "Transcode an ITEM element into Beamer code.
647 CONTENTS holds the contents of the item. INFO is a plist holding
648 contextual information."
649 (org-export-with-backend
650 ;; Delegate item export to `latex'. However, we use `beamer'
651 ;; transcoders for objects in the description tag.
652 (org-export-create-backend
653 :parent 'beamer
654 :transcoders
655 (list
656 (cons
657 'item
658 (lambda (item c i)
659 (let ((action
660 (let ((first (car (org-element-contents item))))
661 (and (eq (org-element-type first) 'paragraph)
662 (org-beamer--element-has-overlay-p first))))
663 (output (org-latex-item item contents info)))
664 (if (not (and action (string-match "\\\\item" output))) output
665 ;; If the item starts with a paragraph and that paragraph
666 ;; starts with an export snippet specifying an overlay,
667 ;; append it to the \item command.
668 (replace-match (concat "\\\\item" action) nil nil output)))))))
669 item contents info))
672 ;;;; Keyword
674 (defun org-beamer-keyword (keyword contents info)
675 "Transcode a KEYWORD element into Beamer code.
676 CONTENTS is nil. INFO is a plist used as a communication
677 channel."
678 (let ((key (org-element-property :key keyword))
679 (value (org-element-property :value keyword)))
680 ;; Handle specifically BEAMER and TOC (headlines only) keywords.
681 ;; Otherwise, fallback to `latex' back-end.
682 (cond
683 ((equal key "BEAMER") value)
684 ((and (equal key "TOC") (string-match "\\<headlines\\>" value))
685 (let ((depth (or (and (string-match "[0-9]+" value)
686 (string-to-number (match-string 0 value)))
687 (plist-get info :with-toc)))
688 (options (and (string-match "\\[.*?\\]" value)
689 (match-string 0 value))))
690 (concat
691 (when (wholenump depth) (format "\\setcounter{tocdepth}{%s}\n" depth))
692 "\\tableofcontents" options)))
693 (t (org-export-with-backend 'latex keyword contents info)))))
696 ;;;; Link
698 (defun org-beamer-link (link contents info)
699 "Transcode a LINK object into Beamer code.
700 CONTENTS is the description part of the link. INFO is a plist
701 used as a communication channel."
702 (let ((type (org-element-property :type link))
703 (path (org-element-property :path link)))
704 (cond
705 ;; Link type is handled by a special function.
706 ((org-export-custom-protocol-maybe link contents 'beamer))
707 ;; Use \hyperlink command for all internal links.
708 ((equal type "radio")
709 (let ((destination (org-export-resolve-radio-link link info)))
710 (if (not destination) contents
711 (format "\\hyperlink%s{%s}{%s}"
712 (or (org-beamer--element-has-overlay-p link) "")
713 (org-export-solidify-link-text
714 (org-element-property :value destination))
715 contents))))
716 ((and (member type '("custom-id" "fuzzy" "id"))
717 (let ((destination (if (string= type "fuzzy")
718 (org-export-resolve-fuzzy-link link info)
719 (org-export-resolve-id-link link info))))
720 (case (org-element-type destination)
721 (headline
722 (let ((label
723 (format "sec-%s"
724 (mapconcat
725 'number-to-string
726 (org-export-get-headline-number
727 destination info)
728 "-"))))
729 (if (and (plist-get info :section-numbers) (not contents))
730 (format "\\ref{%s}" label)
731 (format "\\hyperlink%s{%s}{%s}"
732 (or (org-beamer--element-has-overlay-p link) "")
733 label
734 contents))))
735 (target
736 (let ((path (org-export-solidify-link-text path)))
737 (if (not contents) (format "\\ref{%s}" path)
738 (format "\\hyperlink%s{%s}{%s}"
739 (or (org-beamer--element-has-overlay-p link) "")
740 path
741 contents))))))))
742 ;; Otherwise, use `latex' back-end.
743 (t (org-export-with-backend 'latex link contents info)))))
746 ;;;; Plain List
748 ;; Plain lists support `:environment', `:overlay' and `:options'
749 ;; attributes.
751 (defun org-beamer-plain-list (plain-list contents info)
752 "Transcode a PLAIN-LIST element into Beamer code.
753 CONTENTS is the contents of the list. INFO is a plist holding
754 contextual information."
755 (let* ((type (org-element-property :type plain-list))
756 (attributes (org-combine-plists
757 (org-export-read-attribute :attr_latex plain-list)
758 (org-export-read-attribute :attr_beamer plain-list)))
759 (latex-type (let ((env (plist-get attributes :environment)))
760 (cond (env)
761 ((eq type 'ordered) "enumerate")
762 ((eq type 'descriptive) "description")
763 (t "itemize")))))
764 (org-latex--wrap-label
765 plain-list
766 (format "\\begin{%s}%s%s\n%s\\end{%s}"
767 latex-type
768 ;; Default overlay specification, if any.
769 (org-beamer--normalize-argument
770 (or (plist-get attributes :overlay) "")
771 'defaction)
772 ;; Second optional argument depends on the list type.
773 (org-beamer--normalize-argument
774 (or (plist-get attributes :options) "")
775 'option)
776 ;; Eventually insert contents and close environment.
777 contents
778 latex-type))))
781 ;;;; Radio Target
783 (defun org-beamer-radio-target (radio-target text info)
784 "Transcode a RADIO-TARGET object into Beamer code.
785 TEXT is the text of the target. INFO is a plist holding
786 contextual information."
787 (format "\\hypertarget%s{%s}{%s}"
788 (or (org-beamer--element-has-overlay-p radio-target) "")
789 (org-export-solidify-link-text
790 (org-element-property :value radio-target))
791 text))
794 ;;;; Target
796 (defun org-beamer-target (target contents info)
797 "Transcode a TARGET object into Beamer code.
798 CONTENTS is nil. INFO is a plist holding contextual
799 information."
800 (format "\\label{%s}"
801 (org-export-solidify-link-text (org-element-property :value target))))
804 ;;;; Template
806 ;; Template used is similar to the one used in `latex' back-end,
807 ;; excepted for the table of contents and Beamer themes.
809 (defun org-beamer-template (contents info)
810 "Return complete document string after Beamer conversion.
811 CONTENTS is the transcoded contents string. INFO is a plist
812 holding export options."
813 (let ((title (org-export-data (plist-get info :title) info)))
814 (concat
815 ;; 1. Time-stamp.
816 (and (plist-get info :time-stamp-file)
817 (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
818 ;; 2. Document class and packages.
819 (let* ((class (plist-get info :latex-class))
820 (class-options (plist-get info :latex-class-options))
821 (header (nth 1 (assoc class org-latex-classes)))
822 (document-class-string
823 (and (stringp header)
824 (if (not class-options) header
825 (replace-regexp-in-string
826 "^[ \t]*\\\\documentclass\\(\\(\\[[^]]*\\]\\)?\\)"
827 class-options header t nil 1)))))
828 (if (not document-class-string)
829 (user-error "Unknown LaTeX class `%s'" class)
830 (org-latex-guess-babel-language
831 (org-latex-guess-inputenc
832 (org-element-normalize-string
833 (org-splice-latex-header
834 document-class-string
835 org-latex-default-packages-alist
836 org-latex-packages-alist nil
837 (concat (org-element-normalize-string
838 (plist-get info :latex-header))
839 (org-element-normalize-string
840 (plist-get info :latex-header-extra))))))
841 info)))
842 ;; 3. Insert themes.
843 (let ((format-theme
844 (function
845 (lambda (prop command)
846 (let ((theme (plist-get info prop)))
847 (when theme
848 (concat command
849 (if (not (string-match "\\[.*\\]" theme))
850 (format "{%s}\n" theme)
851 (format "%s{%s}\n"
852 (match-string 0 theme)
853 (org-trim
854 (replace-match "" nil nil theme)))))))))))
855 (mapconcat (lambda (args) (apply format-theme args))
856 '((:beamer-theme "\\usetheme")
857 (:beamer-color-theme "\\usecolortheme")
858 (:beamer-font-theme "\\usefonttheme")
859 (:beamer-inner-theme "\\useinnertheme")
860 (:beamer-outer-theme "\\useoutertheme"))
861 ""))
862 ;; 4. Possibly limit depth for headline numbering.
863 (let ((sec-num (plist-get info :section-numbers)))
864 (when (integerp sec-num)
865 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
866 ;; 5. Author.
867 (let ((author (and (plist-get info :with-author)
868 (let ((auth (plist-get info :author)))
869 (and auth (org-export-data auth info)))))
870 (email (and (plist-get info :with-email)
871 (org-export-data (plist-get info :email) info))))
872 (cond ((and author email (not (string= "" email)))
873 (format "\\author{%s\\thanks{%s}}\n" author email))
874 ((or author email) (format "\\author{%s}\n" (or author email)))))
875 ;; 6. Date.
876 (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
877 (format "\\date{%s}\n" (org-export-data date info)))
878 ;; 7. Title
879 (format "\\title{%s}\n" title)
880 ;; 8. Beamer-header
881 (let ((beamer-header (plist-get info :beamer-header)))
882 (when beamer-header
883 (format "%s\n" (plist-get info :beamer-header))))
884 ;; 9. Hyperref options.
885 (let ((template (plist-get info :latex-hyperref-template)))
886 (and (stringp template)
887 (format-spec template (org-latex--format-spec info))))
888 ;; 10. Document start.
889 "\\begin{document}\n\n"
890 ;; 11. Title command.
891 (org-element-normalize-string
892 (cond ((not (plist-get info :with-title)) nil)
893 ((string= "" title) nil)
894 ((not (stringp org-latex-title-command)) nil)
895 ((string-match "\\(?:[^%]\\|^\\)%s"
896 org-latex-title-command)
897 (format org-latex-title-command title))
898 (t org-latex-title-command)))
899 ;; 12. Table of contents.
900 (let ((depth (plist-get info :with-toc)))
901 (when depth
902 (concat
903 (format "\\begin{frame}%s{%s}\n"
904 (org-beamer--normalize-argument
905 (plist-get info :beamer-outline-frame-options) 'option)
906 (plist-get info :beamer-outline-frame-title))
907 (when (wholenump depth)
908 (format "\\setcounter{tocdepth}{%d}\n" depth))
909 "\\tableofcontents\n"
910 "\\end{frame}\n\n")))
911 ;; 13. Document's body.
912 contents
913 ;; 14. Creator.
914 (if (plist-get info :with-creator)
915 (concat (plist-get info :creator) "\n")
917 ;; 15. Document end.
918 "\\end{document}")))
922 ;;; Minor Mode
925 (defvar org-beamer-mode-map (make-sparse-keymap)
926 "The keymap for `org-beamer-mode'.")
927 (define-key org-beamer-mode-map "\C-c\C-b" 'org-beamer-select-environment)
929 ;;;###autoload
930 (define-minor-mode org-beamer-mode
931 "Support for editing Beamer oriented Org mode files."
932 nil " Bm" 'org-beamer-mode-map)
934 (when (fboundp 'font-lock-add-keywords)
935 (font-lock-add-keywords
936 'org-mode
937 '((":\\(B_[a-z]+\\|BMCOL\\):" 1 'org-beamer-tag prepend))
938 'prepend))
940 (defface org-beamer-tag '((t (:box (:line-width 1 :color grey40))))
941 "The special face for beamer tags."
942 :group 'org-export-beamer)
944 (defun org-beamer-property-changed (property value)
945 "Track the BEAMER_env property with tags.
946 PROPERTY is the name of the modified property. VALUE is its new
947 value."
948 (cond
949 ((equal property "BEAMER_env")
950 (save-excursion
951 (org-back-to-heading t)
952 ;; Filter out Beamer-related tags and install environment tag.
953 (let ((tags (org-remove-if (lambda (x) (string-match "^B_" x))
954 (org-get-tags)))
955 (env-tag (and (org-string-nw-p value) (concat "B_" value))))
956 (org-set-tags-to (if env-tag (cons env-tag tags) tags))
957 (when env-tag (org-toggle-tag env-tag 'on)))))
958 ((equal property "BEAMER_col")
959 (org-toggle-tag "BMCOL" (if (org-string-nw-p value) 'on 'off)))))
961 (add-hook 'org-property-changed-functions 'org-beamer-property-changed)
963 (defun org-beamer-allowed-property-values (property)
964 "Supply allowed values for PROPERTY."
965 (cond
966 ((and (equal property "BEAMER_env")
967 (not (org-entry-get nil (concat property "_ALL") 'inherit)))
968 ;; If no allowed values for BEAMER_env have been defined,
969 ;; supply all defined environments
970 (mapcar 'car (append org-beamer-environments-special
971 org-beamer-environments-extra
972 org-beamer-environments-default)))
973 ((and (equal property "BEAMER_col")
974 (not (org-entry-get nil (concat property "_ALL") 'inherit)))
975 ;; If no allowed values for BEAMER_col have been defined,
976 ;; supply some
977 (org-split-string org-beamer-column-widths " "))))
979 (add-hook 'org-property-allowed-value-functions
980 'org-beamer-allowed-property-values)
984 ;;; Commands
986 ;;;###autoload
987 (defun org-beamer-export-as-latex
988 (&optional async subtreep visible-only body-only ext-plist)
989 "Export current buffer as a Beamer buffer.
991 If narrowing is active in the current buffer, only export its
992 narrowed part.
994 If a region is active, export that region.
996 A non-nil optional argument ASYNC means the process should happen
997 asynchronously. The resulting buffer should be accessible
998 through the `org-export-stack' interface.
1000 When optional argument SUBTREEP is non-nil, export the sub-tree
1001 at point, extracting information from the headline properties
1002 first.
1004 When optional argument VISIBLE-ONLY is non-nil, don't export
1005 contents of hidden elements.
1007 When optional argument BODY-ONLY is non-nil, only write code
1008 between \"\\begin{document}\" and \"\\end{document}\".
1010 EXT-PLIST, when provided, is a property list with external
1011 parameters overriding Org default settings, but still inferior to
1012 file-local settings.
1014 Export is done in a buffer named \"*Org BEAMER Export*\", which
1015 will be displayed when `org-export-show-temporary-export-buffer'
1016 is non-nil."
1017 (interactive)
1018 (org-export-to-buffer 'beamer "*Org BEAMER Export*"
1019 async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
1021 ;;;###autoload
1022 (defun org-beamer-export-to-latex
1023 (&optional async subtreep visible-only body-only ext-plist)
1024 "Export current buffer as a Beamer presentation (tex).
1026 If narrowing is active in the current buffer, only export its
1027 narrowed part.
1029 If a region is active, export that region.
1031 A non-nil optional argument ASYNC means the process should happen
1032 asynchronously. The resulting file should be accessible through
1033 the `org-export-stack' interface.
1035 When optional argument SUBTREEP is non-nil, export the sub-tree
1036 at point, extracting information from the headline properties
1037 first.
1039 When optional argument VISIBLE-ONLY is non-nil, don't export
1040 contents of hidden elements.
1042 When optional argument BODY-ONLY is non-nil, only write code
1043 between \"\\begin{document}\" and \"\\end{document}\".
1045 EXT-PLIST, when provided, is a property list with external
1046 parameters overriding Org default settings, but still inferior to
1047 file-local settings.
1049 Return output file's name."
1050 (interactive)
1051 (let ((file (org-export-output-file-name ".tex" subtreep)))
1052 (org-export-to-file 'beamer file
1053 async subtreep visible-only body-only ext-plist)))
1055 ;;;###autoload
1056 (defun org-beamer-export-to-pdf
1057 (&optional async subtreep visible-only body-only ext-plist)
1058 "Export current buffer as a Beamer presentation (PDF).
1060 If narrowing is active in the current buffer, only export its
1061 narrowed part.
1063 If a region is active, export that region.
1065 A non-nil optional argument ASYNC means the process should happen
1066 asynchronously. The resulting file should be accessible through
1067 the `org-export-stack' interface.
1069 When optional argument SUBTREEP is non-nil, export the sub-tree
1070 at point, extracting information from the headline properties
1071 first.
1073 When optional argument VISIBLE-ONLY is non-nil, don't export
1074 contents of hidden elements.
1076 When optional argument BODY-ONLY is non-nil, only write code
1077 between \"\\begin{document}\" and \"\\end{document}\".
1079 EXT-PLIST, when provided, is a property list with external
1080 parameters overriding Org default settings, but still inferior to
1081 file-local settings.
1083 Return PDF file's name."
1084 (interactive)
1085 (let ((file (org-export-output-file-name ".tex" subtreep)))
1086 (org-export-to-file 'beamer file
1087 async subtreep visible-only body-only ext-plist
1088 (lambda (file) (org-latex-compile file)))))
1090 ;;;###autoload
1091 (defun org-beamer-select-environment ()
1092 "Select the environment to be used by beamer for this entry.
1093 While this uses (for convenience) a tag selection interface, the
1094 result of this command will be that the BEAMER_env *property* of
1095 the entry is set.
1097 In addition to this, the command will also set a tag as a visual
1098 aid, but the tag does not have any semantic meaning."
1099 (interactive)
1100 ;; Make sure `org-beamer-environments-special' has a higher
1101 ;; priority than `org-beamer-environments-extra'.
1102 (let* ((envs (append org-beamer-environments-special
1103 org-beamer-environments-extra
1104 org-beamer-environments-default))
1105 (org-tag-alist
1106 (append '((:startgroup))
1107 (mapcar (lambda (e) (cons (concat "B_" (car e))
1108 (string-to-char (nth 1 e))))
1109 envs)
1110 '((:endgroup))
1111 '(("BMCOL" . ?|))))
1112 (org-tag-persistent-alist nil)
1113 (org-use-fast-tag-selection t)
1114 (org-fast-tag-selection-single-key t))
1115 (org-set-tags)
1116 (let ((tags (or (ignore-errors (org-get-tags-string)) "")))
1117 (cond
1118 ;; For a column, automatically ask for its width.
1119 ((eq org-last-tag-selection-key ?|)
1120 (if (string-match ":BMCOL:" tags)
1121 (org-set-property "BEAMER_col" (read-string "Column width: "))
1122 (org-delete-property "BEAMER_col")))
1123 ;; For an "againframe" section, automatically ask for reference
1124 ;; to resumed frame and overlay specifications.
1125 ((eq org-last-tag-selection-key ?A)
1126 (if (equal (org-entry-get nil "BEAMER_env") "againframe")
1127 (progn (org-entry-delete nil "BEAMER_env")
1128 (org-entry-delete nil "BEAMER_ref")
1129 (org-entry-delete nil "BEAMER_act"))
1130 (org-entry-put nil "BEAMER_env" "againframe")
1131 (org-set-property
1132 "BEAMER_ref"
1133 (read-string "Frame reference (*Title, #custom-id, id:...): "))
1134 (org-set-property "BEAMER_act"
1135 (read-string "Overlay specification: "))))
1136 ((string-match (concat ":B_\\(" (mapconcat 'car envs "\\|") "\\):") tags)
1137 (org-entry-put nil "BEAMER_env" (match-string 1 tags)))
1138 (t (org-entry-delete nil "BEAMER_env"))))))
1140 ;;;###autoload
1141 (defun org-beamer-publish-to-latex (plist filename pub-dir)
1142 "Publish an Org file to a Beamer presentation (LaTeX).
1144 FILENAME is the filename of the Org file to be published. PLIST
1145 is the property list for the given project. PUB-DIR is the
1146 publishing directory.
1148 Return output file name."
1149 (org-publish-org-to 'beamer filename ".tex" plist pub-dir))
1151 ;;;###autoload
1152 (defun org-beamer-publish-to-pdf (plist filename pub-dir)
1153 "Publish an Org file to a Beamer presentation (PDF, via LaTeX).
1155 FILENAME is the filename of the Org file to be published. PLIST
1156 is the property list for the given project. PUB-DIR is the
1157 publishing directory.
1159 Return output file name."
1160 ;; Unlike to `org-beamer-publish-to-latex', PDF file is generated in
1161 ;; working directory and then moved to publishing directory.
1162 (org-publish-attachment
1163 plist
1164 (org-latex-compile
1165 (org-publish-org-to
1166 'beamer filename ".tex" plist (file-name-directory filename)))
1167 pub-dir))
1170 (provide 'ox-beamer)
1172 ;; Local variables:
1173 ;; generated-autoload-file: "org-loaddefs.el"
1174 ;; End:
1176 ;;; ox-beamer.el ends here