templates/aaai2026/aaai2026-unified-supp.tex
templates/aaai2026/aaai2026-unified-supp.texBrowse 56 files
1,186 tokens
4,548 bytes
Token encoding: o200k_base
Snapshot 24fd22b
← Back to SKILL.md
1%File: aaai2026-unified-supp.tex2%3% UNIFIED AAAI 2026 SUPPLEMENTARY MATERIAL TEMPLATE4% To switch between anonymous submission and camera-ready versions,5% simply change the next line:6%7% For ANONYMOUS SUBMISSION: uncomment the next line8% \def\aaaianonymous{true}9%10% For CAMERA-READY VERSION: comment out or delete the next line11% \def\aaaianonymous{true}12%13%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%14 15\documentclass[letterpaper]{article} % DO NOT CHANGE THIS16 17% Conditional package loading based on version18\ifdefined\aaaianonymous19 \usepackage[submission]{aaai2026} % Anonymous submission version20\else21 \usepackage{aaai2026} % Camera-ready version22\fi23 24\usepackage{times} % DO NOT CHANGE THIS25\usepackage{helvet} % DO NOT CHANGE THIS26\usepackage{courier} % DO NOT CHANGE THIS27\usepackage[hyphens]{url} % DO NOT CHANGE THIS28\usepackage{graphicx} % DO NOT CHANGE THIS29\urlstyle{rm} % DO NOT CHANGE THIS30\def\UrlFont{\rm} % DO NOT CHANGE THIS31\usepackage{natbib} % DO NOT CHANGE THIS AND DO NOT ADD ANY OPTIONS TO IT32\usepackage{caption} % DO NOT CHANGE THIS AND DO NOT ADD ANY OPTIONS TO IT33\frenchspacing % DO NOT CHANGE THIS34\setlength{\pdfpagewidth}{8.5in} % DO NOT CHANGE THIS35\setlength{\pdfpageheight}{11in} % DO NOT CHANGE THIS36 37% These are recommended to typeset algorithms but not required.38\usepackage{algorithm}39\usepackage{algorithmic}40 41% These are recommended to typeset listings but not required.42\usepackage{newfloat}43\usepackage{listings}44\DeclareCaptionStyle{ruled}{labelfont=normalfont,labelsep=colon,strut=off} % DO NOT CHANGE THIS45\lstset{% 46 basicstyle={\footnotesize\ttfamily},47 numbers=left,numberstyle=\footnotesize,xleftmargin=2em,48 aboveskip=0pt,belowskip=0pt,49 showstringspaces=false,tabsize=2,breaklines=true}50\floatstyle{ruled}51\newfloat{listing}{tb}{lst}{}52\floatname{listing}{Listing}53 54\pdfinfo{55/TemplateVersion (2026.1)56}57 58\setcounter{secnumdepth}{0} %May be changed to 1 or 2 if section numbers are desired.59 60% Title - conditionally set based on version61\ifdefined\aaaianonymous62 \title{AAAI 2026 Supplementary Material\\Anonymous Submission}63\else64 \title{AAAI 2026 Supplementary Material\\Camera Ready}65\fi66 67% Author and affiliation information68\ifdefined\aaaianonymous69\author{70 Anonymous Submission71}72\affiliations{73 % Leave affiliations empty for anonymous submission74}75\else76\author{77 %Authors78 Written by AAAI Press Staff\textsuperscript{\rm 1}\thanks{With help from the AAAI Publications Committee.}\\79 AAAI Style Contributions by Pater Patel Schneider,80 Sunil Issar,\\81 J. Scott Penberthy,82 George Ferguson,83 Hans Guesgen,84 Francisco Cruz\equalcontrib,85 Marc Pujol-Gonzalez\equalcontrib86}87\affiliations{88 \textsuperscript{\rm 1}Association for the Advancement of Artificial Intelligence\\89 1101 Pennsylvania Ave, NW Suite 300\\90 Washington, DC 20004 USA\\91 proceedings-questions@aaai.org92}93\fi94 95\begin{document}96 97\maketitle98 99\begin{abstract}100This document provides supplementary material for the main paper, including additional experiments, derivations, data, figures, algorithms, and other relevant content. Please add detailed information as needed. This supplementary material is submitted together with the main paper to further support and complement the main findings.101\end{abstract}102 103% ----------- Supplementary Content Starts Here -----------104 105\section{Example Supplementary Content}106 107This is the main body of the supplementary material. You may add extra experimental results, ablation studies, detailed derivations, additional figures, pseudocode, dataset descriptions, etc.108 109\subsection{Additional Experiments}110 111% Example: Insert a figure112% Uncomment and modify the following lines to add your own figures:113% \begin{figure}[h]114% \centering115% \includegraphics[width=0.9\columnwidth]{your-figure-name}116% \caption{Your figure caption here.}117% \label{fig:supp1}118% \end{figure}119 120\subsection{Detailed Derivations}121 122You may provide detailed mathematical derivations, proofs, or other technical details here.123 124\subsection{Pseudocode}125 126\begin{algorithm}[h]127\caption{Example Supplementary Algorithm}128\begin{algorithmic}[1]129\STATE Initialize parameters130\FOR{each sample}131 \STATE Compute loss132 \STATE Update parameters133\ENDFOR134\STATE \textbf{return} optimal parameters135\end{algorithmic}136\end{algorithm}137 138% ----------- Supplementary Content Ends Here -----------139 140% References and End of Paper141% These lines must be placed at the end of your paper142\bibliography{aaai2026}143 144\end{document}