orgtbl-to-texinfo

orgtbl-to-texinfo is an autoloaded Lisp function in `org-table.el'.

(orgtbl-to-texinfo TABLE PARAMS)

Convert the orgtbl-mode TABLE to TeXInfo.
TABLE is a list, each entry either the symbol `hline' for a horizontal
separator line, or a list of fields for that line.
PARAMS is a property list of parameters that can influence the conversion.
Supports all parameters from `orgtbl-to-generic'. Most important for
TeXInfo are:

:splice nil/t When set to t, return only table body lines, don't wrap
them into a multitable environment. Default is nil.

:fmt fmt A format to be used to wrap the field, should contain
%s for the original field value. For example, to wrap
everything in @kbd{}, you could use :fmt "@kbd{%s}".
This may also be a property list with column numbers and
formats. For example :fmt (2 "@kbd{%s}" 4 "@code{%s}").
Each format also may be a function that formats its one
argument.

:cf "f1 f2.." The column fractions for the table. By default these
are computed automatically from the width of the columns
under org-mode.

The general parameters :skip and :skipcols have already been applied when
this function is called.