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