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