Function: org-table--org-tabbing
org-table--org-tabbing is a byte-compiled function defined in
ox-latex.el.gz.
Signature
(org-table--org-tabbing TABLE CONTENTS INFO)
Documentation
Return tabbing environment LaTeX code for Org table.
TABLE is the table type element to transcode. CONTENTS is its contents, as a string. INFO is a plist used as a communication channel.
This function assumes TABLE has org as its :type property and
tabbing as its :mode attribute.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defun org-table--org-tabbing (table contents info)
"Return tabbing environment LaTeX code for Org table.
TABLE is the table type element to transcode. CONTENTS is its
contents, as a string. INFO is a plist used as a communication
channel.
This function assumes TABLE has `org' as its `:type' property and
`tabbing' as its `:mode' attribute."
(format "\\begin{%s}\n%s\n%s\\end{%s}"
"tabbing"
(org-latex--align-string-tabbing table info)
contents
"tabbing"))