Advertisement
Guest User

Untitled

a guest
Jul 26th, 2015
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.57 KB | None | 0 0
  1. % This is a comment line
  2.  
  3. \documentclass[a4paper]{article}
  4.  
  5. % page break for every «section»
  6. \let\oldsection\section
  7. \renewcommand\section{\clearpage\oldsection}
  8.  
  9. \begin{document}
  10.  
  11. \title{Hello World}
  12.  
  13. \author{Your Name\\
  14.  Department of Computer Science\\
  15.  Courant Institute, NYU}
  16. \maketitle
  17.  
  18. \begin{abstract}
  19.  ...put your abstract here...
  20. \end{abstract}
  21.  
  22. \section{First Section}
  23. ...text...
  24. \subsection{First subsection}
  25. ...text...
  26. \subsection{Second subsection}
  27. ...text...
  28. \section{Second Section}
  29. ...text...
  30.  
  31. ...and so on...
  32. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement