65 lines
2.2 KiB
TeX
65 lines
2.2 KiB
TeX
%===============================================================================
|
|
% PREAMBLE
|
|
%===============================================================================
|
|
\documentclass[letterpaper]{article} % DO NOT CHANGE THIS
|
|
\usepackage{aaai25} % DO NOT CHANGE THIS
|
|
\usepackage{times} % DO NOT CHANGE THIS
|
|
\usepackage{helvet} % DO NOT CHANGE THIS
|
|
\usepackage{courier} % DO NOT CHANGE THIS
|
|
\usepackage[hyphens]{url} % DO NOT CHANGE THIS
|
|
\usepackage{graphicx} % DO NOT CHANGE THIS
|
|
\urlstyle{rm} % DO NOT CHANGE THIS
|
|
\def\UrlFont{\rm} % DO NOT CHANGE THIS
|
|
\usepackage{natbib} % DO NOT CHANGE THIS AND DO NOT ADD ANY OPTIONS TO IT
|
|
\usepackage{caption} % DO NOT CHANGE THIS AND DO NOT ADD ANY OPTIONS TO IT
|
|
\frenchspacing % DO NOT CHANGE THIS
|
|
\setlength{\pdfpagewidth}{8.5in} % DO NOT CHANGE THIS
|
|
\setlength{\pdfpageheight}{11in} % DO NOT CHANGE THIS
|
|
|
|
\usepackage{algorithm, algorithmic}
|
|
\usepackage{algorithmic}
|
|
|
|
\usepackage{newfloat}
|
|
\usepackage{listings}
|
|
\DeclareCaptionStyle{ruled}{labelfont=normalfont,labelsep=colon,strut=off} % DO NOT CHANGE THIS
|
|
\lstset{%
|
|
basicstyle={\footnotesize\ttfamily},% footnotesize acceptable for monospace
|
|
numbers=left,numberstyle=\footnotesize,xleftmargin=2em,% show line numbers, remove this entire line if you don't want the numbers.
|
|
aboveskip=0pt,belowskip=0pt,%
|
|
showstringspaces=false,tabsize=2,breaklines=true}
|
|
\floatstyle{ruled}
|
|
\newfloat{listing}{tb}{lst}{}
|
|
\floatname{listing}{Listing}
|
|
|
|
\pdfinfo{
|
|
/TemplateVersion (2025.1)
|
|
}
|
|
|
|
\setcounter{secnumdepth}{0}
|
|
|
|
\title{}
|
|
\author{}
|
|
\affiliations{}
|
|
|
|
%===============================================================================
|
|
% MAIN DOCUMENT
|
|
%===============================================================================
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
\begin{abstract}
|
|
\end{abstract}
|
|
|
|
%===============================================================================
|
|
% Main Text
|
|
%===============================================================================
|
|
|
|
\section{Introduction}
|
|
|
|
%===============================================================================
|
|
% Bibliography
|
|
%===============================================================================
|
|
\bibliography{references}
|
|
|
|
\end{document}
|