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