Guest User

Untitled

a guest
Nov 20th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. index{index entry arabic{counter}}
  2.  
  3. "index entry arabic{counter}"
  4.  
  5. "index entry 1".
  6.  
  7. documentclass{article}
  8. %usepackage{makeidx}% using this, "arabic{section}" expands to 1, 2, 3,...
  9. usepackage{index}% using this, "arabic{section}" does not expand
  10. makeindex
  11. newcommand*{Index}[1]{index{#1}}
  12. begin{document}
  13. section{First Section} Index{first arabic{section}}
  14. section{Second Section} Index{second arabic{section}}
  15. section{Third Section} Index{third arabic{section}}
  16. section{Fourth Section} mbox{index{fourth arabic{section}}}
  17. section{Fifth Section} mbox{index{fifth arabic{section}}}
  18. section{Sixth Section} mbox{index{sixth arabic{section}}}
  19. printindex
  20. end{document}
  21.  
  22. indexentry{first 1}{1}
  23. indexentry{second 2}{1}
  24. indexentry{third 3}{1}
  25. indexentry{fourth 4}{1}
  26. indexentry{fifth 5}{1}
  27. indexentry{sixth 6}{1}
  28.  
  29. indexentry {first arabic {section}}{1}
  30. indexentry {second arabic {section}}{1}
  31. indexentry {third arabic {section}}{1}
  32. indexentry {fourth arabic {section}}{1}
  33. indexentry {fifth arabic {section}}{1}
  34. indexentry {sixth arabic {section}}{1}
  35.  
  36. Dan
Add Comment
Please, Sign In to add comment