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