lTab

library(knitLatex)
knitr::opts_chunk$set(collapse = TRUE)
cars  <- mtcars[1:10,1:5]

Introduction

lTab is a function that produces a longtable environment.

For all of the examples that follow, we will be using the first ten rows and five columns of the mtcars data.frame, which we have saved in the variable 'cars'. In an actual use case, a table this small could easily be accommodated with lTab, however, for the purposes of these demonstrations, it will be easier to see the effects of the individual options without needing to comb through a large, multi-page table.

Important Notes

Basics

Standard lTab table

To produce a LaTeX table, simply pass a matrix or a data.frame to the lTab function.

lTab(cars)

Labels

Pass a string into the 'label' option. When not set, defaults to NULL.

lTab(cars, label = 'tab:mytable')

Captions

The lTab environment can place a caption in the head, firsthead, foot, or last foot. When placing captions in the firsthad or lastfoot, it is important to set these options (even if they are empty strings) or strange bugs can occur.

lTab(cars, caption.head = 'my caption in head')
lTab(cars,
     firsthead = 'f1 & f2 & f3 & f4 & f5 \\\\',
     caption.firsthead = 'my caption in firsthead')
lTab(cars, caption.foot = 'my caption in foot')
lTab(cars,
     lastfoot = '\\hline',
     caption.lastfoot = 'my caption in last foot')

Booktabs

Setting booktabs = TRUE sets the defaults of the toprule, midrule, and bottomrule arguments to \toprule, \midrule, and \bottomrule respectively. When using booktabs rules, regardless of whether you set booktabs = TRUE or set them individually, make sure to include \usepackage{booktabs} in your LaTeX document. When booktabs is not set, lTab looks for the value of kLat.lTab.booktabs, then kLat.booktabs, then defaults to FALSE.

lTab(cars, booktabs = TRUE)

If any of those options are explicitly set, the booktabs value has no effect.

lTab(cars, booktabs = TRUE, midrule = '\\hline')

Headers

Head

By default, lTab will use the column names for the head of the table(as demonstrated in the above examples). The head argument is displayed at the top of the table on each page that the table spans. To customize the table head simply pass in the appropriate LaTeX to the 'head' argument. The values of toprule and midrule are still used and should not be set in the head argument. If you do not want them included in your custom header, set either or both to NULL

lTab(cars,
     head = 'col1 & col 2 & col3 & \\eta & col5 \\\\')

Pass in NULL to avoid a table head. In the case of a NULL head, toprule and midrule will not be used.

lTab(cars, head = NULL)

To preserve the top and midrules, pass an empty string to head. Often, people want a toprule with no head or midrule. In that case, pass an empty string into the head argument and NULL into midule. You can then use the default toprule value (as depicted below), explicitly set toprule, or set booktabs = TRUE to set the toprule and bottomrule simultaneously.

lTab(cars, head = '', midrule = NULL)

FirstHead

In a supertabular environment, it is possible to present a different first head (i.e. header on first page of table only).

lTab(cars,
     firsthead = 'f1 & f2 & f3 & f4 & f5 \\\\')

Important Note

As demonstrated in the above example, both head and firsthead use the toprule and midrule commands by default. If you desire to use different commands for the head and firsthead (or if you want one, but not both to use a top and midrule), you must set both toprule and midrule to NULL and manually insert the commands into head and firsthead as shown below examples.

lTab(cars, toprule = NULL, midrule = NULL,
     firsthead = '\\toprule\nf1 & f2 & f3 & f4 & f5 \\\\\nmidrule',
     head = '\\hline\n col1 & col2 & col3 & cll4 & col5 \\\\\n\\hline')
lTab(cars, toprule = NULL, midrule = NULL,
     firsthead = '\\toprule\nf1 & f2 & f3 & f4 & f5 \\\\\nmidrule',
     head = '\\toprule')

Rows

Rownames

When including row names in a table, by default lTab will use an empty column name for the 'rownames' column. When rows is not set, lTab looks for the value of kLat.lTab.rows, then klat.rows, then defaults to false.

lTab(cars, rows = TRUE)

Rownames with custom header

When providing a custom head with rows set to TRUE, remember to account for the extra column produced by the row names

lTab(cars,
     rows =  TRUE,
     head = 'rows & col1 & col2 & col3 & \\eta & col5 \\\\')

Row separator

Any arbitrary LaTeX command can be inserted between each row, but the most common are \hline and \midrule. To use \midrule, \usepackage{booktabs} must be declared in the preamble of the LaTeX document, but booktabs = TRUE does not need to be set on the table. When rowsep is not set, lTab looks for the value of kLat.lTab.rowsep, then kLat.rowsep, then defaults to an empty string.

lTab(cars, rowsep = '\\hline')
lTab(cars, rowsep = '\\midrule')

Columns

Column alginment

Explicitly set the column definitions. If this is set, colsep will have no effect and you must handle column separation within this declaration. Defaults to 'r' for numeric vector columns and 'l' for character vector columns.

lTab(cars, coldef ='rlc|l|p{5cm}')

Column separator

Place any arbitrary LaTeX between each column. Will have no effect if coldef is set.

lTab(cars, colsep = '|')


Try the knitLatex package in your browser

Any scripts or data that you put into this service are public.

knitLatex documentation built on May 2, 2019, 5:23 a.m.