Advertisement
Guest User

Untitled

a guest
Nov 6th, 2016
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.46 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \usepackage{xparse}
  4.  
  5. \let\oldsection\section
  6. \RenewDocumentCommand{\section}{s o m}{%
  7.   \IfBooleanTF{#1}
  8.    {\oldsection*{\MakeUppercase{#3}}}% \section*
  9.     {\IfValueTF{#2}
  10.       {\oldsection[\MakeUppercase{#2}]{\MakeUppercase{#3}}}% \section[.]{..}
  11.        {\oldsection{\MakeUppercase{#3}}}% \section{..}
  12.     }%
  13. }
  14.  
  15. \begin{document}
  16.  
  17. \tableofcontents
  18.  
  19. \section{A section}
  20. \section[Another section]{A section}
  21.  
  22. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement