pre.tex 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. \documentclass{article}
  2. \usepackage[utf8]{inputenc}
  3. % Flexible and complete interface to document dimensions
  4. \usepackage{geometry}
  5. % Enhanced support for graphics
  6. % easy and flex­i­ble user in­ter­face to cus­tomize page layout
  7. \usepackage{graphicx}
  8. % Publication quality tables in LATEX
  9. % for much better looking tables
  10. \usepackage{booktabs}
  11. % Extending the array and tabular environments
  12. % for better arrays (eg matrices) in maths
  13. \usepackage{array}
  14. % Enumerate and itemize within paragraphs
  15. % very flexible & customisable lists (eg. enumerate/itemize, etc.)
  16. \usepackage{paralist}
  17. % Reimplementation of and extensions to LATEX verbatim
  18. % adds environment for commenting out blocks of text
  19. \usepackage{verbatim}
  20. % Figures broken into subfigures
  21. % make it possible to include more than one captioned figure/table in a single float
  22. \usepackage{subfig}
  23. % Verbatim with URL-sensitive line breaks
  24. % com­mand that al­lows line­breaks at cer­tain char­ac­ters or com­bi­na­tions of char­ac­ters
  25. \usepackage{url}
  26. % Flexible bibliography support
  27. % authoryear to numbers for numerical citation
  28. \usepackage[authoryear,square]{natbib}
  29. % Extensive control of page headers and footers
  30. \usepackage{fancyhdr}
  31. % Control sectional headers
  32. \usepackage{sectsty}
  33. %%% ToC (table of contents) APPEARANCE
  34. \usepackage[nottoc,notlof,notlot]{tocbibind} % Put the bibliography in the ToC
  35. \usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents
  36. % Add colour to LATEX tables
  37. \usepackage{colortbl}
  38. % Produces figures which text can flow around
  39. \usepackage{wrapfig}
  40. % AMS mathematical facilities for LATEX
  41. \usepackage{amsmath}
  42. % Easy access to the Lorem Ipsum dummy text
  43. \usepackage{lipsum}
  44. % Reference last page for Page N of M type footers
  45. \usepackage{lastpage}
  46. % SOME SETUP: Do not edit
  47. \allsectionsfont{\sffamily\mdseries\upshape}
  48. \renewcommand{\cftsecfont}{\rmfamily\mdseries\upshape}
  49. \renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} % No bold!
  50. \geometry{a4paper}
  51. %%% END Article customizations