From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Quotes not being converted correctly for LaTeX export Date: Fri, 08 Mar 2013 23:03:39 +0530 Message-ID: <87k3phn6do.fsf@gmail.com> References: <20130308172751.GI13199@kuru.dyndns-at-home.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38442) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UE1Av-0007Nj-OE for emacs-orgmode@gnu.org; Fri, 08 Mar 2013 12:33:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UE1Aq-0001Vc-Oo for emacs-orgmode@gnu.org; Fri, 08 Mar 2013 12:33:45 -0500 Received: from mail-pb0-f47.google.com ([209.85.160.47]:63644) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UE1Aq-0001VX-In for emacs-orgmode@gnu.org; Fri, 08 Mar 2013 12:33:40 -0500 Received: by mail-pb0-f47.google.com with SMTP id rp2so1383199pbb.6 for ; Fri, 08 Mar 2013 09:33:39 -0800 (PST) In-Reply-To: <20130308172751.GI13199@kuru.dyndns-at-home.com> (Suvayu Ali's message of "Fri, 8 Mar 2013 18:27:51 +0100") 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: Suvayu Ali Cc: Emacs Org mode Suvayu Ali writes: > Hi, > > It seems double and single quotes are not being exported properly for > LaTeX export. In a minimal Org instance, the following > > * Test > "Orange box" > 'Orange box' > > is exported as > > \section[Testing]{Testing} > \label{sec-1} > "Orange box" > 'Orange box' > > whereas I would expect the following > > \section[Testing]{Testing} > \label{sec-1} > ``Orange box'' > `Orange box' #+OPTIONS: ':t ,----[ C-h v org-export-with-smart-quotes RET ] | org-export-with-smart-quotes is a variable defined in `ox.el'. | Its value is nil | | Documentation: | Non-nil means activate smart quotes during export. | This option can also be set with the #+OPTIONS: line, | e.g. "':t". | | You can customize this variable. | | This variable was introduced, or its default value was changed, in | version 24.4 of Emacs. `---- > Hope this helps, --