From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Ulrich Dirr" Newsgroups: gmane.emacs.help Subject: File variables in tex-site.el Date: Wed, 30 Apr 2003 11:31:25 +0200 Organization: 1&1 Internet AG Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1051695474 28825 80.91.224.249 (30 Apr 2003 09:37:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 30 Apr 2003 09:37:54 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Wed Apr 30 11:37:52 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19Ao2C-0007Ud-00 for ; Wed, 30 Apr 2003 11:37:52 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19Anzh-0000su-01 for gnu-help-gnu-emacs@m.gmane.org; Wed, 30 Apr 2003 05:35:17 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!news.telebyte.nl!news.shlink.de!news.ipv6.iphh.net!iphh.net!news.belwue.de!news.uni-stuttgart.de!rz.uni-karlsruhe.de!feed.news.schlund.de!schlund.de!news.online.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 27 Original-NNTP-Posting-Host: p508029c7.dip0.t-ipconnect.de Original-X-Trace: online.de 1051695087 22216 80.128.41.199 (30 Apr 2003 09:31:27 GMT) Original-X-Complaints-To: abuse@einsundeins.com Original-NNTP-Posting-Date: Wed, 30 Apr 2003 09:31:27 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Original-Xref: shelby.stanford.edu gnu.emacs.help:112555 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:9051 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:9051 I'm wondering what all the file variables mean (%t, %f, %s, etc.). I would like to customize the list shown below. Where can I find an explanation what variables exist and what's their meaning? ;; The fpTeX commands. (setq TeX-command-list (list (list "TeX" "tex \\nonstopmode\\input %t" 'TeX-run-TeX nil t) (list "LaTeX" "%l \\nonstopmode\\input{%t}" 'TeX-run-LaTeX nil t) (list "LaTeX PDF" "pdflatex \\nonstopmode\\input{%t}" 'TeX-run-LaTeX nil t) (list "eLaTeX PDF" "pdfelatex \\nonstopmode\\input{%t}" 'TeX-run-LaTeX nil t) (list "View" "%v" 'TeX-run-command t nil) (list "View PS" "gsview32 %f" 'TeX-run-command t nil) (list "View PDF" "start %s.pdf" 'TeX-run-command t nil) (list "Print" "dvips %d" 'TeX-run-command t nil) (list "File" "dvips %d -o %f " 'TeX-run-command t nil) (list "BibTeX" "bibtex %s" 'TeX-run-BibTeX nil nil) (list "Index" "makeindex %s" 'TeX-run-command nil t) (list "Check" "lacheck %s" 'TeX-run-compile nil t) (list "Spell" "" 'TeX-run-ispell-on-document nil nil) (list "Makeinfo" "makeinfo %t" 'TeX-run-compile nil t) (list "AmSTeX" "amstex \\nonstopmode\\input{%t}" 'TeX-run-TeX nil t) (list "Other" "" 'TeX-run-command t t))) Ulrich Dirr