init commit: framework main.tex, .gitignore

master
carlnues@buffalo.edu 2023-11-10 15:18:18 -05:00
commit 627b4d3ebb
2 changed files with 72 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
/*.pdf
*.swp
*.aux
*.log
*.out
*.bbl
*.blg
*.*~

64
main.tex Normal file
View File

@ -0,0 +1,64 @@
%\documentclass[sigconf]{acmart} #,anonymouns,review
\documentclass[a4paper, 10pt]{article}
\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{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{\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}}
\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}
\section{Introduction}
\label{sec:introduction}
\input{sections/introduction.tex}
\begin{abstract}
\input{sections/abstract.tex}
\end{abstract}
\bibliographystyle{ACM-Reference-Format}
\bibliography{bibliography}
\end{document}