Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. % engine recommendation : xelatex
  2. % class recommendation : oblivoir
  3. % note : use \usepackage{fapapersize}
  4. % \usefapapersize{a,b,c,d,e,f}
  5. % for customizing layout.
  6.  
  7. % packages
  8.  
  9. \usepackage{graphicx}
  10.  
  11. \usepackage{amsmath,amssymb,amsthm}
  12. \usepackage{url}
  13. \usepackage{fancyhdr}
  14. \usepackage{setspace}
  15.  
  16. \usepackage[utf8]{inputenc}
  17. \usepackage[UKenglish]{babel}
  18. \renewcommand\dateUKenglish{\def\today{\number\day~%
  19. \ifcase \month \or January\or February\or March\or April\or May\or June\or
  20. July\or August\or September\or October\or November\or December\fi\space
  21. \number\year}}
  22. \dateUKenglish
  23.  
  24. \usepackage{kotex}
  25.  
  26. % terminology
  27.  
  28. \newcommand{\termTheorem}{Theorem}
  29. \newcommand{\termAxiom}{Axiom}
  30. \newcommand{\termProposition}{Proposition}
  31. \newcommand{\termLemma}{Lemma}
  32. \newcommand{\termConjecture}{Conjecture}
  33. \newcommand{\termCorollary}{Corollary}
  34. \newcommand{\termDefinition}{Definition}
  35. \newcommand{\termProblem}{Problem}
  36. \newcommand{\termSolution}{Solution}
  37. \newcommand{\termExample}{Example}
  38. \newcommand{\termRemark}{Remark}
  39. \newcommand{\termNote}{Note}
  40. \newcommand{\termProof}{Proof}
  41.  
  42. % mathematics
  43.  
  44. \DeclareMathOperator{\csch}{csch}
  45. \DeclareMathOperator{\sech}{sech}
  46.  
  47. \newcommand{\Rl}{\mathbb{R}}
  48. \newcommand{\Qu}{\mathbb{Q}}
  49. \newcommand{\Za}{\mathbb{Z}}
  50. \newcommand{\Na}{\mathbb{N}}
  51. \newcommand{\Co}{\mathbb{C}}
  52. \newcommand{\Fi}{\mathbb{F}}
  53.  
  54. \theoremstyle{plain}
  55.  
  56. \newtheorem{theorem}{\termTheorem}[section]
  57. \newtheorem{axiom}{\termAxiom}[section]
  58. \newtheorem{proposition}{\termProposition}[section]
  59.  
  60. \newtheorem{lemma}[theorem]{\termLemma}
  61. \newtheorem{conjecture}[theorem]{\termConjecture}
  62.  
  63. \newtheorem{corollary}{\termCorollary}[theorem]
  64.  
  65. \theoremstyle{definition}
  66.  
  67. \newtheorem{definition}{\termDefinition}[section]
  68. \newtheorem{problem}{\termProblem}[section]
  69.  
  70. \newtheorem{solution}{\termSolution}[problem]
  71.  
  72. \newtheorem*{example}{\termExample}
  73.  
  74. \theoremstyle{remark}
  75.  
  76. \newtheorem*{note}{\termNote}
  77. \newtheorem*{remark}{\termRemark}
  78.  
  79. \renewcommand\qedsymbol{$\blacksquare$}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement