Advertisement
Guest User

Untitled

a guest
Nov 8th, 2017
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.61 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \newcounter{mycounter}
  4. \makeatletter
  5. % From the LaTeX kernel
  6. % \def\two@digits#1{\ifnum#1<10 0\fi\number#1}
  7. \newcommand{\twodigits}{\two@digits}
  8. \newcommand{\threedigits}[1]{\ifnum#1<100 0\fi\two@digits{#1}}%
  9. \newcommand{\fourdigits}[1]{\ifnum#1<1000 0\fi\threedigits{#1}}%
  10. \newcommand{\fivedigits}[1]{\ifnum#1<10000 0\fi\fourdigits{#1}}
  11. \makeatother
  12.  
  13. \begin{document}
  14.  
  15. \setcounter{mycounter}{7}
  16.  
  17. \threedigits{\value{mycounter}}% 007
  18.  
  19. \fourdigits{\value{mycounter}}% 0007
  20.  
  21. \makeatletter
  22. \immediate\write\@auxout{\fivedigits{\value{mycounter}}}% 00007
  23. \makeatother
  24.  
  25. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement