From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ratish Punnoose Subject: quote, quotation environments in org beamer export just comment text out. Date: Tue, 20 Aug 2013 20:47:09 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50188) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBsq2-000333-6M for emacs-orgmode@gnu.org; Tue, 20 Aug 2013 16:47:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VBspu-0000km-U7 for emacs-orgmode@gnu.org; Tue, 20 Aug 2013 16:47:38 -0400 Received: from plane.gmane.org ([80.91.229.3]:33933) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBspu-0000kg-NH for emacs-orgmode@gnu.org; Tue, 20 Aug 2013 16:47:30 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VBspt-0004Hb-A1 for emacs-orgmode@gnu.org; Tue, 20 Aug 2013 22:47:29 +0200 Received: from bcproxy-dmz-ca-01.ca.sandia.gov ([198.206.219.38]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Aug 2013 22:47:29 +0200 Received: from ratish by bcproxy-dmz-ca-01.ca.sandia.gov with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Aug 2013 22:47:29 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Is there a reason that quote, quotation, verse, environments during export to tex just comment their contents. As you can see, they precede the text with "%%" which causes latex to ignore their contents. This is an extract from ox-beamer.el Thanks Ratish >From ox-beamer.el -------------- (defconst org-beamer-environments-default '(("block" "b" "\\begin{block}%a{%h}" "\\end{block}") ("alertblock" "a" "\\begin{alertblock}%a{%h}" "\\end{alertblock}") ("verse" "v" "\\begin{verse}%a %% %h" "\\end{verse}") ("quotation" "q" "\\begin{quotation}%a %% %h" "\\end{quotation}") ("quote" "Q" "\\begin{quote}%a %% %h" "\\end{quote}") ("structureenv" "s" "\\begin{structureenv}%a %% %h" "\\end{structureenv}") ("theorem" "t" "\\begin{theorem}%a%U" "\\end{theorem}") ("definition" "d" "\\begin{definition}%a%U" "\\end{definition}") ("example" "e" "\\begin{example}%a%U" "\\end{example}") ("exampleblock" "E" "\\begin{exampleblock}%a{%h}" "\\end{exampleblock}") ("proof" "p" "\\begin{proof}%a%U" "\\end{proof}") ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}" "\\end{beamercolorbox}")) "Environments triggered by properties in Beamer export. -----------------