diff options
-rw-r--r-- | manual.tex | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | % $Id: manual.tex,v 2.11 1997/07/04 22:35:38 roberto Exp roberto $ | 1 | % $Id: manual.tex,v 2.12 1997/07/30 22:15:18 roberto Exp roberto $ |
2 | 2 | ||
3 | \documentstyle[fullpage,11pt,bnf]{article} | 3 | \documentstyle[fullpage,11pt,bnf]{article} |
4 | 4 | ||
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | \newcommand{\ff}{$\bullet$\ } | 19 | \newcommand{\ff}{$\bullet$\ } |
20 | 20 | ||
21 | \newcommand{\Version}{3.0} | 21 | \newcommand{\Version}{3.1} |
22 | 22 | ||
23 | \makeindex | 23 | \makeindex |
24 | 24 | ||
@@ -38,7 +38,7 @@ Waldemar Celes | |||
38 | \tecgraf\ --- Computer Science Department --- PUC-Rio | 38 | \tecgraf\ --- Computer Science Department --- PUC-Rio |
39 | } | 39 | } |
40 | 40 | ||
41 | \date{\small \verb$Date: 1997/07/04 22:35:38 $} | 41 | \date{\small \verb$Date: 1997/07/30 22:15:18 $} |
42 | 42 | ||
43 | \maketitle | 43 | \maketitle |
44 | 44 | ||
@@ -1893,9 +1893,10 @@ decimal digit in the range [1,9], | |||
1893 | giving the position of the argument in the argument list. | 1893 | giving the position of the argument in the argument list. |
1894 | For instance, the call \verb|format("%2$d -> %1$03d", 1, 34)| will | 1894 | For instance, the call \verb|format("%2$d -> %1$03d", 1, 34)| will |
1895 | result in \verb|"34 -> 001"|. | 1895 | result in \verb|"34 -> 001"|. |
1896 | The same argument can be used in more than one convertion. | ||
1896 | 1897 | ||
1897 | The options \verb|c|, \verb|d|, \verb|E|, \verb|e|, \verb|f|, | 1898 | The options \verb|c|, \verb|d|, \verb|E|, \verb|e|, \verb|f|, |
1898 | \verb|g| \verb|i|, \verb|o|, \verb|u|, \verb|X|, and \verb|x| all | 1899 | \verb|g|, \verb|G|, \verb|i|, \verb|o|, \verb|u|, \verb|X|, and \verb|x| all |
1899 | expect a number as argument, | 1900 | expect a number as argument, |
1900 | whereas \verb|q| and \verb|s| expect a string. | 1901 | whereas \verb|q| and \verb|s| expect a string. |
1901 | Note that the \verb|*| modifier can be simulated by building | 1902 | Note that the \verb|*| modifier can be simulated by building |