Variable: org-latex-line-break-safe

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

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 ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(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}")