From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Terminating a plain list Date: Thu, 16 Apr 2009 14:56:50 -0500 Message-ID: <87ws9ks77h.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LuXgk-0006T7-CK for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 15:55:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LuXgf-0006QZ-Ii for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 15:55:57 -0400 Received: from [199.232.76.173] (port=53457 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LuXgf-0006QW-Dv for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 15:55:53 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:40267) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LuXgf-0003xD-1F for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 15:55:53 -0400 Received: from crunchbang (vu019215.valpo.edu [152.228.168.123]) by mail.messagingengine.com (Postfix) with ESMTPSA id EF62F7506 for ; Thu, 16 Apr 2009 15:55:51 -0400 (EDT) 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 Hi Carsten, I am currently using the following notation to terminate a plain list for exporting: --8<---------------cut here---------------start------------->8--- - Item One - Item Two - Item Three - _____ | Table | Example | |-------+---------| | 1 | 2 | --8<---------------cut here---------------end--------------->8--- This exports properly in html, but in Latex I get the following output: ,---- | \begin{itemize} | \item Item One | \item Item Two | \item Item Three | \item \underline{___} % <---- note this line | \end{itemize} | | \begin{center} | \begin{tabular}{rr} | Table & Example \\ | \hline | 1 & 2 \\ | \end{tabular} | \end{center} `---- It looks as if the latex exporter is interpreting the notation for terminating plainlists as underline markup. Thanks, Matt