From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: [Latex Export] Influence placement of \maketitle command Date: Wed, 14 May 2014 15:01:26 -0400 Message-ID: <874n0snq0p.fsf@alphaville.bos.redhat.com> References: <87tx8sw72f.fsf@mailbox.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WkeR0-0006Tl-4t for emacs-orgmode@gnu.org; Wed, 14 May 2014 15:01:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WkeQt-000836-UX for emacs-orgmode@gnu.org; Wed, 14 May 2014 15:01:46 -0400 Received: from plane.gmane.org ([80.91.229.3]:34642) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WkeQt-00082o-OC for emacs-orgmode@gnu.org; Wed, 14 May 2014 15:01:39 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WkeQs-0005tA-CI for emacs-orgmode@gnu.org; Wed, 14 May 2014 21:01:38 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 14 May 2014 21:01:38 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 14 May 2014 21:01:38 +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 Alexander Baier writes: > Hello, > > I am writing a paper using llncs as the document class. I use the > =\institute= command which has to be placed _above_ the =\maketitle= > command to be considered. But exporting my document always yields a > latex file where =\maketitle= appears above =\institute=. I use > simple #+LATEX: directives to insert =\institute=. > > Is there a way for me to influence the placement of =\maketitle= and > thus be able to order those commands "the right way"? > > TIA for any pointers, If \institute can be placed in the preamble, then using #+LATEX_HEADER instead of #+LATEX is probably the way to go. If it has to be in the document body, one way to do it is to redefine the variable org-latex-title-command in a file-local-variable section added to the end of your file: # Local Variables: # org-latex-title-command: "\\institute{Foo}\\maketitle" # End: See (info "(emacs) File variables") Nick