summaryrefslogtreecommitdiffstats
path: root/Doc/texinputs
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-04-12 01:44:35 (GMT)
committerGreg Ward <gward@python.net>2000-04-12 01:44:35 (GMT)
commit822a86a95552e95adbb575a8d699d48d969b7b73 (patch)
tree6458f0a143423eabab828e94e7f43b6300ce1f73 /Doc/texinputs
parentd5faa7ea0833ee651c454551bafdf2823b6d3642 (diff)
downloadcpython-822a86a95552e95adbb575a8d699d48d969b7b73.zip
cpython-822a86a95552e95adbb575a8d699d48d969b7b73.tar.gz
cpython-822a86a95552e95adbb575a8d699d48d969b7b73.tar.bz2
Trying to placate Fred: redefine \tilde and \bslash; document everything.
Still some not-quite-standard definitions in here that I have to fix.
Diffstat (limited to 'Doc/texinputs')
-rw-r--r--Doc/texinputs/distutils.sty32
1 files changed, 23 insertions, 9 deletions
diff --git a/Doc/texinputs/distutils.sty b/Doc/texinputs/distutils.sty
index eb47918..18d3b63 100644
--- a/Doc/texinputs/distutils.sty
+++ b/Doc/texinputs/distutils.sty
@@ -6,21 +6,35 @@
%
% My gripe list about the Python style files:
-% * I want italics in verbatim environments (verbatim.sty?)
+% * I want italics in verbatim environments for variable
+% text (verbatim.sty?)
% * I hate escaping underscores (url.sty fixes this)
-% Should these be added to the standard Python doc tools? (They'll be
-% needed for my "Distributing Python Modules" guide, too.)
+% '\command' is for Distutils commands which, depending on your
+% perspective, are just arguments to the setup script, or sub-
+% commands of the setup script, or the classes that implement
+% each "command".
\newcommand{\command}[1]{\code{#1}}
+
+% '\option' is for Distutils options *in* the setup script. Command-
+% line options *to* the setup script are marked up in the usual
+% way, ie. with '\programopt' or '\longprogramopt'
\newcommand{\option}[1]{\textsf{\small{#1}}}
+
+% '\filevar' is for variable components of file/path names -- eg.
+% when you put 'prefix' in a pathname, you mark it up with
+% '\filevar' so that it still looks pathname-ish, but is
+% distinguished from the literal part of the path. Fred says
+% this can be accomplished just fine with '\var', but I violently
+% disagree. Pistols at dawn will sort this one out.
\newcommand{\filevar}[1]{{\textsl{\filenq{#1}}}}
-\newcommand{\homefile}[1]{\file{\tilde/#1}}
-\newcommand{\comingsoon}{\emph{Coming soon...}}
+
\def\package{\module}
-% And how about these? Very handy for writing pathnames (tilde for
-% Unix, backslash for DOS/Windows).
-\renewcommand{\tilde}{\raisebox{-0.5ex}{\symbol{126}}}
-\newcommand{\bslash}{\symbol{92}} % XXX only works in tt fonts!
+% These two are handy for writing pathnames for Unix and Windows
+% (respectively). I define my own macros because I'm a lazy typist.
+\renewcommand{\tilde}{\textasciitilde}
+\newcommand{\bslash}{\textbackslash}
+% Just while the code and docs are still under development.
\newcommand{\XXX}[1]{\textbf{**#1**}}