This causes problems in tables. You have now two ways to make verbatim things. Use ~xyz~ or =xyz= depending on whether ~ or = might occur in the string......
@@ -1,5 +1,8 @@
2009-02-02 Carsten Dominik <carsten.dominik@gmail.com>
+ * org-export-latex.el (org-export-latex-emphasis-alist): Use = and
+ ~ as verbatim delimiters.
+
* org-exp.el (org-export-html-format-image): New argument
PAR-OPEN.
(org-export-as-html): Pass par-open to
@@ -165,8 +165,8 @@ to represent the section title."
("/" "\\emph{%s}" nil)
("_" "\\underline{%s}" nil)
("+" "\\texttt{%s}" nil)
- ("=" "\\verb|%s|" nil)
- ("~" "\\verb|%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.