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