-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_acm.tex
More file actions
158 lines (129 loc) · 5.97 KB
/
main_acm.tex
File metadata and controls
158 lines (129 loc) · 5.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% LaTeX Template for AAMAS-2026 (based on sample-sigconf.tex)
%%% Prepared by the AAMAS-2026 Publication Chairs based on the version from AAMAS-2025.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% --------------------------------------------------------------------
% Document class
% --------------------------------------------------------------------
%%% == IMPORTANT ==
%%% Use the first variant below for the final paper (including author information).
%%% Use the second variant below to anonymize your submission (no author information shown).
%%% For further information on anonymity and double-blind reviewing,
%%% please consult the call for paper information:
%%% https://cyprusconferences.org/aamas2026/submission-instructions/
%%%% For anonymized submission, use this:
%\documentclass[sigconf,anonymous]{acm/aamas}
%%%% For camera-ready, use this:
\documentclass[sigconf]{acm/aamas}
% --------------------------------------------------------------------
% Core packages (many already included by aamas class)
% --------------------------------------------------------------------
\usepackage{balance} % balance columns on the final page
\usepackage{algorithm} % algorithm environment
\usepackage{algorithmic} % algorithmic typesetting
\usepackage{float} % improved float placement control
\usepackage{tikz} % graphics and diagrams
\usetikzlibrary{positioning,shapes,arrows,shadows,fit}
\usepackage{ctable} % complex table formatting
\usepackage{array} % extended array and tabular
\usepackage{ulem} % underlining and strikethrough
\usepackage{ragged2e} % improved ragged text alignment
\usepackage{natbib}
% Custom column type for right-aligned paragraph columns
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
% --------------------------------------------------------------------
% AAMAS-2026 copyright block (DO NOT CHANGE!)
% --------------------------------------------------------------------
\setcopyright{ifaamas}
\acmConference[AAMAS '26]{Proc.\@ of the 25th International Conference
on Autonomous Agents and Multiagent Systems (AAMAS 2026)}{May 25 -- 29, 2026}
{Paphos, Cyprus}{C.~Amato, L.~Dennis, V.~Mascardi, J.~Thangarajah (eds.)}
\copyrightyear{2026}
\acmYear{2026}
\acmDOI{}
\acmPrice{}
\acmISBN{}
% --------------------------------------------------------------------
% Submission information
% --------------------------------------------------------------------
%%% == IMPORTANT ==
%%% Use this command to specify your submission number.
%%% In anonymous mode, it will be printed on the first page.
\acmSubmissionID{1162}
% --------------------------------------------------------------------
% Cover page configuration (internal use only)
% --------------------------------------------------------------------
% Global switch to enable/disable the TR-style cover page
\newif\ifusecoverpage
\usecoverpagetrue % set \usecoverpagefalse for AAAI submission
% \usecoverpagefalse
% Load geometry only when cover is enabled (forbidden by AAAI for submission)
\ifusecoverpage
\usepackage{geometry}
\fi
\usepackage{fancyhdr} % custom page styles
\usepackage{xcolor} % color support for branding
% Brand color for cover page footer
\definecolor{uvaorange}{RGB}{232,119,34}
% Define the 'trcover' pagestyle (logo + footer text)
\input{coverpage/coverpage_style}
% --------------------------------------------------------------------
% Author data and venue-specific formatting
% --------------------------------------------------------------------
% Centralized author database: defines \AllAuthorData and stub \OneAuthor
\input{authors_db}
% Per-paper selection: comma-separated list of author IDs, no spaces
% Authors will appear in the order specified here
\newcommand{\SelectedAuthors}{2,9,4,6,8,10}
% ACM/AAMAS-specific author/affiliation formatting
% Defines \acmauthors using \AllAuthorData + \SelectedAuthors
\input{acm/formats_acm}
% --------------------------------------------------------------------
% Title and author metadata
% --------------------------------------------------------------------
\newcommand{\PaperTitle}{%
Temp ACM Title%
}
\title{\PaperTitle}
% BI Technical Report Number
\newcommand{\TRNumber}{
BI-2025-99
}
% Populate ACM author and affiliation metadata from shared data
\acmauthors
% --------------------------------------------------------------------
% Abstract and executive summary (to be filled by authors)
% --------------------------------------------------------------------
% Use this environment for the ACM/AAMAS abstract that appears under the title.
% Keep it focused on the research contribution, methods, and key results.
\newcommand{\PaperAbstract}{%
TODO: Replace this placeholder with the paper abstract (150--250 words).
Summarize the problem, approach, main contributions, and key findings.
}
% Use this macro for the internal report executive summary used on the cover page
% and possibly in an introductory section. Aim at senior leadership and analysts.
\newcommand{\ExecutiveSummary}{%
TODO: Replace this placeholder with a 3--5 sentence executive summary.
Focus on the problem context, the framework or system you built,
critical capabilities or results, and the decision or policy relevance.
Avoid low-level implementation details; emphasize strategic impact.
}
% ====================================================================
% Document body
% ====================================================================
\begin{document}
% Coverpage (internal use only; comment out for submission)
\ifusecoverpage
\input{coverpage/insert_coverpage}
\fi
% Abstract section using the placeholder macro
\begin{abstract}
\PaperAbstract
\end{abstract}
\maketitle
Test body. Here are some references: \cite{fierceelectronics2022, aghaei2025potential}
%\bibliographystyle{plainnat}
\setcitestyle{authoryear}
\bibliography{references}
\bibliographystyle{ACM-Reference-Format}
\end{document}