From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Minor nit - LaTeX header contents and footnotes Date: Fri, 12 Feb 2010 17:00:58 +0000 Message-ID: <87y6iy1j91.wl%ucecesf@ucl.ac.uk> References: <10739.1250802859@alphaville.usa.hp.com> <7493B34F-8E52-41D1-A230-FB65CF3678B2@gmail.com> Reply-To: Eric S Fraga Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nfyt7-0001Pt-JD for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 12:01:07 -0500 Received: from [140.186.70.92] (port=52107 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nfyt6-0001Pc-IG for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 12:01:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nfyt5-0001Ss-SC for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 12:01:04 -0500 Received: from vscane-c.ucl.ac.uk ([144.82.108.43]:42915) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nfyt5-0001Sa-JT for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 12:01:03 -0500 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: Ruud Brekelmans Cc: emacs-orgmode@gnu.org On Fri, 12 Feb 2010 14:16:06 +0100, Ruud Brekelmans wrote: > > [1.1 ] > I still find similar behavior when exporting to LaTeX with: > > #+BEGIN_LaTeX > \newcommand{\norm}[1]{\lVert#1\rVert} > #+END_LaTeX > > > Best regards, > Ruud > > > On 21 August 2009 06:52, Carsten Dominik wrote: > > > Fixed, thanks. > > > > - Carsten > > > > > > On Aug 20, 2009, at 10:14 PM, Nick Dokos wrote: > > > > I define a LaTeX macro at the top of my document, like so: > >> > >> ,---- > >> | ... > >> | #+LATEX_HEADER: \newcommand{\rowstyle}[1]{\gdef\currentrowstyle{#1}% > >> | #+LATEX_HEADER: #1\ignorespaces > >> | #+LATEX_HEADER: } > >> | ... > >> `---- This doesn't solve the problem directly but putting spaces around the 1 works: --8<---------------cut here---------------start------------->8--- #+BEGIN_LaTeX \newcommand{\norm}[ 1 ]{\lVert#1\rVert} #+END_LaTeX --8<---------------cut here---------------end--------------->8--- (and also works with the header version).