hekeus@55
|
1 % -----------------------------------------------
|
hekeus@55
|
2 % Template for SMAC SMC 2013
|
hekeus@55
|
3 % adapted and corrected from the template for SMC 2012, which was adapted from that of SMC 2011
|
hekeus@55
|
4 % -----------------------------------------------
|
hekeus@55
|
5
|
hekeus@55
|
6 \documentclass{article}
|
hekeus@55
|
7 \usepackage{smacsmc2013}
|
hekeus@55
|
8 \usepackage{times}
|
hekeus@55
|
9 \usepackage{ifpdf}
|
hekeus@55
|
10 \usepackage[english]{babel}
|
hekeus@55
|
11 \usepackage{cite}
|
hekeus@55
|
12
|
hekeus@55
|
13 %%%%%%%%%%%%%%%%%%%%%%%% Some useful packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
hekeus@55
|
14 %%%%%%%%%%%%%%%%%%%%%%%% See related documentation %%%%%%%%%%%%%%%%%%%%%%%%%%
|
hekeus@55
|
15 %\usepackage{amsmath} % popular packages from Am. Math. Soc. Please use the
|
hekeus@55
|
16 %\usepackage{amssymb} % related math environments (split, subequation, cases,
|
hekeus@55
|
17 %\usepackage{amsfonts}% multline, etc.)
|
hekeus@55
|
18 %\usepackage{bm} % Bold Math package, defines the command \bf{}
|
hekeus@55
|
19 %\usepackage{paralist}% extended list environments
|
hekeus@55
|
20 %%subfig.sty is the modern replacement for subfigure.sty. However, subfig.sty
|
hekeus@55
|
21 %%requires and automatically loads caption.sty which overrides class handling
|
hekeus@55
|
22 %%of captions. To prevent this problem, preload caption.sty with caption=false
|
hekeus@55
|
23 %\usepackage[caption=false]{caption}
|
hekeus@55
|
24 %\usepackage[font=footnotesize]{subfig}
|
hekeus@55
|
25
|
hekeus@55
|
26
|
hekeus@55
|
27 %user defined variables
|
hekeus@55
|
28 \def\papertitle{PAPER TEMPLATE FOR THE
|
hekeus@55
|
29 STOCKHOLM MUSIC ACOUSTICS CONFERENCE (SMAC 2013) AND
|
hekeus@55
|
30 SOUND AND MUSIC COMPUTING CONFERENCE (SMC 2013) TO BE HELD IN STOCKHOLM, SWEDEN, JULY 30-AUGUST 3, 2013}
|
hekeus@55
|
31 \def\firstauthor{First author}
|
hekeus@55
|
32 \def\secondauthor{Second author}
|
hekeus@55
|
33 \def\thirdauthor{Third author}
|
hekeus@55
|
34
|
hekeus@55
|
35 % adds the automatic
|
hekeus@55
|
36 % Saves a lot of ouptut space in PDF... after conversion with the distiller
|
hekeus@55
|
37 % Delete if you cannot get PS fonts working on your system.
|
hekeus@55
|
38
|
hekeus@55
|
39 % pdf-tex settings: detect automatically if run by latex or pdflatex
|
hekeus@55
|
40 \newif\ifpdf
|
hekeus@55
|
41 \ifx\pdfoutput\relax
|
hekeus@55
|
42 \else
|
hekeus@55
|
43 \ifcase\pdfoutput
|
hekeus@55
|
44 \pdffalse
|
hekeus@55
|
45 \else
|
hekeus@55
|
46 \pdftrue
|
hekeus@55
|
47 \fi
|
hekeus@55
|
48
|
hekeus@55
|
49 \ifpdf % compiling with pdflatex
|
hekeus@55
|
50 \usepackage[pdftex,
|
hekeus@55
|
51 pdftitle={\papertitle},
|
hekeus@55
|
52 pdfauthor={\firstauthor, \secondauthor, \thirdauthor},
|
hekeus@55
|
53 bookmarksnumbered, % use section numbers with bookmarks
|
hekeus@55
|
54 pdfstartview=XYZ % start with zoom=100% instead of full screen;
|
hekeus@55
|
55 % especially useful if working with a big screen :-)
|
hekeus@55
|
56 ]{hyperref}
|
hekeus@55
|
57 %\pdfcompresslevel=9
|
hekeus@55
|
58
|
hekeus@55
|
59 \usepackage[pdftex]{graphicx}
|
hekeus@55
|
60 % declare the path(s) where your graphic files are and their extensions so
|
hekeus@55
|
61 %you won't have to specify these with every instance of \includegraphics
|
hekeus@55
|
62 \graphicspath{{./figures/}}
|
hekeus@55
|
63 \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
|
hekeus@55
|
64
|
hekeus@55
|
65 \usepackage[figure,table]{hypcap}
|
hekeus@55
|
66
|
hekeus@55
|
67 \else % compiling with latex
|
hekeus@55
|
68 \usepackage[dvips,
|
hekeus@55
|
69 bookmarksnumbered, % use section numbers with bookmarks
|
hekeus@55
|
70 pdfstartview=XYZ % start with zoom=100% instead of full screen
|
hekeus@55
|
71 ]{hyperref} % hyperrefs are active in the pdf file after conversion
|
hekeus@55
|
72
|
hekeus@55
|
73 \usepackage[dvips]{epsfig,graphicx}
|
hekeus@55
|
74 % declare the path(s) where your graphic files are and their extensions so
|
hekeus@55
|
75 %you won't have to specify these with every instance of \includegraphics
|
hekeus@55
|
76 \graphicspath{{./figures/}}
|
hekeus@55
|
77 \DeclareGraphicsExtensions{.eps}
|
hekeus@55
|
78
|
hekeus@55
|
79 \usepackage[figure,table]{hypcap}
|
hekeus@55
|
80 \fi
|
hekeus@55
|
81
|
hekeus@55
|
82 %setup the hyperref package - make the links black without a surrounding frame
|
hekeus@55
|
83 \hypersetup{
|
hekeus@55
|
84 colorlinks,%
|
hekeus@55
|
85 citecolor=black,%
|
hekeus@55
|
86 filecolor=black,%
|
hekeus@55
|
87 linkcolor=black,%
|
hekeus@55
|
88 urlcolor=black
|
hekeus@55
|
89 }
|
hekeus@55
|
90
|
hekeus@55
|
91
|
hekeus@55
|
92 % Title.
|
hekeus@55
|
93 % ------
|
hekeus@55
|
94 \title{\papertitle}
|
hekeus@55
|
95
|
hekeus@55
|
96 % Authors
|
hekeus@55
|
97 % Please note that submissions are NOT anonymous, therefore
|
hekeus@55
|
98 % authors' names have to be VISIBLE in your manuscript.
|
hekeus@55
|
99 %
|
hekeus@55
|
100 % Single address
|
hekeus@55
|
101 % To use with only one author or several with the same address
|
hekeus@55
|
102 % ---------------
|
hekeus@55
|
103 %\oneauthor
|
hekeus@55
|
104 % {\firstauthor} {Affiliation1 \\ %
|
hekeus@55
|
105 % {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
|
hekeus@55
|
106
|
hekeus@55
|
107 %Two addresses
|
hekeus@55
|
108 %--------------
|
hekeus@55
|
109 % \twoauthors
|
hekeus@55
|
110 % {\firstauthor} {Affiliation1 \\ %
|
hekeus@55
|
111 % {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
|
hekeus@55
|
112 % {\secondauthor} {Affiliation2 \\ %
|
hekeus@55
|
113 % {\tt \href{mailto:author2@smcnetwork.org}{author2@smcnetwork.org}}}
|
hekeus@55
|
114
|
hekeus@55
|
115 % Three addresses
|
hekeus@55
|
116 % --------------
|
hekeus@55
|
117 \threeauthors
|
hekeus@55
|
118 {\firstauthor} {Affiliation1 \\ %
|
hekeus@55
|
119 {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
|
hekeus@55
|
120 {\secondauthor} {Affiliation2 \\ %
|
hekeus@55
|
121 {\tt \href{mailto:author2@smcnetwork.org}{author2@smcnetwork.org}}}
|
hekeus@55
|
122 {\thirdauthor} { Affiliation3 \\ %
|
hekeus@55
|
123 {\tt \href{mailto:author3@smcnetwork.org}{author3@smcnetwork.org}}}
|
hekeus@55
|
124
|
hekeus@55
|
125
|
hekeus@55
|
126 % ***************************************** the document starts here ***************
|
hekeus@55
|
127 \begin{document}
|
hekeus@55
|
128 %
|
hekeus@55
|
129 \capstartfalse
|
hekeus@55
|
130 \maketitle
|
hekeus@55
|
131 \capstarttrue
|
hekeus@55
|
132 %
|
hekeus@55
|
133 \begin{abstract}
|
hekeus@55
|
134 Place your abstract at the top left column on the first page.
|
hekeus@55
|
135 Please write about 150-200 words that specifically highlight the purpose of your work,
|
hekeus@55
|
136 its context, and provide a brief synopsis of your results.
|
hekeus@55
|
137 Avoid equations in this part.
|
hekeus@55
|
138 \end{abstract}
|
hekeus@55
|
139 %
|
hekeus@55
|
140
|
hekeus@55
|
141 \section{Introduction}\label{sec:introduction}
|
hekeus@55
|
142 This template includes all the information about formatting manuscripts for
|
hekeus@55
|
143 the SMAC SMC 2013 Conference.
|
hekeus@55
|
144 Please use \LaTeX{} templates when
|
hekeus@55
|
145 preparing your submission.
|
hekeus@55
|
146 Please follow these guidelines to give the final proceedings a professional look.
|
hekeus@55
|
147 If you have any questions, please contact the SMAC SMC 2013 Organizers.
|
hekeus@55
|
148 This template can be downloaded from:\\
|
hekeus@55
|
149 \url{http://smc2013.smcnetwork.org}.
|
hekeus@55
|
150
|
hekeus@55
|
151 \section{Page size and format}\label{sec:page_size}
|
hekeus@55
|
152 Your paper must not exceed {\bf 8 pages},
|
hekeus@55
|
153 no matter if you are presenting orally or posterly.
|
hekeus@55
|
154 We \underline{strongly encourage}
|
hekeus@55
|
155 a paper length of {\bf 6 pages}.
|
hekeus@55
|
156 We will format the proceedings as
|
hekeus@55
|
157 \underline{portrait A4-size paper} \underline{(21.0~cm x 29.7~cm)}.
|
hekeus@55
|
158 All material on each page should fit within a rectangle of 17.2~cm x 25.2~cm,
|
hekeus@55
|
159 centered on the page, beginning 2.0~cm from the top of the page and ending
|
hekeus@55
|
160 with 2.5cm from the bottom.
|
hekeus@55
|
161 The left and right margins should be 1.9~cm.
|
hekeus@55
|
162 The text should be in two 8.2~cm columns with a 0.8~cm gutter.
|
hekeus@55
|
163 All text must be in a two-column format, and justified.
|
hekeus@55
|
164 If you prepare your document by cutting and pasting into this one,
|
hekeus@55
|
165 then you should not have to worry,
|
hekeus@55
|
166 unless there is something strange with your \LaTeX{} interpreter.
|
hekeus@55
|
167 So double check.
|
hekeus@55
|
168 If you have any questions, please contact the SMAC SMC 2013 Organizers.
|
hekeus@55
|
169
|
hekeus@55
|
170 \section{Typeset Text}\label{sec:typeset_text}
|
hekeus@55
|
171
|
hekeus@55
|
172 \subsection{Normal or Body Text}\label{subsec:body}
|
hekeus@55
|
173 Please use a 10pt (point) Times font.
|
hekeus@55
|
174 Use sans-serif or non-proportional fonts
|
hekeus@55
|
175 only for special purposes,
|
hekeus@55
|
176 such as distinguishing source code.
|
hekeus@55
|
177 The first paragraph in each section should not be indented,
|
hekeus@55
|
178 but all other paragraphs should be.
|
hekeus@55
|
179
|
hekeus@55
|
180 \subsection{Title and Authors}
|
hekeus@55
|
181 As you can see above, the title is 16pt Times, bold, upper case, and centered.
|
hekeus@55
|
182 The names of the authors are also centered.
|
hekeus@55
|
183 The lead author's name is to be listed first (left-most), and the co-authors'
|
hekeus@55
|
184 names after. If the addresses for all authors are the same, include the
|
hekeus@55
|
185 address only once, centered. If the authors have different addresses, put the
|
hekeus@55
|
186 addresses, evenly spaced, under each authors' name.
|
hekeus@55
|
187
|
hekeus@55
|
188 \subsection{First Page Copyright Notice}
|
hekeus@55
|
189 Please leave the copyright notice exactly as it appears in the lower
|
hekeus@55
|
190 left-hand corner of the first page. It is set in 8pt Times, if you are wondering.
|
hekeus@55
|
191
|
hekeus@55
|
192 \subsection{Page Numbering, Headers and Footers}
|
hekeus@55
|
193 Do not include headers, footers or page numbers in your submission.
|
hekeus@55
|
194 We add these electronically when we assemble the publications
|
hekeus@55
|
195 into the proceedings.
|
hekeus@55
|
196
|
hekeus@55
|
197 \section{Headings}
|
hekeus@55
|
198 First level headings are in Times 12pt bold,
|
hekeus@55
|
199 centered with 1 line of space above the section head, and 1/2 space below it.
|
hekeus@55
|
200 For a section header immediately followed by a subsection header, the space
|
hekeus@55
|
201 should be merged.
|
hekeus@55
|
202
|
hekeus@55
|
203 \subsection{Second Level Headings}
|
hekeus@55
|
204 Second level headings are in Times 10pt bold, flush left,
|
hekeus@55
|
205 with 1 line of space above the section head, and 1/2 space below it.
|
hekeus@55
|
206 The first letter of each significant word is capitalized.
|
hekeus@55
|
207
|
hekeus@55
|
208 \subsubsection{Third Level Headings}
|
hekeus@55
|
209 Third level headings are in Times 10pt italic, flush left,
|
hekeus@55
|
210 with 1/2 line of space above the section head, and 1/2 space below it.
|
hekeus@55
|
211 The first letter of significant words is capitalized.
|
hekeus@55
|
212
|
hekeus@55
|
213 \subsubsection{Level Headings Beyond the Third}
|
hekeus@55
|
214 We strongly discourage any use of
|
hekeus@55
|
215 more than three levels of headings.
|
hekeus@55
|
216 Also, if you have only one subsection in a section,\footnote{Just like this section.}
|
hekeus@55
|
217 then you should reorganize it into one section.
|
hekeus@55
|
218
|
hekeus@55
|
219 \section{Floats and equations}
|
hekeus@55
|
220
|
hekeus@55
|
221 \subsection{Equations}
|
hekeus@55
|
222 Equations of importance,
|
hekeus@55
|
223 or to which you refer later,
|
hekeus@55
|
224 should be placed on separated lines and numbered.
|
hekeus@55
|
225 The number should be on the right side, in parentheses.
|
hekeus@55
|
226 \begin{equation}
|
hekeus@55
|
227 E=mc^{2+\delta}.
|
hekeus@55
|
228 \label{eq:Emc2}
|
hekeus@55
|
229 \end{equation}
|
hekeus@55
|
230 Refer to equations like so:
|
hekeus@55
|
231 As (\ref{eq:Emc2}) shows,
|
hekeus@55
|
232 I do not completely trust Special Relativity.
|
hekeus@55
|
233
|
hekeus@55
|
234 \subsection{Figures, Tables and Captions}
|
hekeus@55
|
235 \begin{table}[t]
|
hekeus@55
|
236 \begin{center}
|
hekeus@55
|
237 \begin{tabular}{|l|l|}
|
hekeus@55
|
238 \hline
|
hekeus@55
|
239 String value & Numeric value \\
|
hekeus@55
|
240 \hline
|
hekeus@55
|
241 Hej SMAC SMC & 2013 \\
|
hekeus@55
|
242 \hline
|
hekeus@55
|
243 \end{tabular}
|
hekeus@55
|
244 \end{center}
|
hekeus@55
|
245 \caption{Table captions should be placed below the table, exactly like this,
|
hekeus@55
|
246 but using words different from these.}
|
hekeus@55
|
247 \label{tab:example}
|
hekeus@55
|
248 \end{table}
|
hekeus@55
|
249
|
hekeus@55
|
250 All artwork must be centered, neat, clean, and legible.
|
hekeus@55
|
251 And if you include figures in your paper, instead of artwork,
|
hekeus@55
|
252 please make sure they are centered, neat, clean,
|
hekeus@55
|
253 and completely legible without super resolution imaging.
|
hekeus@55
|
254 All lines should be thick and dark enough to be reproducible
|
hekeus@55
|
255 even by a facsimile machine;
|
hekeus@55
|
256 and figures should not be hand-drawn unless your hand is robotically precise.
|
hekeus@55
|
257 Since the proceedings are distributed in electronic form only,
|
hekeus@55
|
258 we allow color to be used in figures;
|
hekeus@55
|
259 but please check that your figures are
|
hekeus@55
|
260 coherent if they are printed in black-and-white.
|
hekeus@55
|
261 For instance, to make your figures zing in several conditions,
|
hekeus@55
|
262 vary line thickness, style, and color at the same time.
|
hekeus@55
|
263
|
hekeus@55
|
264 Numbers and captions of figures and tables always appear below the figure/table.
|
hekeus@55
|
265 Leave 1 line space between the figure or table and the caption.
|
hekeus@55
|
266 Figure and tables are numbered consecutively.
|
hekeus@55
|
267 Captions should be Times 10pt.
|
hekeus@55
|
268 And try to make your captions sufficiently explain your figures and tables.
|
hekeus@55
|
269 Place tables/figures in text as close to the reference as possible,
|
hekeus@55
|
270 and preferably at the top of the page.
|
hekeus@55
|
271
|
hekeus@55
|
272 Always refer to tables and figures in the main text, for example:
|
hekeus@55
|
273 see Fig. \ref{fig:example} and \tabref{tab:example}.
|
hekeus@55
|
274 Figures and tables may extend across both columns to a maximum width of 17.2cm.
|
hekeus@55
|
275
|
hekeus@55
|
276 Vectorial figures are preferred, e.g., eps.
|
hekeus@55
|
277 When using \texttt{Matlab},
|
hekeus@55
|
278 export using either (encapsulated) Postscript or PDF format.
|
hekeus@55
|
279 In order to optimize readability,
|
hekeus@55
|
280 the font size of text within a figure should be no smaller than
|
hekeus@55
|
281 that of footnotes (8pt font-size).
|
hekeus@55
|
282 If you use bitmap figures, make sure that
|
hekeus@55
|
283 the resolution is high enough for print quality.
|
hekeus@55
|
284
|
hekeus@55
|
285 \begin{figure}[t]
|
hekeus@55
|
286 \centering
|
hekeus@55
|
287 \includegraphics[width=0.9\columnwidth]{figure}
|
hekeus@55
|
288 \caption{Figure captions should be placed below the figure,
|
hekeus@55
|
289 exactly like this.
|
hekeus@55
|
290 This photo shows the KTH main courtyard that you will walk through every day during SMAC SMC 2013.\label{fig:example}}
|
hekeus@55
|
291 \end{figure}
|
hekeus@55
|
292
|
hekeus@55
|
293 %\begin{figure}[t]
|
hekeus@55
|
294 %\figbox{
|
hekeus@55
|
295 %\subfloat[][]{\includegraphics[width=60mm]{figure}\label{fig:subfigex_a}}\\
|
hekeus@55
|
296 %\subfloat[][]{\includegraphics[width=80mm]{figure}\label{fig:subfigex_b}}
|
hekeus@55
|
297 %}
|
hekeus@55
|
298 %\caption{Here's an example using the subfig package.\label{fig:subfigex} }
|
hekeus@55
|
299 %\end{figure}
|
hekeus@55
|
300
|
hekeus@55
|
301 \subsection{Footnotes}
|
hekeus@55
|
302 You can indicate footnotes with a number in the text,\footnote{This is a footnote.}
|
hekeus@55
|
303 but try to work the content into the main text.
|
hekeus@55
|
304 Use 8pt font-size for footnotes.
|
hekeus@55
|
305 Place the footnotes at the bottom of the page
|
hekeus@55
|
306 on which they appear.
|
hekeus@55
|
307 Precede the footnote with a 0.5pt horizontal rule.
|
hekeus@55
|
308
|
hekeus@55
|
309 \section{Citations}
|
hekeus@55
|
310 List all bibliographical references at the end of your paper,
|
hekeus@55
|
311 inside a section named ``REFERENCES''.
|
hekeus@55
|
312 Order and number the references in order of appearance.
|
hekeus@55
|
313 Do not list references that do not appear in the text.
|
hekeus@55
|
314 Reference numbers in the text should appear within square brackets, such as
|
hekeus@55
|
315 in~\cite{Someone:13} or~\cite{Someone:13,Someone:04,Someone:09}.
|
hekeus@55
|
316 The reference format is the standard IEEE one.
|
hekeus@55
|
317 We highly recommend you use BibTeX
|
hekeus@55
|
318 to generate the reference list.
|
hekeus@55
|
319
|
hekeus@55
|
320 \section{Conclusions}
|
hekeus@55
|
321 To finish your full-length paper, end it with a conclusion;
|
hekeus@55
|
322 and after careful editing and a final spell-cheek,
|
hekeus@55
|
323 submit it through the \href{https://www.easychair.org/account/signin.cgi?conf=smacsmc2013}{\textcolor {magenta} {\underline {EasyChair Submission System}}}.
|
hekeus@55
|
324 \underline{Do not} send papers directly by e-mail.
|
hekeus@55
|
325 %
|
hekeus@55
|
326 \begin{acknowledgments}
|
hekeus@55
|
327 You may acknowledge people, projects,
|
hekeus@55
|
328 funding agencies, etc.
|
hekeus@55
|
329 which can be included after the second-level heading
|
hekeus@55
|
330 ``Acknowledgments'' (with no numbering).
|
hekeus@55
|
331 \end{acknowledgments}
|
hekeus@55
|
332
|
hekeus@55
|
333 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
hekeus@55
|
334 %bibliography here
|
hekeus@55
|
335 \bibliography{smacsmc2013template}
|
hekeus@55
|
336
|
hekeus@55
|
337 \end{document}
|