LaTeX export: Fix line end after caption command for longtable environments
This commit is contained in:
parent
e0e2d98378
commit
30d179c85e
|
@ -1,3 +1,8 @@
|
||||||
|
2009-12-17 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
||||||
|
* org-latex.el (org-export-latex-tables): No forced line end if
|
||||||
|
there is no caption.
|
||||||
|
|
||||||
2009-12-16 Carsten Dominik <carsten.dominik@gmail.com>
|
2009-12-16 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
||||||
* org-exp.el (org-html-entities): Add Euro symbols from Marvosym
|
* org-exp.el (org-html-entities): Add Euro symbols from Marvosym
|
||||||
|
|
|
@ -1538,7 +1538,7 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
|
||||||
"\\caption{%s%s}"
|
"\\caption{%s%s}"
|
||||||
(if label (concat "\\\label{" label "}") "")
|
(if label (concat "\\\label{" label "}") "")
|
||||||
(or caption "")))
|
(or caption "")))
|
||||||
(if longtblp "\\\\\n" "\n")
|
(if (and longtblp caption) "\\\\\n" "\n")
|
||||||
(if (and org-export-latex-tables-centered (not longtblp))
|
(if (and org-export-latex-tables-centered (not longtblp))
|
||||||
"\\begin{center}\n")
|
"\\begin{center}\n")
|
||||||
(if (not longtblp) (concat "\\begin{tabular}{" align "}\n"))
|
(if (not longtblp) (concat "\\begin{tabular}{" align "}\n"))
|
||||||
|
|
Loading…
Reference in New Issue