Created
January 10, 2015 23:56
-
-
Save codyhan94/55e27e7c3940e09a5fc1 to your computer and use it in GitHub Desktop.
windows standard.sty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ProvidesPackage{standard} | |
% Minion configuration | |
% \usepackage[mathlf, minionint]{MinionPro} | |
% Concrete Math configuration | |
% \usepackage[amssymb]{concmath} | |
% Times configuration | |
% \usepackage{times} | |
% \usepackage[lite, subscriptcorrection, slantedGreek, nofontinfo]{mtpro2} | |
% \usepackage{amssymb} | |
% Baskerville configuration | |
% \usepackage{baskervald} | |
% \usepackage[lite, subscriptcorrection, slantedGreek, nofontinfo]{mtpro2} | |
% \usepackage{amssymb} | |
% Mathdesign configuration | |
% \usepackage[charter, mathcal]{mathdesign} | |
% Palatino configuration | |
% \usepackage{palatino} | |
% \usepackage{mathpazo} | |
% \usepackage{amssymb} | |
% Fourier configuration | |
% \usepackage{fourier} | |
% \usepackage{mathpazo} | |
% \usepackage{amssymb} | |
\usepackage{fancyhdr} | |
\usepackage{amsmath} | |
\usepackage{amsthm} | |
\usepackage{graphicx} | |
\usepackage{setspace} | |
\usepackage{enumerate} | |
\usepackage{units} | |
\usepackage{comment} | |
\usepackage{todonotes} | |
\usepackage{multicol} | |
\usepackage{listings} | |
\usepackage{courier} | |
\usepackage{subfig} | |
\usepackage[hidelinks]{hyperref} | |
\usepackage[margin=1in]{geometry} | |
\usepackage[version=3]{mhchem} | |
\usepackage[boxed, linesnumbered]{algorithm2e} | |
\lstset{basicstyle=\small\ttfamily, numbers=left, frame=single, tabsize=4} | |
\usepackage[T1]{fontenc} | |
% \usepackage{hyperref} | |
% easy scientific notation | |
\newcommand{\scinot}[2]{\ensuremath{#1 \times 10^{#2}}} | |
% easy differential operator | |
\renewcommand{\d}[1]{\ensuremath{\operatorname{\mathrm{d}}\!#1}} | |
% Give me nice ways to write ceiling and floor | |
\providecommand{\ceil}[1]{\left \lceil #1 \right \rceil} | |
\providecommand{\floor}[1]{\left \lfloor #1 \right \rfloor} | |
\providecommand{\stirling}[2]{\ensuremath{\left\{ \begin{matrix} #1 \\ #2 \end{matrix} \right\}}} | |
%\setlength{\parindent}{0pt} | |
%\setlength{\headheight}{15.2pt} | |
%\setlength{\parskip}{12pt} | |
%\pagestyle{fancy} | |
%\fancyhead[L]{Cody Han} | |
%\fancyhead[C]{Luminescence of \rubipy} | |
%\fancyhead[R]{Ch3a Section 1} | |
%\everymath{\displaystyle} | |
%% Theorem Styles | |
\newtheorem{theorem}{Theorem}[section] | |
\newtheorem{lemma}[theorem]{Lemma} | |
\newtheorem{proposition}[theorem]{Proposition} | |
\newtheorem{corollary}[theorem]{Corollary} | |
\newtheorem*{claim}{Claim} | |
\newtheorem{wts}[theorem]{WTS} | |
% % Definition Styles | |
\theoremstyle{definition} | |
\newtheorem{definition}{Definition}[section] | |
\newtheorem{example}{Example}[section] | |
\theoremstyle{remark} | |
\newtheorem*{remark}{Remark} | |
\newtheorem*{notice}{Notice} | |
\endinput |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment