Switch to \verb in LaTeX export for code-like snippets.

Emphasis expressions ~...~ and =...= are not typeset using \verb.
You cannot include the vertical bar in these snippets as this is the
delimiter.
This commit is contained in:
Carsten Dominik 2008-12-15 13:01:50 +01:00
parent b786f4da93
commit 411f9d174f
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2008-12-15 Carsten Dominik <carsten.dominik@gmail.com>
* org-export-latex.el (org-export-latex-emphasis-alist): Switch to
\verb for colde-like snippets.
* org.el (org-up-heading-safe): Speed up function by using a
direct regexp search.
(org-olpa): New variable.

View File

@ -163,8 +163,8 @@ to represent the section title."
("/" "\\emph{%s}" nil)
("_" "\\underline{%s}" nil)
("+" "\\texttt{%s}" nil)
("=" "\\texttt{%s}" nil)
("~" "\\texttt{%s}" t))
("=" "\\verb|%s|" nil)
("~" "\\verb|%s|" t))
"Alist of LaTeX expressions to convert emphasis fontifiers.
Each element of the list is a list of three elements.
The first element is the character used as a marker for fontification.