Variable: org-latex-line-break-safe

org-latex-line-break-safe is a variable defined in org-compat.el.gz.

Value

"\\\\[0pt]"

Documentation

Linebreak protecting the following [...].

Without "[0pt]" it would be interpreted as an optional argument to the \\.

This constant, for example, makes the below code not err:

\begin{tabular}{c|c}
    [t] & s\M-x 0pt (0pt)
    [I] & A\M-x 0pt (0pt)
    [m] & kg
\end{tabular}

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-compat.el.gz
(defconst org-latex-line-break-safe "\\\\[0pt]"
  "Linebreak protecting the following [...].

Without \"[0pt]\" it would be interpreted as an optional argument to
the \\\\.

This constant, for example, makes the below code not err:

\\begin{tabular}{c|c}
    [t] & s\\\\[0pt]
    [I] & A\\\\[0pt]
    [m] & kg
\\end{tabular}")