tables {parseLatex} | R Documentation |
Functions related to parsing LaTeX tables
Description
Functions related to parsing LaTeX tables
Usage
is_tabular(item)
find_tabular(items, start = 1)
Arguments
item |
An item from a LaTeX2 list object. |
items |
A LaTeX2 list object. |
start |
Where to start looking. |
Value
is_tabular()
returns boolean indicating if this is
a tabular-like environment.
find_tabular()
returns the index of the first
tabular-like environment, or NA
if none is found.
Examples
latex <- kableExtra::kbl(mtcars[1:2, 1:2], format = "latex")
parsed <- parseLatex(latex)
is_tabular(parsed[[2]])
find_tabular(parsed)
table <- parsed[[find_tabular(parsed)]]
table
[Package parseLatex version 0.4.1 Index]