blob: ace08cc831b2619fe87f41165757ebd316d0c676 [file] [log] [blame]
Fred Drake1d8f07a1999-03-16 16:08:26 +00001% Created by Fred L. Drake, Jr. <fdrake@acm.org>, as part of the
2% Python Documentation Project.
3%
4% Define some simple markup for the LaTeX command documentation:
5
6\ProvidesPackage{ltxmarkup}
7\RequirePackage{python} % fulllineitems environment
8
Fred Drake30a535c1999-04-22 13:03:49 +00009% These two macros are used in constructing the last parameter to the
10% envdesc and macrodesc environments.
11
12\newcommand{\py@ltx@optparam}[1]{{[}\var{#1}{]}}
13\newcommand{\py@ltx@param}[1]{\{\var{#1}\}}
14
Fred Drake1d8f07a1999-03-16 16:08:26 +000015\newenvironment{envdesc}[2]{
16 \begin{fulllineitems}
Fred Drake30a535c1999-04-22 13:03:49 +000017 \item[\code{\e begin\{{\bfseries #1}\}{%
18 \let\op=\py@ltx@optparam%
19 \let\p=\py@ltx@param%
Fred Drake29642682000-09-21 15:53:54 +000020 \let\unspecified=\py@unspecified%
21 \let\moreargs=\py@moreargs%
22 #2}}]
Fred Drakeba828782000-04-03 04:19:14 +000023 \item[\code{\e end\{{\bfseries #1}\}}]
Skip Montanaro75700db2002-04-19 04:52:44 +000024 \index{#1 environment@\py@idxcode{#1} environment}
25 \index{environments!#1@\py@idxcode{#1}}
Fred Drake1d8f07a1999-03-16 16:08:26 +000026}{\end{fulllineitems}}
27
28\newenvironment{macrodesc}[2]{
29 \begin{fulllineitems}
Fred Draked960dc81999-04-23 14:44:53 +000030 \item[\code{{\e\bfseries#1}{%
Fred Drake30a535c1999-04-22 13:03:49 +000031 \let\op=\py@ltx@optparam%
32 \let\p=\py@ltx@param%
Fred Drake29642682000-09-21 15:53:54 +000033 \let\unspecified=\py@unspecified%
34 \let\moreargs=\py@moreargs%
Fred Draked960dc81999-04-23 14:44:53 +000035 #2}}]
Skip Montanaro75700db2002-04-19 04:52:44 +000036 \index{#1@\py@idxcode{#1}}
Fred Drake1d8f07a1999-03-16 16:08:26 +000037}{\end{fulllineitems}}
38
39\newcommand{\env}[1]{\code{#1}}
40\newcommand{\macro}[1]{\code{\e#1}}