paper-thesis-template/main.tex

83 lines
2.0 KiB
TeX

%\documentclass[sigconf]{acmart} #,anonymouns,review
\documentclass[letter, 12pt]{report}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{cleveref}
\usepackage[inline]{enumitem}
\usepackage{float}
\usepackage[margin=0.5in]{geometry}
%\usepackage{multirow}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{times}
\usepackage{tabto}
\usepackage{todonotes}
%\usepackage{tcolorbox}
\usepackage{xspace}
\newcommand{\bfcaption}[1]{\caption{\bf #1}}
\newcommand{\feedback}[1]{[[\textcolor{blue}{#1}]]}
\newcommand{\fixme}[1]{[[\textcolor{green}{#1}]]}
\newcommand{\skiplines}[1]{\vspace*{#1\baselineskip}}
%\newcommand{\tinysection}[1]{\bigskip \noindent \textbf{#1} \bigskip}
\newcommand{\tinysection}[1]{\smallskip \noindent \textbf{#1.}~}
\newcommand{\trimfigurespacing}{\vspace*{-4mm}}
\newcommand{\XXXnote}[1]{\textcolor{red}{\bfseries XXX: #1}}
%%\\[37\baselineskip]
%\newcommand{\skiplines}[1]{
% \par
% \nopagebreak
% \vspace*{#1\baselineskip}
%}
\newcommand{\systemname}{\textsc{KeepItSimple}\xspace}
\newcommand{\optspeed}{70\%}
\newcommand{\facebook}{Facebook\xspace}
\newcommand{\schedutil}{\texttt{schedutil}\xspace}
\newcommand{\fenergy}{\mathcal{F}_{pow} }
\newcommand{\fperf}{\mathcal{F}_{max} }
\newcommand{\fidle}{\mathcal{F}_{0} }
\newcommand{\fmemory}{\mathcal{F}_{mem} }
\newcommand{\memory}{cache bound } % memory access
\newcommand{\Memory}{Cache bound }
\newcounter{ClaimCounter}
\newcommand{\claim}[1]{
\begin{tcolorbox}[colframe=blue!75!white,colback=blue!10!white]
\stepcounter{ClaimCounter}
\textbf{Observation \arabic{ClaimCounter}}: #1
\end{tcolorbox}
}
\begin{document}
\pagenumbering{roman}
\thispagestyle{empty}
\input{sections/frontmatter.tex}
\input{sections/dedication.tex}
\input{sections/acknowledgements.tex}
\begin{abstract}
\input{sections/abstract.tex}
\end{abstract}
\pagenumbering{arabic}
\section{Introduction}
\label{sec:introduction}
\input{sections/introduction.tex}
\bibliographystyle{ACM-Reference-Format}
\bibliography{bibliography}
\end{document}