From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: Buffer-local override of org-latex-title-command? Date: Mon, 29 Apr 2013 06:31:46 +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 ([208.118.235.92]:49014) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UWhdB-0007mh-Vs for emacs-orgmode@gnu.org; Mon, 29 Apr 2013 02:32:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UWhd9-0000Ac-U6 for emacs-orgmode@gnu.org; Mon, 29 Apr 2013 02:32:09 -0400 Received: from plane.gmane.org ([80.91.229.3]:43343) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UWhd9-0000AR-Nl for emacs-orgmode@gnu.org; Mon, 29 Apr 2013 02:32:07 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UWhd1-0004Sj-BT for emacs-orgmode@gnu.org; Mon, 29 Apr 2013 08:31:59 +0200 Received: from 113.109.197.137 ([113.109.197.137]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 29 Apr 2013 08:31:59 +0200 Received: from jamshark70 by 113.109.197.137 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 29 Apr 2013 08:31:59 +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 Hi, I've decided to write my next research article using org's LaTeX export. The first problem: the journal mandates one column for the title/author heading and the abstract, while the remainder of the text should be in two columns. TeX FAQ recommends the following [1]: \documentclass[twocolumn]{article} ... \begin{document} ... % \author, etc \twocolumn[ \begin{@twocolumnfalse} \maketitle \begin{abstract} ... \end{abstract} \end{@twocolumnfalse} ] I can get very near to that this way: #+LaTeX: \twocolumn[ \begin{@twocolumnfalse} \maketitle #+BEGIN_abstract This is my abstract. This is my abstract. This is my abstract. This is my abstract. #+END_abstract #+LaTeX: \end{@twocolumnfalse} ] ... followed by outline headings marking sections. The problem is that the "org-latex-title-command" variable places \maketitle before the \twocolumn[...] bit. I realize I can customize the variable and make it an empty string, but I'm not sure I want this to take effect for every document I export to LaTeX. Is there a way to clear this variable that is local to the buffer? hjh [1] http://www.tex.ac.uk/cgi-bin/texfaq2html?label=onecolabs