tables: Functions related to parsing LaTeX tables

tablesR 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


parseLatex documentation built on April 3, 2025, 5:27 p.m.