]> git.donarmstrong.com Git - xtable.git/blob - pkg/NEWS
366728731b7ca939153e55725237a12994394767
[xtable.git] / pkg / NEWS
1 1.8-3 (NOT YET SUBMITTED TO CRAN)
2   * Corrected call to print.xtable inside print.xtableFtable included
3     arguments from call to print.xtableFtable. Absence of size
4     argumnet was advised by Lluis Ramon, email March 4, 2016
5   
6 1.8-2 (2016-02-05)
7   * Added function print.xtableMatharray to enable easy creation of
8     LaTeX code to enable an array to be included in a document.
9   * Added example to the gallery using sanitizing headings and row
10     names to produce large bold headings and italic row names.
11   * Added code from Martin Gubri, martin.gubri@framasoft.org, to produce
12     tables from the spatial econometrics packages, spdep, splm, and
13     sphet.
14   * Extracted sanitize functions from print.xtable as stand-alone
15     functions, and exported them. Added helper functions as.is and
16     as.math for assistance with sanitization (supplied by Stefan
17     Edwards <sme@iysik.com> in Feature Request #5303).
18   * Added option to produce math style exponents when sanitizing
19     numbers, as suggested by Don Armstrong <don@donarmstrong.com>, who
20     also provided code
21   * Fixed bug #6907. Warning was created when the data frame as no
22     rows for type is 'html'. Added a test to create the matrix
23     requested specially in that case. Original code was
24     BTD2 <- matrix(align.tmp[(2-pos):(ncol(x)+1)],
25                    nrow = nrow(x), ncol = ncol(x)+pos, byrow = TRUE)
26     which created a matrix with no rows, but gave a warning when
27     there were no rows in the data frame being processed.
28   * Fixed bug #6260. Accepted the change suggested by Claudius
29     Loehnert, which was to replace { and } by \begingroup and
30     \endgroup respectively as the delimiters when size was to changed
31     in a table.
32   * Added functions xtableList and print.xtableList to produce
33     composite tables consisting of a number of subtables.
34   * Added xtableFtable and print.xtableFtable to format flat tables
35     produced by ftable. Included examples in the xtable gallery.
36   * Produced new vignettes: 'The xtableList Gallery' to illustrate
37     xtableList and print.xtableList; and 'The Other Packages Gallery'
38     to illustrate methods for classes of objects from other packages.
39
40 1.8-0 (2015-11-02)
41   * autoformat, xalign, xdigits, xdisplay from Arni Magnusson, added
42     along with help file. Feature request #5686.
43   * New argument 'auto' in xtable(), to call xalign, xdigits, and
44     xdisplay at the time when xtable is created.
45   * Updated xtableGallery vignette, now with TOC and revised examples.
46
47 1.7-4 (2014-09-11)
48   * Changed tags in HTML to be all lower case, to be compatible with
49     HTML5, part of feature request. (#5879)
50   * Fixed booktabs bug (#2309), more of an enhancement really. Updated
51     xtableGallery.snw to illustrate the change.
52
53 1.7-3 (2014-03-06)
54   * Dealt with format.args bug (#4770). No code changes, but the
55     documentation of print.xtable was changed to warn of the problem
56     and to give a workaround as an example.
57
58 1.7-1 (2013-02-24)
59   * Fixed logicals bug. (Req #1911)
60   * Changed implementation of centering of tables. Instead of
61     inserting a centered environment, now a \centering command is
62     inserted. (Req #2104)
63   * Allow for margin tables as possible with document class
64     tufte-handout. An example of usage is found in the vignette.
65     produced by margintable.Rnw which is in inst/doc. (Req #2168)
66   * Added "timestamp" argument to print.xtable().  Set it to NULL
67     if no timestamp is desired. (Req #2246)
68   * Added "comment" argument to print.xtable().  Set it to FALSE
69     to exclude the version and timestamp comment. (Req #2246)
70   * Added "caption.width" argument.  If not NULL then the caption
71     is placed in a "parbox" of the specified width. (Req #2247)
72   * Remove the check on whether the "floating.environment" is in a
73     list of known floating environments. Users want to use floating
74     environments from multiple options LaTeX packages. (Req #2488,
75     #2578)
76
77 1.7-0 (2012-02-10)
78   * Added some vectorization code to improve performance.
79   * Let "caption" be length 2, in which case the second value is
80     the short caption used when creating a list of tables.
81   * Added "toLatex" method.
82   * Included "print.xtable" in the exported methods in the NAMESPACE file.
83   * Added "print.results" argument to "print" that can be used to
84     suppress the printing.
85   * Added "format.args" argument to "print" that can be used to
86     pass additional arguments such as "big.marks" to "formatC()".
87   * Added "rotate.colnames" and "rotate.rownames" arguments to
88     "print.xtable".
89   * Added "booktabs" argument to use the "\toprule", "\midrule", and
90     "\bottomrule" tags from the Latex "booktabs" package rather than
91     using "\hline" for all horizontal lines.
92   * Added "scalebox" argument to include a "\scalebox" clause around
93     the tabular environment with the specified value used as the
94     scaling factor.
95   * Added "width" argument to allow specification of the width
96     value in tabular environments such as "tabularx".
97   * Added "X" as an allowed alignment value in the "align()"
98     replacement function.
99   * Changed the "print.xtable()" arguments to use "getOption()"
100     to check the options for a default value.  This was suggested
101     since "print.xtable()" has a lot of arguments that the user
102     will typically leave unchanged between tables.
103   * Added an "is.null()" check on the "table.placement" argument.
104   * Added examples using the new arguments to the vignette.
105
106 1.6-0 (2011-10-07)
107   * Allow "table*" as a value for "floating.environment" in print.xtable().
108   * Fix bug under which multiple logical columns were formatted incorrectly.
109   * Stop with an error if "xtable.table" is used on a table with more than
110     two dimensions.
111   * Add some newlines to "Rd" file to prevent lines from extending off the
112     page in the PDF version of the help files.
113   * Changed the maintainer to "Charles Roosen".
114   * Created an "xtable" project on R-Forge.
115
116 1.5-6 (2009-10-30)
117   * Support caption at the top in the LaTeX longtable.
118   * Use options()$OutDec for decimal mark.
119
120 1.5-5 (2009-03-24)
121   * Added html.table.attributes to set the attributed of the <TABLE> tag for
122     HTML tables.
123   * Accommodated logicals by converting to characters.
124   * Add an extra space at end of each line for LaTeX tables.
125   * Fixed typographical error in documentation.