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