Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.06 KB | None | 0 0
  1. \documentclass[11pt, twoside]{article}      % use "amsart" instead of "article" for AMSLaTeX format
  2. \usepackage{geometry}                       % See geometry.pdf to learn the layout options. There are lots.
  3. \geometry{a4paper}                          % ... or a4paper or a5paper or ...
  4. %\geometry{landscape}                       % Activate for rotated page geometry
  5. %\usepackage[parfill]{parskip}          % Activate to begin paragraphs with an empty line rather than an indent
  6. \usepackage{graphicx}               % Use pdf, png, jpg, or eps§ with pdflatex; use eps in DVI mode
  7. \graphicspath{ {Images/} }              % TeX will automatically convert eps --> pdf in pdflatex
  8. \usepackage{amssymb}
  9. \usepackage{array}
  10. \usepackage{amsmath}
  11. \usepackage{amsthm}
  12. \usepackage{lmodern}
  13. \renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif
  14. \usepackage{color}
  15. \usepackage[T1]{fontenc}
  16. \usepackage{fancyhdr}
  17. \usepackage{mdframed}
  18. \usepackage[none]{hyphenat}
  19. \usepackage{gensymb}
  20. \usepackage{wrapfig}
  21.  
  22.  %%%%%%%%%%%%%  THEOREMS  %%%%%%%%%%%%%%%%%
  23. % Let's define some theorem environments
  24. % To use later in the paper
  25. \theoremstyle{plain} % other options: definition, remark
  26. \newtheorem{theorem}{Theorem}
  27. \newtheorem{lemma}[theorem]{Lemma}
  28. % By including [theorem], the lemma follows the numbering of theorem
  29. % e.g. Thm 1, Lemma 2, Thm 3, Thm 4, \dots
  30. \theoremstyle{definition}
  31. \newtheorem*{definition}{Definition} % the star prevents numbering
  32.  
  33. % Remarks
  34. \theoremstyle{remark}
  35. \newtheorem{remark}{Remark}
  36.  
  37. \pagestyle{fancy}
  38. \fancyhf{}
  39. \fancyhead[LE,RO]{Wong Jun Hui, Ryan}
  40. \fancyhead[RE,LO]{Notes from MITOCW18.02SC}
  41. \fancyfoot[CE,CO]{\leftmark}
  42. \fancyfoot[LE,RO]{\thepage}
  43. %SetFonts
  44.  
  45. %SetFonts
  46.  
  47.  
  48. {\fontfamily{lmss}\selectfont
  49. \title{MIT OCW 18.02SC: Multivariable Calculus \\ Notes}
  50. \author{Wong Jun Hui, Ryan \\ rwjhwong@icloud.com}}
  51.  
  52. \date{}                         % Activate to display a given date or no date
  53.  
  54. \begin{document}
  55. \maketitle
  56. \tableofcontents
  57. \newpage
  58. \section{Vectors and Matrices}
  59. \subsection{Vectors, Determinants and Planes}
  60. \subsubsection{Day idk what}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement