From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: configuring org-export-latex-classes Date: Tue, 02 Sep 2008 15:32:59 -0400 Message-ID: <17604.1220383979@alphaville.usa.hp.com> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kabdw-0007NT-Uw for emacs-orgmode@gnu.org; Tue, 02 Sep 2008 15:34:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kabdv-0007Mv-9B for emacs-orgmode@gnu.org; Tue, 02 Sep 2008 15:34:24 -0400 Received: from [199.232.76.173] (port=40128 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kabdu-0007Ms-Vy for emacs-orgmode@gnu.org; Tue, 02 Sep 2008 15:34:23 -0400 Received: from g1t0028.austin.hp.com ([15.216.28.35]:12927) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kabdu-00068s-Uk for emacs-orgmode@gnu.org; Tue, 02 Sep 2008 15:34:23 -0400 In-Reply-To: Message from "Rainer Thiel" of "Tue, 02 Sep 2008 20:59:33 +0200." 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: r.thiel@uni-jena.de Cc: emacs-orgmode Rainer Thiel wrote: > I can't seem to find a way to configure the variable > org-export-latex-classes either directly (via customize-variable) or > through customizing a group. customize-variable can't find this > variable, and I am unable to find the customizing group it may be in. > Some time (only a couple of weeks) ago I did successfully customize > that variable through a group for the life of me I now can't remember. > > Can someone help me, please? > There seems to be a missing defgroup, so the org-export-latex customizations end up disappearing. Try adding this to org-export-latex.el: (defgroup org-export-latex nil "Options for exporting Org-mode files to LaTeX." :tag "Org Export LaTeX" :group 'org-export) Nick