From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takeshi Teshima Subject: Re: latex export creates "auto" directory Date: Sat, 4 Mar 2017 01:41:47 +0900 Message-ID: References: <28f0284b-716f-7b11-4ffd-4fd77bb96100@gmail.com> <871sue5nbh.fsf@jetstar> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjqHC-0004tL-1y for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 11:41:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjqHB-0006En-3S for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 11:41:54 -0500 Received: from mail-pg0-x229.google.com ([2607:f8b0:400e:c05::229]:34014) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cjqHA-0006EF-Sr for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 11:41:53 -0500 Received: by mail-pg0-x229.google.com with SMTP id 77so1392201pgc.1 for ; Fri, 03 Mar 2017 08:41:52 -0800 (PST) In-Reply-To: <871sue5nbh.fsf@jetstar> 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" To: Colin Baxter Cc: emacs-orgmode@gnu.org Dear Colin, Thank you for that detailed information! I'll try them. Best regards, Takeshi On 2017/03/04 1:37, Colin Baxter wrote: > Hello Takeshi, > > On Sat, Mar 04 2017, Takeshi Teshima wrote: > >> I have a question regarding latex export. >> >> When I export an org-mode to a latex file, a directory named "auto" is >> created in the same folder as the tex file. >> >> However, I couldn't find what line in the source code of org-mode >> creates this directory. >> >> Does anyone know what causes this, or what variables can be used to >> control where the directory is created? > It allows AUCTeX to be aware of style files and multi-files. The default > is "auto/" in the working directory. However you set the directory > yourself. I have the settings: > > (setq TeX-auto-local "/path/to/auto/dir") ;; Sets /auto/ directory. > (setq TeX-auto-save t) ;; Also sets lisp files to save in /auto/. > > If you want to switch it off then try (setq TeX-auto-save nil). I have > never used that myself, so I don't know how successful it might be. > > Best wishes > > Colin.