]> git.donarmstrong.com Git - xtable.git/blob - pkg/NEWS
Fixed #2309. Altered xtableGallery.snw to illustrate new functionality. Moved vignett...
[xtable.git] / pkg / NEWS
1 1.7-3 (NOT YET RELEASED)
2   * Fixed booktabs bug (#2309), more of an enhancement really. Updated
3     xtableGallery.snw to illustrate the change.
4   * Moved vignettes from inst/doc to vignettes as now required by CRAN
5
6 1.7-2 (NOT YET RELEASED)
7   * Fixed HTML gsub bug (#2795)
8   * Dealt with format.args bug (#4770). No code changes, but the
9     documentation of print.xtable was changed to warn of the problem
10     and to give a workaround as an example
11
12 1.7-1 (2013-02-24)
13   * Fixed logicals bug (Req #1911)
14   * Changed implementation of centering of tables. Instead of
15     inserting a centered environment, now a \centering command is
16     inserted. (Req #2104)
17   * Allow for margin tables as possible with document class
18     tufte-handout. An example of usage is found in the vignette
19         produced by margintable.Rnw which is in inst/doc. (Req #2168)
20   * Added "timestamp" argument to print.xtable().  Set it to NULL
21     if no timestamp is desired. (Req #2246)
22   * Added "comment" argument to print.xtable().  Set it to FALSE
23     to exclude the version and timestamp comment. (Req #2246)
24   * Added "caption.width" argument.  If not NULL then the caption
25     is placed in a "parbox" of the specified width. (Req #2247)
26   * Remove the check on whether the "floating.environment" is in a
27     list of known floating environments. Users want to use floating
28     environments from multiple options LaTeX packages (Req #2488,
29     #2578)
30
31 1.7-0 (2012-02-10)
32   * Added some vectorization code to improve performance.
33   * Let "caption" be length 2, in which case the second value is
34     the short caption used when creating a list of tables.
35   * Added "toLatex" method.
36   * Included "print.xtable" in the exported methods in the NAMESPACE file.
37   * Added "print.results" argument to "print" that can be used to
38     suppress the printing.
39   * Added "format.args" argument to "print" that can be used to
40     pass additional arguments such as "big.marks" to "formatC()".
41   * Added "rotate.colnames" and "rotate.rownames" arguments to
42     "print.xtable".
43   * Added "booktabs" argument to use the "\toprule", "\midrule", and
44     "\bottomrule" tags from the Latex "booktabs" package rather than
45         using "\hline" for all horizontal lines.
46   * Added "scalebox" argument to include a "\scalebox" clause around
47     the tabular environment with the specified value used as the
48     scaling factor.
49   * Added "width" argument to allow specification of the width
50     value in tabular environments such as "tabularx".
51   * Added "X" as an allowed alignment value in the "align()"
52     replacement function.
53   * Changed the "print.xtable()" arguments to use "getOption()"
54     to check the options for a default value.  This was suggested
55         since "print.xtable()" has a lot of arguments that the user
56         will typically leave unchanged between tables.
57   * Added an "is.null()" check on the "table.placement" argument.
58   * Added examples using the new arguments to the vignette.
59
60 1.6-0 (2011-10-07)
61   * Allow "table*" as a value for "floating.environment" in print.xtable().
62   * Fix bug under which multiple logical columns were formatted incorrectly.
63   * Stop with an error if "xtable.table" is used on a table with more than
64     two dimensions.
65   * Add some newlines to "Rd" file to prevent lines from extending off the
66     page in the PDF version of the help files.
67   * Changed the maintainer to "Charles Roosen".
68   * Created an "xtable" project on R-Forge.
69
70 1.5-6 (2009-10-30)
71   * Support caption at the top in the LaTeX longtable.
72   * Use options()$OutDec for decimal mark.
73
74 1.5-5 (2009-03-24)
75   * Added html.table.attributes to set the attributed of the <TABLE> tag for HTML tables.
76   * Accommodated logicals by converting to characters.
77   * Add an extra space at end of each line for LaTeX tables.
78   * Fixed typographical error in documentation.