Add :version to org-beamer.el options.

This commit is contained in:
Bastien Guerry 2012-04-03 13:08:32 +02:00
parent 6d1ec16a5a
commit 9b40893709
1 changed files with 9 additions and 0 deletions

View File

@ -43,6 +43,7 @@
(defcustom org-beamer-use-parts nil (defcustom org-beamer-use-parts nil
"" ""
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type 'boolean) :type 'boolean)
(defcustom org-beamer-frame-level 1 (defcustom org-beamer-frame-level 1
@ -52,6 +53,7 @@ Setting this to 2 will allow sections, 3 will allow subsections as well.
You can set this to 4 as well, if you at the same time set You can set this to 4 as well, if you at the same time set
`org-beamer-use-parts' to make the top levels `\part'." `org-beamer-use-parts' to make the top levels `\part'."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(choice :type '(choice
(const :tag "Frames need a BEAMER_env property" nil) (const :tag "Frames need a BEAMER_env property" nil)
(integer :tag "Specific level makes a frame"))) (integer :tag "Specific level makes a frame")))
@ -60,12 +62,14 @@ You can set this to 4 as well, if you at the same time set
"Default options string to use for frames, should contains the [brackets]. "Default options string to use for frames, should contains the [brackets].
And example for this is \"[allowframebreaks]\"." And example for this is \"[allowframebreaks]\"."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(string :tag "[options]")) :type '(string :tag "[options]"))
(defcustom org-beamer-column-view-format (defcustom org-beamer-column-view-format
"%45ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %8BEAMER_extra(Extra)" "%45ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %8BEAMER_extra(Extra)"
"Default column view format that should be used to fill the template." "Default column view format that should be used to fill the template."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(choice :type '(choice
(const :tag "Do not insert Beamer column view format" nil) (const :tag "Do not insert Beamer column view format" nil)
(string :tag "Beamer column view format"))) (string :tag "Beamer column view format")))
@ -76,6 +80,7 @@ And example for this is \"[allowframebreaks]\"."
When a beamer template is filled, this will be the default for When a beamer template is filled, this will be the default for
BEAMER_HEADER_EXTRA, which will be inserted just before \\begin{document}." BEAMER_HEADER_EXTRA, which will be inserted just before \\begin{document}."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(choice :type '(choice
(const :tag "Do not insert Beamer themes" nil) (const :tag "Do not insert Beamer themes" nil)
(string :tag "Beamer themes"))) (string :tag "Beamer themes")))
@ -142,6 +147,7 @@ open The opening template for the environment, with the following escapes
close The closing string of the environment." close The closing string of the environment."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(repeat :type '(repeat
(list (list
(string :tag "Environment") (string :tag "Environment")
@ -402,6 +408,7 @@ the value will be inserted right after the documentclass statement."
(defcustom org-beamer-fragile-re "\\\\\\(verb\\|lstinline\\)\\|^[ \t]*\\\\begin{\\(verbatim\\|lstlisting\\|minted\\)}" (defcustom org-beamer-fragile-re "\\\\\\(verb\\|lstinline\\)\\|^[ \t]*\\\\begin{\\(verbatim\\|lstlisting\\|minted\\)}"
"If this regexp matches in a frame, the frame is marked as fragile." "If this regexp matches in a frame, the frame is marked as fragile."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type 'regexp) :type 'regexp)
(defface org-beamer-tag '((t (:box (:line-width 1 :color grey40)))) (defface org-beamer-tag '((t (:box (:line-width 1 :color grey40))))
@ -511,6 +518,7 @@ This function will run in the final LaTeX document."
(defcustom org-beamer-outline-frame-title "Outline" (defcustom org-beamer-outline-frame-title "Outline"
"Default title of a frame containing an outline." "Default title of a frame containing an outline."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(string :tag "Outline frame title") :type '(string :tag "Outline frame title")
) )
@ -519,6 +527,7 @@ This function will run in the final LaTeX document."
You might want to put e.g. [allowframebreaks=0.9] here. Remember to You might want to put e.g. [allowframebreaks=0.9] here. Remember to
include square brackets." include square brackets."
:group 'org-beamer :group 'org-beamer
:version "24.1"
:type '(string :tag "Outline frame options") :type '(string :tag "Outline frame options")
) )