Advertisement
Guest User

typical-macros

a guest
Mar 16th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. \newtheorem{theorem}{Theorem}
  2. \newtheorem{corollary}[theorem]{Corollary}
  3. \newtheorem{propn}[theorem]{Proposition}
  4. \newtheorem{conjecture}[theorem]{Hypothesis}
  5. \newtheorem{lemma}[theorem]{Lemma}
  6.  
  7. \theoremstyle{definition}
  8. \newtheorem{defn}{Definition}
  9.  
  10. \theoremstyle{remark}
  11. \newtheorem{remark}{Remark}
  12. \newtheorem*{prob}{Problem}
  13.  
  14. % none of this block is needed, but a coauthor put it in
  15. \usepackage{lipsum}
  16. \usepackage{xargs}
  17. \usepackage[pdftex,dvipsnames]{xcolor}
  18. \usepackage[colorinlistoftodos,prependcaption,textsize=tiny]{todonotes}
  19. \newcommandx{\myworries}[2][1=]{\todo[linecolor=red,backgroundcolor=red!25,bordercolor=red,#1]{#2}}
  20.  
  21. \title...
  22. \date{}
  23.  
  24. \author stuff
  25.  
  26. \newcommand{\N}{\mathbb{N}}
  27. \newcommand{\SPACE}{\textup{SPACE}}
  28. \newcommand{\TIME}{\textup{TIME}}
  29. \newcommand{\TISP}{\textup{TISP}}
  30. \renewcommand{\P}{\textup{P}}
  31. \renewcommand{\L}{\textup{SPACE}(\log(n))}
  32. \newcommand{\NP}{\textup{NP}}
  33. \newcommand{\PSPACE}{\textup{PSPACE}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement