-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
266f450
commit 6088634
Showing
8 changed files
with
1,859 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Ignore Everything | ||
* | ||
|
||
# Except these | ||
!*.tex | ||
!*.sty | ||
!.gitignore | ||
!Imgs | ||
!Imgs/* | ||
!Imgs/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
%- Preamble - Age - Article -- | ||
|
||
|
||
\documentclass{article} | ||
|
||
%-------- Include Packages ----------- | ||
\usepackage{graphics} | ||
\usepackage{wrapfig} | ||
\usepackage{xcolor} % For colouring hyperlinks | ||
\usepackage{tikz} | ||
\usepackage[colorlinks=true,linkcolor={red!80!black},citecolor={blue!50!black},urlcolor={blue!80!black}]{hyperref} | ||
\usepackage{tikz-3dplot} | ||
% -- Math Related ------------------- | ||
\usepackage{amsmath} | ||
\usepackage{mathtools} | ||
\usepackage{latexsym} | ||
\usepackage{mathrsfs} % Curly Math text for Lagrangians | ||
\usepackage{esvect} % Allows vector arrow superscripts | ||
%----------- Particle Physics -------- | ||
\usepackage{feynmp-auto} | ||
% ---------------- ------------------- | ||
%------- Custom Environments -------- | ||
\newcommand{\abs}[1]{\lvert#1\rvert} | ||
\newcommand{\secref}[1]{[\ref{#1}]} | ||
\newcommand{\sgn}{\operatorname{sgn}} | ||
\newcommand{\abox}[1]{\vspace{0.3cm} \fbox{\addtolength{\linewidth}{-2\fboxsep} \addtolength{\linewidth}{-2\fboxrule} \begin{minipage}{\linewidth}#1 \end{minipage}}\vspace{0.3cm}} | ||
\DeclarePairedDelimiter{\ceil}{\lceil}{\rceil} | ||
\DeclarePairedDelimiter{\floor}{\lfloor}{\rfloor} | ||
%------------------------------------ | ||
|
||
%----------Custom Variables --------- | ||
% Define File Paths | ||
\graphicspath{{Imgs/}} | ||
\def \RefPath {../../References/} | ||
\def \ImagePath {./Images/} | ||
%------------------------------------ | ||
%-------- Page Typesetting ----------- | ||
\textwidth 17 truecm | ||
\textheight 23.5 truecm | ||
\topmargin -2 truecm | ||
\oddsidemargin -.2 truecm | ||
|
||
|
||
%------------Formatting -------------- | ||
% Remove Indenting | ||
%\setlength{\parindent}{0cm} | ||
% Change height of tables | ||
\renewcommand{\arraystretch}{1.2} | ||
|
||
%--------- Custom Settings ----------- | ||
%------------------------------------- | ||
|
||
%--------- Title/Author -------------- | ||
|
||
|
||
%\title{} | ||
|
||
%------------------------------------- | ||
|
||
|
||
|
||
%\begin{document} | ||
|
||
|
||
|
||
|
||
%\bibliographystyle{plain} | ||
% \bibliography{../../../References/General, ../../../References/SUSY} %For vim-latex auto-completion | ||
%\bibliography{\RefPath General \RefPath SUSY} | ||
|
||
%\end{document} |