Guest User

Untitled

a guest
Aug 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
  2.  
  3. newcommand{package}[1]{textbf{#1}} % package names in bold text
  4. newcommand{cmmd}[1]{textbackslashtexttt{#1}} % command name in tt font
  5. newcommand{href}[1]{#1} % does nothing, but defines the command so the
  6. % print-optimized version will ignore href tags (redefined by hyperref pkg).
  7. %newcommand{texorpdfstring}[2]{#1} % does nothing, but defines the command
  8. % Anything defined here may be redefined by packages added below...
  9.  
  10. % This package allows if-then-else control structures.
  11. usepackage{refcheck}
  12. usepackage{ifthen}
  13. newboolean{PrintVersion}
  14. setboolean{PrintVersion}{false}
  15. % CHANGE THIS VALUE TO "true" as necessary, to improve printed results for hard copies
  16. % by overriding some options of the hyperref package below.
  17.  
  18. %usepackage{nomencl} % For a nomenclature (optional; available from ctan.org)
  19. usepackage{amsmath,amssymb,amstext} % Lots of math symbols and environments
  20. usepackage[pdftex]{graphicx} % For including graphics N.B. pdftex graphics driver
  21.  
  22. usepackage[pdftex,letterpaper=true,pagebackref=false]{hyperref} % with basic options
  23. % N.B. pagebackref=true provides links back from the References to the body text. This can cause trouble for printing.
  24. ifthenelse{boolean{PrintVersion}}{ % for improved print quality, change some hyperref options
  25. hypersetup{ % override some previously defined hyperref options
  26. % colorlinks,%
  27. citecolor=black,%
  28. filecolor=black,%
  29. linkcolor=black,%
  30. urlcolor=black}
  31. }{} % end of ifthenelse (no else)
  32.  
  33. setlength{marginparwidth}{0pt}
  34. setlength{marginparsep}{0pt} % width of space between body text and margin notes
  35. setlength{evensidemargin}{0.125in} % Adds 1/8 in. to binding side of all
  36. setlength{textwidth}{6.375in} % assuming US letter paper (8.5 in. x 11 in.) and
  37. % side margins as above
  38. raggedbottom
  39.  
  40. % The following statement specifies the amount of space between
  41. % paragraphs. Other reasonable specifications are bigskipamount and smallskipamount.
  42. setlength{parskip}{medskipamount}
  43.  
  44. % The following statement controls the line spacing. The default
  45. % spacing corresponds to good typographic conventions and only slight
  46. % changes (e.g., perhaps "1.2"), if any, should be made.
  47. renewcommand{baselinestretch}{1} % this is the default line space setting
  48. letorigdoublepagecleardoublepage
  49. newcommand{clearemptydoublepage}{%
  50. clearpage{pagestyle{empty}origdoublepage}}
  51. letcleardoublepageclearemptydoublepage
  52.  
  53.  
  54.  
  55. newcommand{red}[1]{textcolor{red}{#1}}
  56. %newenvironment{noteH}{begin{quote}smallsf H $clubsuit$~}{end{quote}}
  57.  
  58. %newenvironment{noteS}{begin{quote}smallsf S $diamondsuit$~}{end{quote}}
  59.  
  60.  
  61.  
  62. begin{document}
  63.  
  64. %
  65. begin{equation}
  66. z_i leq sum_{j in P(i)} x_j + sum_{ j in N(i) } (1-x_j) end{equation}
  67.  
  68. end{document}
Add Comment
Please, Sign In to add comment