mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-29 07:58:21 +00:00
LaTeX export: Only define a caption for longtable if there is one
Report by Ulf Stegemann.
This commit is contained in:
parent
89276e1982
commit
567c753f8b
@ -1,5 +1,8 @@
|
||||
2009-12-16 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-latex.el (org-export-latex-tables): Only add a caption when
|
||||
macro in in longtable environments if one has been defined.
|
||||
|
||||
* org-html.el (org-export-as-html): Only take title from buffer if
|
||||
not exporting body-only.
|
||||
|
||||
|
@ -1533,7 +1533,7 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
|
||||
(if longtblp
|
||||
(concat "\\begin{longtable}{" align "}\n")
|
||||
(if floatp "\\begin{table}[htb]\n"))
|
||||
(if (or floatp longtblp)
|
||||
(if floatp
|
||||
(format
|
||||
"\\caption{%s%s}"
|
||||
(if label (concat "\\\label{" label "}") "")
|
||||
|
Loading…
Reference in New Issue
Block a user