documentation of new attr_latex options for tables
* doc/org.texi (Tables in LaTeX export): Documentation of new attr_latex options for tables.
This commit is contained in:
parent
d37705391e
commit
5f1850af40
19
doc/org.texi
19
doc/org.texi
|
@ -9978,9 +9978,10 @@ All lines between these markers are exported literally
|
||||||
For @LaTeX{} export of a table, you can specify a label and a caption
|
For @LaTeX{} export of a table, you can specify a label and a caption
|
||||||
(@pxref{Images and tables}). You can also use the @code{ATTR_LaTeX} line to
|
(@pxref{Images and tables}). You can also use the @code{ATTR_LaTeX} line to
|
||||||
request a @code{longtable} environment for the table, so that it may span
|
request a @code{longtable} environment for the table, so that it may span
|
||||||
several pages, or provide the @code{multicolumn} keyword that will make the
|
several pages, or to change the default table environment from @code{table}
|
||||||
table span the page in a multicolumn environment (@code{table*} environment).
|
to @code{table*} or to change the default inner tabular environment to
|
||||||
Finally, you can set the alignment string:
|
@code{tabularx} or @code{tabulary}. Finally, you can set the alignment
|
||||||
|
string, and (with @code{tabularx} or @code{tabulary}) the width:
|
||||||
|
|
||||||
@cindex #+CAPTION
|
@cindex #+CAPTION
|
||||||
@cindex #+LABEL
|
@cindex #+LABEL
|
||||||
|
@ -9993,6 +9994,18 @@ Finally, you can set the alignment string:
|
||||||
| ..... | ..... |
|
| ..... | ..... |
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
|
or to specify a multicolumn table with @code{tabulary}
|
||||||
|
|
||||||
|
@cindex #+CAPTION
|
||||||
|
@cindex #+LABEL
|
||||||
|
@cindex #+ATTR_LaTeX
|
||||||
|
@example
|
||||||
|
#+CAPTION: A wide table with tabulary
|
||||||
|
#+LABEL: tbl:wide
|
||||||
|
#+ATTR_LaTeX: table* tabulary width=\textwidth
|
||||||
|
| ..... | ..... |
|
||||||
|
| ..... | ..... |
|
||||||
|
@end example
|
||||||
|
|
||||||
@node Images in LaTeX export, Beamer class export, Tables in LaTeX export, LaTeX and PDF export
|
@node Images in LaTeX export, Beamer class export, Tables in LaTeX export, LaTeX and PDF export
|
||||||
@subsection Images in @LaTeX{} export
|
@subsection Images in @LaTeX{} export
|
||||||
|
|
Loading…
Reference in New Issue