Variable: cal-tex-LaTeX-subst-list

cal-tex-LaTeX-subst-list is a variable defined in cal-tex.el.gz.

Value

(("\"" . "``")
 ("\"" . "''")
 ("&" . "\\&")
 ("%" . "\\%")
 ("$" . "\\$")
 ("#" . "\\#")
 ("_" . "\\_")
 ("{" . "\\{")
 ("}" . "\\}")
 ("<" . "$<$")
 (">" . "$>$")
 ("\n" . "\\ \\\\"))

Documentation

Alist of symbols and their LaTeX replacements.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defconst cal-tex-LaTeX-subst-list
  '(("\"". "``")
    ("\"". "''")        ; quote changes meaning when list is reversed
    ;; Don't think this is necessary, and in any case, does not work:
    ;; "LaTeX Error: \verb illegal in command argument".
;;;    ("@" . "\\verb|@|")
    ("&" . "\\&")
    ("%" . "\\%")
    ("$" . "\\$")
    ("#" . "\\#")
    ("_" . "\\_")
    ("{" . "\\{")
    ("}" . "\\}")
    ("<" . "$<$")
    (">" . "$>$")
    ("\n" . "\\ \\\\")) ; \\ needed for e.g \begin{center}\n AA\end{center}
  "Alist of symbols and their LaTeX replacements.")