Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. documentclass[oneside, openany,12pt]{book}
  2.  
  3. usepackage{amsthm,amsmath,latexsym,amsfonts,mathrsfs,graphics,graphicx,amssymb}
  4.  
  5. usepackage[mathcal]{eucal}
  6.  
  7. usepackage{setspace,titlesec,float,indentfirst,tocloft}
  8.  
  9. usepackage[top=1in, left=1in, bottom=1in, right=1in]{geometry}
  10.  
  11. usepackage{etoolbox}
  12.  
  13. titleformat{chapter}[display] {normalfontLARGEbfseriescentering}{chaptertitlename thechapter}{20pt}{LARGE}
  14.  
  15. renewcommandcontentsname{Table of Contents}
  16.  
  17. renewcommand{cftchapleader}{cftdotfill{cftsecdotsep}}
  18.  
  19. renewcommand{cftchappresnum}{MakeUppercase{chaptername}~}
  20.  
  21. renewcommand{cftchapaftersnumb}{qquad}
  22.  
  23. renewcommand{cftchapfont}{bfseries}
  24.  
  25. renewcommand{cftchappagefont}{bfseries}
  26.  
  27. renewcommand{cftchapaftersnum}{:}
  28.  
  29. setlength{cftchapnumwidth}{5.8em}
  30.  
  31. renewcommand{cftsecindent}{6.1em}
  32.  
  33. setlength{cftsecnumwidth}{2.1em}
  34.  
  35. renewcommand{cftsubsecindent}{6.1em}
  36.  
  37. setlength{cftsubsecnumwidth}{2.1em}
  38.  
  39. theoremstyle{plain}
  40.  
  41. newtheorem{thm}{Theorem}[section]
  42.  
  43. newtheorem{mthm}[thm]{Main Theorem}
  44.  
  45. newtheorem{clm}[thm]{Claim}
  46.  
  47. newtheorem{lem}[thm]{Lemma}
  48.  
  49. newtheorem{cor}[thm]{Corollary}
  50.  
  51. newtheorem{rmk}[thm]{Remark}theoremstyle{remark}
  52.  
  53. newtheorem{exm}[thm]{Example}theoremstyle{definition}
  54.  
  55. newtheorem{case}[thm]{Case}theoremstyle{definition}
  56.  
  57. newtheorem{defn}[thm]{Definition}
  58.  
  59. begin{document}
  60.  
  61. chapter{CHAPTER WITH NO SUBSECTION}
  62.  
  63. defn blah blah blah
  64.  
  65. usepackage{chngcntr}
  66. ...
  67. chapter{CHAPTER WITH NO SUBSECTION}
  68. counterwithout{defn}{section}
  69. defn blah blah blah
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement