Function: allout-latex-verb-quote

allout-latex-verb-quote is a byte-compiled function defined in allout.el.gz.

Signature

(allout-latex-verb-quote STRING &optional FLOW)

Documentation

Return copy of STRING for literal reproduction across LaTeX processing.

Expresses the original characters (including carriage returns) of the string across LaTeX processing.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_  - LaTeX formatting
;;;_   > allout-latex-verb-quote (string &optional flow)
(defun allout-latex-verb-quote (string &optional _flow)
  "Return copy of STRING for literal reproduction across LaTeX processing.
Expresses the original characters (including carriage returns) of the
string across LaTeX processing."
  (mapconcat (lambda (char)
               (cond ((memq char '(?\\ ?$ ?% ?# ?& ?{ ?} ?_ ?^ ?- ?*))
                      (concat "\\char" (number-to-string char) "{}"))
                     ((= char ?\n) "\\\\")
                     (t (char-to-string char))))
	     string
	     ""))