From 4150020a0ea0a0bb0d00983c2e1c6d97cd33651f Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 17 May 2010 15:42:35 +0000 Subject: multido 1.42 (15may10) git-svn-id: svn://tug.org/texlive/trunk@18302 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/generic/multido/Changes | 9 +- .../texmf-dist/doc/generic/multido/multido-doc.pdf | Bin 0 -> 64366 bytes .../texmf-dist/doc/generic/multido/multido-doc.tex | 274 ++++++++++++++++++++ .../doc/generic/multido/multido-test.tex | 27 -- Master/texmf-dist/doc/generic/multido/multido.doc | 278 --------------------- Master/texmf-dist/source/generic/multido/Makefile | 71 ++++++ Master/texmf-dist/tex/generic/multido/multido.tex | 35 +-- Master/texmf-dist/tex/latex/multido/multido.sty | 9 +- 8 files changed, 362 insertions(+), 341 deletions(-) create mode 100644 Master/texmf-dist/doc/generic/multido/multido-doc.pdf create mode 100644 Master/texmf-dist/doc/generic/multido/multido-doc.tex delete mode 100644 Master/texmf-dist/doc/generic/multido/multido-test.tex delete mode 100644 Master/texmf-dist/doc/generic/multido/multido.doc create mode 100644 Master/texmf-dist/source/generic/multido/Makefile (limited to 'Master/texmf-dist') diff --git a/Master/texmf-dist/doc/generic/multido/Changes b/Master/texmf-dist/doc/generic/multido/Changes index 6db777a0742..1abe6687f75 100644 --- a/Master/texmf-dist/doc/generic/multido/Changes +++ b/Master/texmf-dist/doc/generic/multido/Changes @@ -1,9 +1,12 @@ --- multido.tex -1.4 Small change to make it compatible with PSTricks v0.93 and later. +1.42 2010-05-14 - small changes to the code (hv) + - LPPL license (hv) 1.41 2004-05-18 - fix bug when using the fp-package (same macronames) FPadd -> fpAdd; FPsub -> fpSub (RN/hv) +1.4 Small change to make it compatible with PSTricks v0.93 and later. ---- multido.doc -2004-05-18 - small changes to this documentation (RN/HV) +--- multido-doc.tex +2010-05-14 - updated (hv) 2006-01-01 - updated (hv) +2004-05-18 - small changes to this documentation (RN/HV) diff --git a/Master/texmf-dist/doc/generic/multido/multido-doc.pdf b/Master/texmf-dist/doc/generic/multido/multido-doc.pdf new file mode 100644 index 00000000000..54a947cc8b7 Binary files /dev/null and b/Master/texmf-dist/doc/generic/multido/multido-doc.pdf differ diff --git a/Master/texmf-dist/doc/generic/multido/multido-doc.tex b/Master/texmf-dist/doc/generic/multido/multido-doc.tex new file mode 100644 index 00000000000..28611001736 --- /dev/null +++ b/Master/texmf-dist/doc/generic/multido/multido-doc.tex @@ -0,0 +1,274 @@ +%% $Id: multido-doc.tex 317 2010-05-14 21:54:15Z herbert $ +\documentclass[12pt]{article} +\usepackage{fp,multido} +\let\MDfv\fileversion +\usepackage{url} + +\makeatletter + +%% PAGE PARAMETERS: +\setlength{\parindent}{0pt} % paragraph indent +\setlength{\parskip}{4pt plus 1pt minus 1pt} +\setlength{\topmargin}{-2.5pc} +\setlength{\headheight}{12pt} % height of running head +\setlength{\headsep}{30pt} % distance between header and text +\setlength{\textheight}{54pc} % height of text on page +%% +%% DATES, VERSIONS AND TITLES: +%% +\def\expanddate#1/#2/#3/{\year=#1 \month=#2 \day=#3} +\begingroup + \expandafter\expanddate\filedate/ + \xdef\thefiledate{\today} +\endgroup +\date{Version \fileversion\\ \thefiledate} +\def\@maketitle{% + \begin{center} + {\Large\bf \@title \par} + \vskip 1.2em {\lineskip .5em + \begin{tabular}[t]{c}\@author\end{tabular}\par} + \vskip .8em {\@date}% + \end{center} + \par + \vskip .5em} +%% +%% PAGE STYLE: +%% +\pagestyle{myheadings} +\markright{Documentation for multido.tex \hfill + v.\fileversion\hskip 1em \thefiledate\hfill}% +%% +%% VERBATIM: +%% +\begingroup + \catcode`\{=12 \catcode`\}=12 + \catcode`\(=1 \catcode`\)=2 + \catcode`\+=0 \catcode`\\=12 + +gdef+|(\) % \| = character \ + +gdef+{({) % \{ = character { + +gdef+}(}) % \} = character } ++endgroup +\def\Backslash{\protect\|} +%% +%% Define some functional font commands: +%% +\def\MainFont{\tt} % For macro definitions. +\def\UsageFont{\tt} % For in-line macro names. +\def\InlineFont{\tt} % For other in-line snipets of code. +\def\MetaFont{\rm\it} % For meta arguments. +%% +%% Short-cuts for font commands: +%% +\def\s#1{\string#1} +\def\t#1{{\InlineFont\string#1}} % For other in-line code. +\def\m#1{{\MetaFont #1\/}} % For just putting things in italics +\def\M#1{{\InlineFont\{\m{#1}\}}} % Arg is in italic, enclosed in tt braces. +\let\N\t % For in-line macro names. +\catcode`\<=13 \def<#1>{\m{#1}} % +%% +%% This is for listing macro definitions in a quote-like environment. +%% +\begingroup + \catcode`\[=1 \catcode`\]=2 + \catcode`\{=13 \catcode`\}=12 + \gdef\@MD[% + \catcode`\{=13 \catcode`\}=12 + \def{##1}[\{[\MetaFont ##1]\}]] +\endgroup +\def\MD{% + \quote + \begingroup + \@MD + \def\end{\endgroup\end}% + \def\\{\@centercr\s}% + \MainFont + \s} +\def\endMD{\endquote} +%% +%% END PREAMBLE: +%% +\catcode`\"=13 +\def"{\verb"} +\catcode`\@=12 +\begin{document} +%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\title{Documentation for multido.tex, version \MDfv:\\[2pt] + A loop macro for Generic \protect\TeX} +\author{Timothy Van Zandt% + \thanks{Author's address: Department of Economics, Princeton University, + Princeton, NJ 08544-1021, USA. Internet: \protect\url{tvz@Princeton.EDU}. + This document was edited by Rolf Niepraschk \protect\url{Rolf.Niepraschk@gmx.de} and + Herbert Voss \protect\url{hvoss@tug.org} to get it run with LaTeX2e (2006-01-01)}} +\maketitle + +"multido.tex"/"multido.sty" contains the \N\multido\ macro, which is a loop +facility for Generic TeX. This macro happens to be useful for drawing +pictures, and was originally developed for the PSTricks +package,\footnote{PSTricks is an extensive collection of PostScript-based +macros for Generic TeX. It is available from \url{CTAN://graphics/pstricks/}.} +but you can use it for other purposes as well. + +A special feature is support of fixed-point addition. For example, PSTricks +uses the \N\multido\ to put numbers on axes, much like in the following +\LaTeX\ example: +\begin{verbatim} + \setlength{\unitlength}{1cm} + \small + \begin{picture}(8,1)(0,-.5) + \put(0,0){\vector(1,0){8}} + \multido{\i=0+1,\n=0+0.25}{8}{% + \put(\i,-.1){\line(0,1){.2}} + \put(\i,-.2){\makebox(0,0)[t]{\n}}} + \end{picture} +\end{verbatim} +\begin{center} + \setlength{\unitlength}{1cm} + \small + \begin{picture}(8,1)(0,-.5) + \put(0,0){\vector(1,0){8}} + \multido{\i=0+1,\n=0+0.25}{8}{% + \put(\i,-.1){\line(0,1){.2}} + \put(\i,-.2){\makebox(0,0)[t]{\n}}} + \end{picture} +\end{center} + +The general syntax for \N\multido\ is: +\begin{MD} + \multido{variables}{repetitions}{stuff} +\end{MD} + is whatever you want repeated; it can be any balanced \TeX\ input. + is the number times is repeated. + +The first argument is the interesting one. is a comma-separated +list of variable declarations.\footnote{Don't use commas to mark the decimal +point within the \protect argument, as they will be confused for +delimiters.} Each variable declaration is of the form: +\begin{center}\tt + = + +\end{center} + is a command sequence that can be used in . It is initially +set to , and is then incremented by with each +repetition. + +The first letter of the variable name determines the variable type. There are +four variable types: +\begin{description} +\item[Dimension (d or D)] The initial value and the increment should be +dimensions (lengths, in \LaTeX\ parlance). The substitution text is a +dimension, with "sp" units. E.g., "\dx=4cm+5pt".\footnote{For PSTricks users, +the unit is optional.} + +\item[Number (n or N)] The initial value and increment should be integers or +numbers with the same number of digits to the right of the decimal. The one +exception is that it is always OK for the initial value to be an integer. +There can be at most 8 digits on each side of the decimal. The substitution +text is a number, with fixed-point addition. E.g., "\n=3+7.05", +"\Nx=5.30+-1.25". + +\item[Integer (i or I)] The initial value and increment should be integers. +This gives the same result as using a number variable, but it is faster. E.g., +"\I=2+-1". + +\item[Real (r or R)] The initial value and increment should be integers or +numbers with at most 4 digits on each side of the decimal. The substitution +text is a number, but with floating point addition and occasional small +errors. This gives a less satisfactory result than using a number variable, +but it is faster. E.g., "\ry=4.2+1.05". +\end{description} + +Here are some examples that illustrate how the substitution text is +determined: +\begin{quote} + "\multido{}{10}{\TeX\ }"\\[3pt] + \hbox to 2em{}\multido{}{10}{\TeX\ }{}\\[8pt] + "\multido{\d=2pt+3pt}{5}{\d, }"\\[3pt] + \hbox to 2em{}\multido{\d=2pt+3pt}{5}{\d, }{}\\[8pt] + "\multido{\n=2+3}{10}{\n, }"\\[3pt] + \hbox to 2em{}\multido{\n=2+3}{10}{\n, }{}\\[8pt] + "\multido{\i=2+-3}{10}{\i, }"\\[3pt] + \hbox to 2em{}\multido{\i=2+-3}{10}{\i, }{}\\[8pt] + "\multido{\r=2+3.05}{6}{\r, }"\\[3pt] + \hbox to 2em{}\multido{\r=2+3.05}{6}{\r, }{}\\[8pt] + "\multido{\n=2.00+-3.05}{8}{\n, }"\\[3pt] + \hbox to 2em{}\multido{\n=2.00+-3.05}{8}{\n, }{} +\end{quote} + +Here are some details about the choice of names: +\begin{itemize} +\item Your computer won't explode if you use names that conflict with \TeX\ +internal commands, but you might want to check name conflicts if you get +inexplicable errors. The command \N\MultidoCheckNames\ can be useful in this +case. It causes \N\multido\ to report an error whenever you use a variable +name that is already defined. But see the next item. +\item The whole \N\multido\ loop is grouped. This means, e.g., that although +"\i" is a Plain \TeX\ command sequence (giving a dotless ``\i''), you can use +the variable "\i" if you do not use any dotless i's in (and if you do +not use \N\MultidoCheckNames). +\end{itemize} + +Here are a few more details: +\begin{itemize} +\item \N\Multido\ commands can be nested. +\item Spaces after a \N\multido\ command are ignored. This makes \N\multido\ +more hospitable for pictures. +\item Spaces between the various parts of the argument are +ignored. +\end{itemize} + +And finally here a few special features, some of which are of interest mainly +macro writers and other \TeX nicians: +\begin{itemize} +\item The material that is repeated is not grouped, so that you can insert +your own recursive routines. +\item There is a variant, "\mmultido", which works just like "\multido" except +that the variables are all incremented once before starting. +\item If you use "\Multido" or "\MMultido" instead of "\multido" or +"\mmultido", resp., then the whole loop is not grouped. This can be useful, +e.g., for making entries in an alignment environment. However, these cannot be +nested within any "\multido" macro. +\item If the number of repetitions is a negative number, the variables are +incremented backwards. +\item The count register "\multidocount" keeps track of the number of current +iteration. +\item The command "\multidostop" causes the "\multido" loop to quit at the end +of the current iteration. +\item Fixed point addition is performed by \N\fpAdd\ and \N\fpSub: +\begin{MD} + \fpAdd{num1}{num2}{command}\\ + \fpSub{num1}{num2}{command} +\end{MD} + is added to or subtracted from , and the answers is stored in the +command sequence given as the third argument. The rules about decimals and so +on that apply to number variables apply here as well. E.g., after +\begin{verbatim} + \fpSub{1.75}{-0.15}{\answer} +\end{verbatim} +\fpSub{1.75}{-0.15}{\answer} +the definition of "\answer" is \answer. +\end{itemize} + +\subsection*{Changes:} + +\begin{description} +\item[V1.1] Fixed bug in \N\FPadd\ that gave wrong answer for, e.g., $3.4 + +-0.2.$ + +\item[V1.2] Made unit optional for dimension variables when using PSTricks. + +\item[V1.3] Now 0 repetitions really gets 0 repetitions. "\def\multido@" +changed to "\long\def\multido@". + +% RN modification begin +%\end{description} +% RN modification end + +\item[V1.4] Small change to make it compatible with PSTricks v0.93 and later. + +\item[V1.41] Fix bug when using the fp-package (same macronames) and small +changes to this documentation (RN/HV) +\end{description} + +\end{document} +%% END multido-doc diff --git a/Master/texmf-dist/doc/generic/multido/multido-test.tex b/Master/texmf-dist/doc/generic/multido/multido-test.tex deleted file mode 100644 index 7cf8c1de267..00000000000 --- a/Master/texmf-dist/doc/generic/multido/multido-test.tex +++ /dev/null @@ -1,27 +0,0 @@ - -\listfiles\errorcontextlines=100 -\documentclass{article} - -%\usepackage{fp} -%\input{multido} -\usepackage{multido}[2004/05/15] -\usepackage{fp} - -\begin{document} - -\typeout{\meaning\FPadd} -\typeout{\meaning\FPsub} -\typeout{\meaning\fpAdd} -\typeout{\meaning\fpSub} - -\setlength{\unitlength}{1cm} - -\begin{picture}(8,1)(0,-.5) - \small - \put(0,0){\vector(1,0){8}} - \multido{\i=0+1,\n=0+0.25}{8}{% - \put(\i,-.1){\line(0,1){.2}} - \put(\i,-.2){\makebox(0,0)[t]{\n}}} -\end{picture} - -\end{document} diff --git a/Master/texmf-dist/doc/generic/multido/multido.doc b/Master/texmf-dist/doc/generic/multido/multido.doc deleted file mode 100644 index da68bedee59..00000000000 --- a/Master/texmf-dist/doc/generic/multido/multido.doc +++ /dev/null @@ -1,278 +0,0 @@ -%% BEGIN multido.doc -%% -%% Documentation for multido.tex/multido.sty. -%% Run through LaTeX, with or without the NFSS. -%% - -\documentclass[12pt]{article} -\usepackage{multido} -\usepackage{url} - -\makeatletter - -%% PAGE PARAMETERS: -\setlength{\parindent}{0pt} % paragraph indent -\setlength{\parskip}{4pt plus 1pt minus 1pt} -\setlength{\topmargin}{-2.5pc} -\setlength{\headheight}{12pt} % height of running head -\setlength{\headsep}{30pt} % distance between header and text -\setlength{\textheight}{54pc} % height of text on page -%% -%% DATES, VERSIONS AND TITLES: -%% -\def\expanddate#1/#2/#3/{\year=#1 \month=#2 \day=#3} -\begingroup - \expandafter\expanddate\filedate/ - \xdef\thefiledate{\today} -\endgroup -\date{Version \fileversion\\ \thefiledate} -\def\@maketitle{% - \begin{center} - {\Large\bf \@title \par} - \vskip 1.2em {\lineskip .5em - \begin{tabular}[t]{c}\@author\end{tabular}\par} - \vskip .8em {\@date}% - \end{center} - \par - \vskip .5em} -%% -%% PAGE STYLE: -%% -\pagestyle{myheadings} -\markright{Documentation for multido.tex \hfill - v.\fileversion\hskip 1em \thefiledate\hfill}% -%% -%% VERBATIM: -%% -\begingroup - \catcode`\{=12 \catcode`\}=12 - \catcode`\(=1 \catcode`\)=2 - \catcode`\+=0 \catcode`\\=12 - +gdef+|(\) % \| = character \ - +gdef+{({) % \{ = character { - +gdef+}(}) % \} = character } -+endgroup -\def\Backslash{\protect\|} -%% -%% Define some functional font commands: -%% -\def\MainFont{\tt} % For macro definitions. -\def\UsageFont{\tt} % For in-line macro names. -\def\InlineFont{\tt} % For other in-line snipets of code. -\def\MetaFont{\rm\it} % For meta arguments. -%% -%% Short-cuts for font commands: -%% -\def\s#1{\string#1} -\def\t#1{{\InlineFont\string#1}} % For other in-line code. -\def\m#1{{\MetaFont #1\/}} % For just putting things in italics -\def\M#1{{\InlineFont\{\m{#1}\}}} % Arg is in italic, enclosed in tt braces. -\let\N\t % For in-line macro names. -\catcode`\<=13 \def<#1>{\m{#1}} % -%% -%% This is for listing macro definitions in a quote-like environment. -%% -\begingroup - \catcode`\[=1 \catcode`\]=2 - \catcode`\{=13 \catcode`\}=12 - \gdef\@MD[% - \catcode`\{=13 \catcode`\}=12 - \def{##1}[\{[\MetaFont ##1]\}]] -\endgroup -\def\MD{% - \quote - \begingroup - \@MD - \def\end{\endgroup\end}% - \def\\{\@centercr\s}% - \MainFont - \s} -\def\endMD{\endquote} -%% -%% END PREAMBLE: -%% -\catcode`\"=13 -\def"{\verb"} -\catcode`\@=12 -\begin{document} -%% -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\title{Documentation for multido.tex:\\[2pt] - A loop macro for Generic \protect\TeX} -\author{Timothy Van Zandt% - \thanks{Author's address: Department of Economics, Princeton University, - Princeton, NJ 08544-1021, USA. Internet: \protect\url{tvz@Princeton.EDU}. - This document was edited by Rolf Niepraschk \protect\url{Rolf.Niepraschk@ptb.de} and - Herbert Voss \protect\url{voss@perce.de} to get it run with LaTeX2e (2006-01-01)}} -\maketitle - -"multido.tex"/"multido.sty" contains the \N\multido\ macro, which is a loop -facility for Generic TeX. This macro happens to be useful for drawing -pictures, and was originally developed for the PSTricks -package,\footnote{PSTricks is an extensive collection of PostScript-based -macros for Generic TeX. It is available from \url{CTAN://graphics/pstricks/}.} -but you can use it for other purposes as well. - -A special feature is support of fixed-point addition. For example, PSTricks -uses the \N\multido\ to put numbers on axes, much like in the following -\LaTeX\ example: -\begin{verbatim} - \setlength{\unitlength}{1cm} - \small - \begin{picture}(8,1)(0,-.5) - \put(0,0){\vector(1,0){8}} - \multido{\i=0+1,\n=0+0.25}{8}{% - \put(\i,-.1){\line(0,1){.2}} - \put(\i,-.2){\makebox(0,0)[t]{\n}}} - \end{picture} -\end{verbatim} -\begin{center} - \setlength{\unitlength}{1cm} - \small - \begin{picture}(8,1)(0,-.5) - \put(0,0){\vector(1,0){8}} - \multido{\i=0+1,\n=0+0.25}{8}{% - \put(\i,-.1){\line(0,1){.2}} - \put(\i,-.2){\makebox(0,0)[t]{\n}}} - \end{picture} -\end{center} - -The general syntax for \N\multido\ is: -\begin{MD} - \multido{variables}{repetitions}{stuff} -\end{MD} - is whatever you want repeated; it can be any balanced \TeX\ input. - is the number times is repeated. - -The first argument is the interesting one. is a comma-separated -list of variable declarations.\footnote{Don't use commas to mark the decimal -point within the \protect argument, as they will be confused for -delimiters.} Each variable declaration is of the form: -\begin{center}\tt - = + -\end{center} - is a command sequence that can be used in . It is initially -set to , and is then incremented by with each -repetition. - -The first letter of the variable name determines the variable type. There are -four variable types: -\begin{description} -\item[Dimension (d or D)] The initial value and the increment should be -dimensions (lengths, in \LaTeX\ parlance). The substitution text is a -dimension, with "sp" units. E.g., "\dx=4cm+5pt".\footnote{For PSTricks users, -the unit is optional.} - -\item[Number (n or N)] The initial value and increment should be integers or -numbers with the same number of digits to the right of the decimal. The one -exception is that it is always OK for the initial value to be an integer. -There can be at most 8 digits on each side of the decimal. The substitution -text is a number, with fixed-point addition. E.g., "\n=3+7.05", -"\Nx=5.30+-1.25". - -\item[Integer (i or I)] The initial value and increment should be integers. -This gives the same result as using a number variable, but it is faster. E.g., -"\I=2+-1". - -\item[Real (r or R)] The initial value and increment should be integers or -numbers with at most 4 digits on each side of the decimal. The substitution -text is a number, but with floating point addition and occasional small -errors. This gives a less satisfactory result than using a number variable, -but it is faster. E.g., "\ry=4.2+1.05". -\end{description} - -Here are some examples that illustrate how the substitution text is -determined: -\begin{quote} - "\multido{}{10}{\TeX\ }"\\[3pt] - \hbox to 2em{}\multido{}{10}{\TeX\ }{}\\[8pt] - "\multido{\d=2pt+3pt}{5}{\d, }"\\[3pt] - \hbox to 2em{}\multido{\d=2pt+3pt}{5}{\d, }{}\\[8pt] - "\multido{\n=2+3}{10}{\n, }"\\[3pt] - \hbox to 2em{}\multido{\n=2+3}{10}{\n, }{}\\[8pt] - "\multido{\i=2+-3}{10}{\i, }"\\[3pt] - \hbox to 2em{}\multido{\i=2+-3}{10}{\i, }{}\\[8pt] - "\multido{\r=2+3.05}{6}{\r, }"\\[3pt] - \hbox to 2em{}\multido{\r=2+3.05}{6}{\r, }{}\\[8pt] - "\multido{\n=2.00+-3.05}{8}{\n, }"\\[3pt] - \hbox to 2em{}\multido{\n=2.00+-3.05}{8}{\n, }{} -\end{quote} - -Here are some details about the choice of names: -\begin{itemize} -\item Your computer won't explode if you use names that conflict with \TeX\ -internal commands, but you might want to check name conflicts if you get -inexplicable errors. The command \N\MultidoCheckNames\ can be useful in this -case. It causes \N\multido\ to report an error whenever you use a variable -name that is already defined. But see the next item. -\item The whole \N\multido\ loop is grouped. This means, e.g., that although -"\i" is a Plain \TeX\ command sequence (giving a dotless ``\i''), you can use -the variable "\i" if you do not use any dotless i's in (and if you do -not use \N\MultidoCheckNames). -\end{itemize} - -Here are a few more details: -\begin{itemize} -\item \N\Multido\ commands can be nested. -\item Spaces after a \N\multido\ command are ignored. This makes \N\multido\ -more hospitable for pictures. -\item Spaces between the various parts of the argument are -ignored. -\end{itemize} - -And finally here a few special features, some of which are of interest mainly -macro writers and other \TeX nicians: -\begin{itemize} -\item The material that is repeated is not grouped, so that you can insert -your own recursive routines. -\item There is a variant, "\mmultido", which works just like "\multido" except -that the variables are all incremented once before starting. -\item If you use "\Multido" or "\MMultido" instead of "\multido" or -"\mmultido", resp., then the whole loop is not grouped. This can be useful, -e.g., for making entries in an alignment environment. However, these cannot be -nested within any "\multido" macro. -\item If the number of repetitions is a negative number, the variables are -incremented backwards. -\item The count register "\multidocount" keeps track of the number of current -iteration. -\item The command "\multidostop" causes the "\multido" loop to quit at the end -of the current iteration. -\item Fixed point addition is performed by \N\fpAdd\ and \N\fpSub: -\begin{MD} - \fpAdd{num1}{num2}{command}\\ - \fpSub{num1}{num2}{command} -\end{MD} - is added to or subtracted from , and the answers is stored in the -command sequence given as the third argument. The rules about decimals and so -on that apply to number variables apply here as well. E.g., after -\begin{verbatim} - \fpSub{1.75}{-0.15}{\answer} -\end{verbatim} -\fpSub{1.75}{-0.15}{\answer} -the definition of "\answer" is \answer. -\end{itemize} - -\subsection*{Changes:} - -\begin{description} -\item[V1.1] Fixed bug in \N\FPadd\ that gave wrong answer for, e.g., $3.4 + --0.2.$ - -\item[V1.2] Made unit optional for dimension variables when using PSTricks. - -\item[V1.3] Now 0 repetitions really gets 0 repetitions. "\def\multido@" -changed to "\long\def\multido@". - -% RN modification begin -%\end{description} -% RN modification end - -\item[V1.4] Small change to make it compatible with PSTricks v0.93 and later. - -\item[V1.41] Fix bug when using the fp-package (same macronames) and small -changes to this documentation (RN/HV) -\end{description} - -\end{document} -%% END multido.doc diff --git a/Master/texmf-dist/source/generic/multido/Makefile b/Master/texmf-dist/source/generic/multido/Makefile new file mode 100644 index 00000000000..285260e7ed7 --- /dev/null +++ b/Master/texmf-dist/source/generic/multido/Makefile @@ -0,0 +1,71 @@ + +# `Makefile' for `multido.pdf', hv, 2007/03/17 + +.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps + +PACKAGE = multido + +MAIN = $(PACKAGE)-doc + +TDS = ~/PSTricks/PSTricks-TDS + +LATEX = latex + +ARCHNAME = $(MAIN)-$(shell date +%y%m%d) + +ARCHFILES = $(PACKAGE).sty $(PACKAGE).tex $(PACKAGE).pro $(MAIN).tex README Changes Makefile + +all : doc clean +doc: $(MAIN).pdf + +$(MAIN).pdf : $(MAIN).ps + GS_OPTIONS=-dAutoRotatePages=/None ps2pdf $< + +$(MAIN).ps : $(MAIN).dvi + dvips $< + +$(MAIN).dvi : $(MAIN).tex + $(LATEX) $< + $(LATEX) $< +# if ! test -f $(basename $<).glo ; then touch $(basename $<).glo; fi +# if ! test -f $(basename $<).idx ; then touch $(basename $<).idx; fi +# makeindex -t $(basename $<).ilg -s pst-doc.ist -o $(basename $<).ind $(basename $<).idx +# makeindex -s gglo.ist -t $(basename $<).glg -o $(basename $<).gls \ +# $(basename $<).glo +# bibtex $(basename $<) +# $(LATEX) $< +# $(LATEX) $< + +clean : + $(RM) $(addprefix $(MAIN), .log .aux .glg .glo .gls .ilg .idx .ind .tmp .toc .out .blg .Roessler .bbl ) + $(RM) $(addprefix $(MAIN), .dvi .ps .xcp) + $(RM) data3d.Roessler + +veryclean : clean + $(RM) $(addprefix $(MAIN), .pdf .bbl .blg) + +arch : + zip $(ARCHNAME).zip $(ARCHFILES) + +tds: + cp -u Changes $(TDS)/doc/generic/$(PACKAGE)/ + cp -u README $(TDS)/doc/generic/$(PACKAGE)/ + cp -u $(MAIN).pdf $(TDS)/doc/generic/$(PACKAGE)/ +# + cp -u Changes $(TDS)/tex/latex/$(PACKAGE)/ + cp -u $(PACKAGE).sty $(TDS)/tex/latex/$(PACKAGE)/ +# + cp -u Changes $(TDS)/tex/generic/$(PACKAGE)/ + cp -u $(PACKAGE).tex $(TDS)/tex/generic/$(PACKAGE)/ +# + cp -u Changes $(TDS)/dvips/$(PACKAGE)/ + cp -u $(PACKAGE).pro $(TDS)/dvips/$(PACKAGE)/ + cp -u $(PACKAGE).pro ~/Links/dvips-local/ +# + cp -u Changes $(TDS)/source/$(PACKAGE)/ + cp -u $(MAIN).tex $(TDS)/source/$(PACKAGE)/ + cp -u $(MAIN).bib $(TDS)/source/$(PACKAGE)/ + cp -u Makefile $(TDS)/source/$(PACKAGE)/ + + +# EOF diff --git a/Master/texmf-dist/tex/generic/multido/multido.tex b/Master/texmf-dist/tex/generic/multido/multido.tex index d642ec7a1e2..eca6355b4e6 100644 --- a/Master/texmf-dist/tex/generic/multido/multido.tex +++ b/Master/texmf-dist/tex/generic/multido/multido.tex @@ -1,11 +1,13 @@ +%% $Id: multido.tex 317 2010-05-14 21:54:15Z herbert $ %% BEGIN multido.tex %% -\def\fileversion{1.41} -\def\filedate{2004/05/18} +\def\fileversion{1.42} +\def\filedate{2010/05/14} %% %% COPYRIGHT 1993, 1994, 1999 by Timothy Van Zandt, tvz@nwu.edu. -%% Version 1.41 (2004) prepared by Rolf Niepraschk -%% Herbert Voss +%% Version 1.41 (2004) prepared by Rolf Niepraschk +%% Herbert Voss +%% COPYRIGHT 2010 by Herbert Voss %% %% %% This program can be redistributed and/or modified under the terms @@ -19,40 +21,15 @@ %% is compatible with most TeX macro packages, including Plain TeX, LaTeX, %% AmSTeX, and Ams-LaTeX. %% -%% INSTALLATION: -%% Put this file where your TeX looks for inputs, under the name multido.tex. -%% Use the file multido.sty with LaTeX. -%% -%% DOCUMENTATION: -%% See multido.doc. -%% -%% COPYING: -%% Copying of part or all of this file is allowed under the following -%% conditions only: -%% (1) You may freely distribute unchanged copies of the file. Please -%% include the documentation when you do so. -%% (2) You may modify a renamed copy of the file, but only for personal -%% use or use within an organization. -%% (3) You may copy fragments from the file, for personal use or for -%% distribution, as long as credit is given where credit is due. -%% -%% You are NOT ALLOWED to take money for the distribution or use of -%% this file or modified versions or fragments thereof, except for -%% a nominal charge for copying etc. -%% %% CODE: % These macros use TeX primitives, plus the Plain TeX commands: % \dimen@, \dimen@i, \count@, \newcount, \newtoks, \@ne, \tw@, \@z@. % % Check if file is loaded, announce file on terminal, and take care of @: % - - \message{ v\fileversion, \filedate\space } - \csname MultidoLoaded\endcsname \let\MultidoLoaded\endinput - \edef\TheAtCode{\the\catcode`\@} \catcode`\@=11 diff --git a/Master/texmf-dist/tex/latex/multido/multido.sty b/Master/texmf-dist/tex/latex/multido/multido.sty index 1b118ccabd8..c17e7bd999d 100644 --- a/Master/texmf-dist/tex/latex/multido/multido.sty +++ b/Master/texmf-dist/tex/latex/multido/multido.sty @@ -1,11 +1,12 @@ -%% +%%% $Id: multido.sty 317 2010-05-14 21:54:15Z herbert $ +% %% This is file `multido.sty'. %% %% IMPORTANT NOTICE: %% %% multido.sty Copyright (C) 1997 Timothy Van Zandt -%% (C) 2004 Herbert Voss -%% Rolf Niepraschk +%% (C) 2004-2010 Herbert Voss +%% Rolf Niepraschk %% %% This package may be distributed under the terms of the LaTeX Project %% Public License, as described in lppl.txt in the base LaTeX distribution. @@ -19,7 +20,7 @@ {% \input{multido.tex} \ProvidesFile{multido.tex} - [\filedate\space v\fileversion\space `multido' (tvz)] + [\filedate\space v\fileversion\space `multido' (tvz,hv)] }{} \endinput -- cgit v1.2.3