diff --git a/doc/org.texi b/doc/org.texi index 16440141d..3a451263c 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -11616,8 +11616,11 @@ environment. Default mode is determined in @item :environment @vindex org-latex-default-table-environment Environment used for the table. It can be set to any @LaTeX{} table -environment, like @code{tabularx}, @code{longtable}, @code{array}, -@code{tabu}, @code{bmatrix}@enddots{} It defaults to +environment, like @code{tabularx}@footnote{Requires adding the +@code{tabularx} package to @code{org-latex-packages-alist}.}, +@code{longtable}, @code{array}, @code{tabu}@footnote{Requires adding the +@code{tabu} package to @code{org-latex-packages-alist}.}, +@code{bmatrix}@enddots{} It defaults to @code{org-latex-default-table-environment} value. @item :caption @code{#+CAPTION} keyword is the simplest way to set a caption for a table diff --git a/lisp/org.el b/lisp/org.el index c319c7f12..0cf141c24 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -3834,6 +3834,7 @@ header, or they will be appended." ("" "longtable" nil) ("" "float" nil) ("" "wrapfig" nil) + ("" "rotating" nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" t) @@ -3851,14 +3852,16 @@ The packages in this list are needed by one part or another of Org mode to function properly: - inputenc, fontenc: for basic font and character selection +- fixltx2e: Important patches of LaTeX itself +- graphicx: for including images +- longtable: For multipage tables +- float, wrapfig: for figure placement +- rotating: for sideways figures and tables +- ulem: for underline and strike-through - amsmath: for subscript and superscript and math environments - textcomp, marvosymb, wasysym, amssymb: for various symbols used for interpreting the entities in `org-entities'. You can skip some of these packages if you don't use any of their symbols. -- ulem: for underline and strike-through -- graphicx: for including images -- float, wrapfig: for figure placement -- longtable: for long tables - hyperref: for cross references Therefore you should not modify this variable unless you know