Greg Ward | 08c68fc | 2000-04-11 02:01:52 +0000 | [diff] [blame] | 1 | % |
| 2 | % LaTeX commands and macros needed for the two Distutils manuals, |
| 3 | % inst.tex and dist.tex. |
| 4 | % |
| 5 | % $Id$ |
| 6 | % |
| 7 | |
| 8 | % My gripe list about the Python style files: |
Greg Ward | 822a86a | 2000-04-12 01:44:35 +0000 | [diff] [blame] | 9 | % * I want italics in verbatim environments for variable |
| 10 | % text (verbatim.sty?) |
Greg Ward | 08c68fc | 2000-04-11 02:01:52 +0000 | [diff] [blame] | 11 | % * I hate escaping underscores (url.sty fixes this) |
| 12 | |
Greg Ward | 822a86a | 2000-04-12 01:44:35 +0000 | [diff] [blame] | 13 | % '\command' is for Distutils commands which, depending on your |
| 14 | % perspective, are just arguments to the setup script, or sub- |
| 15 | % commands of the setup script, or the classes that implement |
| 16 | % each "command". |
Greg Ward | 08c68fc | 2000-04-11 02:01:52 +0000 | [diff] [blame] | 17 | \newcommand{\command}[1]{\code{#1}} |
Greg Ward | 822a86a | 2000-04-12 01:44:35 +0000 | [diff] [blame] | 18 | |
| 19 | % '\option' is for Distutils options *in* the setup script. Command- |
| 20 | % line options *to* the setup script are marked up in the usual |
| 21 | % way, ie. with '\programopt' or '\longprogramopt' |
Greg Ward | 08c68fc | 2000-04-11 02:01:52 +0000 | [diff] [blame] | 22 | \newcommand{\option}[1]{\textsf{\small{#1}}} |
Greg Ward | 822a86a | 2000-04-12 01:44:35 +0000 | [diff] [blame] | 23 | |
| 24 | % '\filevar' is for variable components of file/path names -- eg. |
| 25 | % when you put 'prefix' in a pathname, you mark it up with |
| 26 | % '\filevar' so that it still looks pathname-ish, but is |
| 27 | % distinguished from the literal part of the path. Fred says |
| 28 | % this can be accomplished just fine with '\var', but I violently |
| 29 | % disagree. Pistols at dawn will sort this one out. |
Greg Ward | 08c68fc | 2000-04-11 02:01:52 +0000 | [diff] [blame] | 30 | \newcommand{\filevar}[1]{{\textsl{\filenq{#1}}}} |
Greg Ward | 822a86a | 2000-04-12 01:44:35 +0000 | [diff] [blame] | 31 | |
Greg Ward | 822a86a | 2000-04-12 01:44:35 +0000 | [diff] [blame] | 32 | % Just while the code and docs are still under development. |
Greg Ward | 08c68fc | 2000-04-11 02:01:52 +0000 | [diff] [blame] | 33 | \newcommand{\XXX}[1]{\textbf{**#1**}} |