Add the ChangeLog entries
This commit is contained in:
parent
a6544ef711
commit
f813b09747
|
@ -1,3 +1,7 @@
|
|||
2010-04-01 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.texi (The export dispatcher): Renamed from ASCII export.
|
||||
|
||||
2010-03-29 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.texi (Images and tables): Document how to reference labels.
|
||||
|
|
|
@ -1,3 +1,34 @@
|
|||
2010-04-01 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-entities): Require the new file.
|
||||
(org-export-latex-default-packages-alist): New variable.
|
||||
(org-complete): Use new entity code for completion.
|
||||
(org-create-formula-image): Use the new packages variable.
|
||||
|
||||
* org-latex.el (org-export-latex-classes): Remove the standard
|
||||
packages from the class headers.
|
||||
(org-export-latex-make-header): Use the new package variable.
|
||||
(org-export-latex-special-chars): Better regexp for entities, to
|
||||
support entity name that contain numbers.
|
||||
(org-export-latex-treat-backslash-char): Use the new entity code.
|
||||
|
||||
* org-html.el (org-html-do-expand): Use the new entity code.
|
||||
|
||||
* org-exp.el (org-export): Add the new export commands.
|
||||
(org-html-entities): Constant removed.
|
||||
(org-export-visible): Add the new export commands.
|
||||
|
||||
* org-entities.el: New file.
|
||||
|
||||
* org-docbook.el (org-docbook-do-expand): Use new entity code.
|
||||
|
||||
* org-ascii.el (org-export-ascii-entities): New variable.
|
||||
(org-export-as-latin1, org-export-as-latin1-to-buffer)
|
||||
(org-export-as-utf8, org-export-as-utf8-to-buffer): New commands.
|
||||
(org-export-as-encoding): New function.
|
||||
(org-export-ascii-preprocess): Call `org-ascii-replace-entities'.
|
||||
(org-ascii-replace-entities): New function.
|
||||
|
||||
2010-03-31 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-html.el (org-html-level-start): Catch the case that target
|
||||
|
|
|
@ -128,10 +128,10 @@ The header string
|
|||
-----------------
|
||||
|
||||
The HEADER-STRING is the header that will be inserted into the LaTeX file.
|
||||
It should really only contain the contain the \\documentclass macro.
|
||||
If can also contain package calls via \\usepackage, but it should only
|
||||
do so if any packages absolutely must be loaded before the packages given
|
||||
in `org-export-latex-default-packages-alist' and
|
||||
It should really only contain the contain the \\documentclass macro, and
|
||||
setup code that is specific to this class. This will be augmented by
|
||||
call to \\usepackage for all packages mentioned in the variables
|
||||
`org-export-latex-default-packages-alist' and
|
||||
`org-export-latex-packages-alist'. Lines specified via \"#+LaTeX_HEADER:\"
|
||||
are also added.
|
||||
`org-export-latex-default-packages-alist' contains
|
||||
|
|
|
@ -2966,6 +2966,7 @@ Each cell is of the format \( \"options\" . \"package\" \)."
|
|||
|
||||
(defcustom org-export-latex-packages-alist nil
|
||||
"Alist of packages to be inserted in the header.
|
||||
These will be inserted after `org-export-latex-default-packages-alist'.
|
||||
Each cell is of the format \( \"options\" . \"package\" \)."
|
||||
:group 'org-export-latex
|
||||
:type '(repeat
|
||||
|
|
Loading…
Reference in New Issue