annotate smc2012/smc2012template.tex @ 58:a63c438b3f65 tip

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