From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Fail to compile a file's LaTeX export Date: Sun, 21 Mar 2010 07:30:21 +0100 Message-ID: References: Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NtEgF-0000m1-DI for emacs-orgmode@gnu.org; Sun, 21 Mar 2010 02:30:35 -0400 Received: from [140.186.70.92] (port=39491 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NtEgA-0000lK-5J for emacs-orgmode@gnu.org; Sun, 21 Mar 2010 02:30:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NtEg4-0000Gh-2l for emacs-orgmode@gnu.org; Sun, 21 Mar 2010 02:30:29 -0400 Received: from mail-ew0-f216.google.com ([209.85.219.216]:33508) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NtEg3-0000GV-UI for emacs-orgmode@gnu.org; Sun, 21 Mar 2010 02:30:24 -0400 Received: by ewy8 with SMTP id 8so305988ewy.8 for ; Sat, 20 Mar 2010 23:30:22 -0700 (PDT) In-Reply-To: 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: Leo Cc: emacs-orgmode@gnu.org On Mar 20, 2010, at 9:29 PM, Leo wrote: > Hello, > > While taking some common lisp notes, I found compiling the following > org > file's LaTeX output fails. > > -------------------------------- > #+title: test file > > * one > 1. (char "string" 2) => #\r > 2. define-modify-macro > 3. (code-char 66) => #\B and (char-code #\B) => 66 > 4. terpri and fresh-line > 5. "~n&" print a new line if not at the beginning of a line and > then n-1 new lines. > -------------------------------- These things are code examples, and I think the bes way to deal with them is by markign them as such: * one 1. =(char "string" 2)= => =#\r= 2. define-modify-macro 3. =(code-char 66)= => and =(char-code #\B)= => 66 4. terpri and fresh-line 5. "~n&" print a new line if not at the beginning of a line and then n-1 new lines. HTH - Carsten