10 lines
234 B
TeX
10 lines
234 B
TeX
\documentclass{minimal}
|
|
\newcounter{tmpnum}
|
|
\newcommand{\stringinc}[1]{%
|
|
\setcounter{tmpnum}{#1}%
|
|
\stepcounter{tmpnum}%
|
|
\arabic{tmpnum}%
|
|
}
|
|
\begin{document}
|
|
The number 12345 is followed by \stringinc{12345}.
|
|
\end{document}
|