From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Broschinsky Subject: Why is text marked as ~verbatim~ exported in LaTeX as \texttt{} Date: Fri, 28 Jan 2011 16:25:39 -0700 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=37195 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PixhF-0006sA-Gb for emacs-orgmode@gnu.org; Fri, 28 Jan 2011 18:25:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PixhE-000658-Nf for emacs-orgmode@gnu.org; Fri, 28 Jan 2011 18:25:41 -0500 Received: from mail-gx0-f169.google.com ([209.85.161.169]:54822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PixhE-00064o-Kh for emacs-orgmode@gnu.org; Fri, 28 Jan 2011 18:25:40 -0500 Received: by gxk5 with SMTP id 5so1610500gxk.0 for ; Fri, 28 Jan 2011 15:25:39 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I have a small test document: #+TITLE: Title This is normal text. =This is teletype text.= ~This is verbatim text.~ When I choose the LaTeX export option and inspect the LaTeX output, I see that both the text marked as =code= and the text marked as ~verbatim~ are exported as \texttt{}. I expected that =code= would be exported as \texttt{}, but I expected ~verbatim~ to be expected with the LaTeX \verb command. Then when I explored org-export-latex-emphasis-alist, I see that the documentation indicates that if the string to wrap the fontified text is \verb, then "Org will automatically select a delimiter character not in the string", which also leads me to believe that that ~verbatim~ will be exported as \verb. What simple thing am I missing to export ~verbatim~ text as \verb? Mike