annotate docs/SMC15/smc2015template.tex @ 693:a74cb47e779c

Creation of experimental variables and control methods document
author Dave Moffat <djmoffat@users.noreply.github.com>
date Thu, 09 Apr 2015 12:59:46 +0100
parents
children 18699932c396 869ed636f7c0
rev   line source
djmoffat@693 1 % -----------------------------------------------
djmoffat@693 2 % Template for SMC 2012
djmoffat@693 3 % adapted from the template for SMC 2011, which was adapted from that of SMC 2010
djmoffat@693 4 % -----------------------------------------------
djmoffat@693 5
djmoffat@693 6 \documentclass{article}
djmoffat@693 7 \usepackage{smc2015}
djmoffat@693 8 \usepackage{times}
djmoffat@693 9 \usepackage{ifpdf}
djmoffat@693 10 \usepackage[english]{babel}
djmoffat@693 11 \usepackage{cite}
djmoffat@693 12
djmoffat@693 13 %%%%%%%%%%%%%%%%%%%%%%%% Some useful packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
djmoffat@693 14 %%%%%%%%%%%%%%%%%%%%%%%% See related documentation %%%%%%%%%%%%%%%%%%%%%%%%%%
djmoffat@693 15 %\usepackage{amsmath} % popular packages from Am. Math. Soc. Please use the
djmoffat@693 16 %\usepackage{amssymb} % related math environments (split, subequation, cases,
djmoffat@693 17 %\usepackage{amsfonts}% multline, etc.)
djmoffat@693 18 %\usepackage{bm} % Bold Math package, defines the command \bf{}
djmoffat@693 19 %\usepackage{paralist}% extended list environments
djmoffat@693 20 %%subfig.sty is the modern replacement for subfigure.sty. However, subfig.sty
djmoffat@693 21 %%requires and automatically loads caption.sty which overrides class handling
djmoffat@693 22 %%of captions. To prevent this problem, preload caption.sty with caption=false
djmoffat@693 23 %\usepackage[caption=false]{caption}
djmoffat@693 24 %\usepackage[font=footnotesize]{subfig}
djmoffat@693 25
djmoffat@693 26
djmoffat@693 27 %user defined variables
djmoffat@693 28 \def\papertitle{APE FOR WEB: A BROWSER-BASED EVALUATION TOOL FOR AUDIO}
djmoffat@693 29 \def\firstauthor{Brecht De Man}
djmoffat@693 30 \def\secondauthor{Nicholas Jillings}
djmoffat@693 31 \def\thirdauthor{David Moffat}
djmoffat@693 32 \def\fourthauthor{Joshua D. Reiss}
djmoffat@693 33
djmoffat@693 34 % adds the automatic
djmoffat@693 35 % Saves a lot of ouptut space in PDF... after conversion with the distiller
djmoffat@693 36 % Delete if you cannot get PS fonts working on your system.
djmoffat@693 37
djmoffat@693 38 % pdf-tex settings: detect automatically if run by latex or pdflatex
djmoffat@693 39 \newif\ifpdf
djmoffat@693 40 \ifx\pdfoutput\relax
djmoffat@693 41 \else
djmoffat@693 42 \ifcase\pdfoutput
djmoffat@693 43 \pdffalse
djmoffat@693 44 \else
djmoffat@693 45 \pdftrue
djmoffat@693 46 \fi
djmoffat@693 47
djmoffat@693 48 \ifpdf % compiling with pdflatex
djmoffat@693 49 \usepackage[pdftex,
djmoffat@693 50 pdftitle={\papertitle},
djmoffat@693 51 pdfauthor={\firstauthor, \secondauthor, \thirdauthor},
djmoffat@693 52 bookmarksnumbered, % use section numbers with bookmarks
djmoffat@693 53 pdfstartview=XYZ % start with zoom=100% instead of full screen;
djmoffat@693 54 % especially useful if working with a big screen :-)
djmoffat@693 55 ]{hyperref}
djmoffat@693 56 %\pdfcompresslevel=9
djmoffat@693 57
djmoffat@693 58 \usepackage[pdftex]{graphicx}
djmoffat@693 59 % declare the path(s) where your graphic files are and their extensions so
djmoffat@693 60 %you won't have to specify these with every instance of \includegraphics
djmoffat@693 61 \graphicspath{{./figures/}}
djmoffat@693 62 \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
djmoffat@693 63
djmoffat@693 64 \usepackage[figure,table]{hypcap}
djmoffat@693 65
djmoffat@693 66 \else % compiling with latex
djmoffat@693 67 \usepackage[dvips,
djmoffat@693 68 bookmarksnumbered, % use section numbers with bookmarks
djmoffat@693 69 pdfstartview=XYZ % start with zoom=100% instead of full screen
djmoffat@693 70 ]{hyperref} % hyperrefs are active in the pdf file after conversion
djmoffat@693 71
djmoffat@693 72 \usepackage[dvips]{epsfig,graphicx}
djmoffat@693 73 % declare the path(s) where your graphic files are and their extensions so
djmoffat@693 74 %you won't have to specify these with every instance of \includegraphics
djmoffat@693 75 \graphicspath{{./figures/}}
djmoffat@693 76 \DeclareGraphicsExtensions{.eps}
djmoffat@693 77
djmoffat@693 78 \usepackage[figure,table]{hypcap}
djmoffat@693 79 \fi
djmoffat@693 80
djmoffat@693 81 %setup the hyperref package - make the links black without a surrounding frame
djmoffat@693 82 \hypersetup{
djmoffat@693 83 colorlinks,%
djmoffat@693 84 citecolor=black,%
djmoffat@693 85 filecolor=black,%
djmoffat@693 86 linkcolor=black,%
djmoffat@693 87 urlcolor=black
djmoffat@693 88 }
djmoffat@693 89
djmoffat@693 90
djmoffat@693 91 % Title.
djmoffat@693 92 % ------
djmoffat@693 93 \title{\papertitle}
djmoffat@693 94
djmoffat@693 95 % Authors
djmoffat@693 96 % Please note that submissions are NOT anonymous, therefore
djmoffat@693 97 % authors' names have to be VISIBLE in your manuscript.
djmoffat@693 98 %
djmoffat@693 99 % Single address
djmoffat@693 100 % To use with only one author or several with the same address
djmoffat@693 101 % ---------------
djmoffat@693 102 %\oneauthor
djmoffat@693 103 % {\firstauthor} {Affiliation1 \\ %
djmoffat@693 104 % {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
djmoffat@693 105
djmoffat@693 106 %Two addresses
djmoffat@693 107 %--------------
djmoffat@693 108 % \twoauthors
djmoffat@693 109 % {\firstauthor} {Affiliation1 \\ %
djmoffat@693 110 % {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
djmoffat@693 111 % {\secondauthor} {Affiliation2 \\ %
djmoffat@693 112 % {\tt \href{mailto:author2@smcnetwork.org}{author2@smcnetwork.org}}}
djmoffat@693 113
djmoffat@693 114 % Three addresses
djmoffat@693 115 % --------------
djmoffat@693 116 \fourauthors
djmoffat@693 117 {\firstauthor} {%Affiliation1 \\
djmoffat@693 118 {\tt \href{mailto:b.deman@qmul.ac.uk}{\{b.deman@, }}}
djmoffat@693 119 {\secondauthor} {%Affiliation2\\ %
djmoffat@693 120 {\tt \href{mailto:n.g.r.jillings@se14.qmul.ac.uk}{n.g.r.jillings@se14. ,}}}
djmoffat@693 121 {\thirdauthor} {%Affiliation3\\ %
djmoffat@693 122 {\tt \href{mailto:d.j.moffat@qmul.ac.uk}{d.j.moffat@, }}}
djmoffat@693 123 {\fourthauthor} {%Affiliation4\\ %
djmoffat@693 124 {\tt \href{mailto:joshua.reiss@qmul.ac.uk}{joshua.reiss@\}qmul.ac.uk}}}
djmoffat@693 125
djmoffat@693 126 % ***************************************** the document starts here ***************
djmoffat@693 127 \begin{document}
djmoffat@693 128 %
djmoffat@693 129 \capstartfalse
djmoffat@693 130 \maketitle
djmoffat@693 131 \capstarttrue
djmoffat@693 132 %
djmoffat@693 133 \begin{abstract}
djmoffat@693 134 Place your abstract at the top left column on the first page.
djmoffat@693 135 Please write about 150-200 words that specifically highlight the purpose of your work,
djmoffat@693 136 its context, and provide a brief synopsis of your results.
djmoffat@693 137 Avoid equations in this part.
djmoffat@693 138 \end{abstract}
djmoffat@693 139 %
djmoffat@693 140
djmoffat@693 141 \section{Introduction}\label{sec:introduction}
djmoffat@693 142
djmoffat@693 143 background (types of research)\\
djmoffat@693 144 prior work: \cite{deman2014b} \\
djmoffat@693 145 goal, what are we trying to do? \\
djmoffat@693 146
djmoffat@693 147
djmoffat@693 148 Minimum 4 pages, 6 preferred, max. 8 (6 for demos/posters)
djmoffat@693 149
djmoffat@693 150
djmoffat@693 151
djmoffat@693 152
djmoffat@693 153 %\subsection{Equations}
djmoffat@693 154 %Equations of importance,
djmoffat@693 155 %or to which you refer later,
djmoffat@693 156 %should be placed on separated lines and numbered.
djmoffat@693 157 %The number should be on the right side, in parentheses.
djmoffat@693 158 %\begin{equation}
djmoffat@693 159 %E=mc^{2+\delta}.
djmoffat@693 160 %\label{eq:Emc2}
djmoffat@693 161 %\end{equation}
djmoffat@693 162 %Refer to equations like so:
djmoffat@693 163 %As (\ref{eq:Emc2}) shows,
djmoffat@693 164 %I do not completely trust Special Relativity.
djmoffat@693 165 %
djmoffat@693 166 %\subsection{Figures, Tables and Captions}
djmoffat@693 167 %\begin{table}[t]
djmoffat@693 168 % \begin{center}
djmoffat@693 169 % \begin{tabular}{|l|l|}
djmoffat@693 170 % \hline
djmoffat@693 171 % String value & Numeric value \\
djmoffat@693 172 % \hline
djmoffat@693 173 % Hej SMC & 2015 \\
djmoffat@693 174 % \hline
djmoffat@693 175 % \end{tabular}
djmoffat@693 176 %\end{center}
djmoffat@693 177 % \caption{Table captions should be placed below the table, exactly like this,
djmoffat@693 178 % but using words different from these.}
djmoffat@693 179 % \label{tab:example}
djmoffat@693 180 %\end{table}
djmoffat@693 181
djmoffat@693 182 %\begin{figure}[t]
djmoffat@693 183 %\figbox{
djmoffat@693 184 %\subfloat[][]{\includegraphics[width=60mm]{figure}\label{fig:subfigex_a}}\\
djmoffat@693 185 %\subfloat[][]{\includegraphics[width=80mm]{figure}\label{fig:subfigex_b}}
djmoffat@693 186 %}
djmoffat@693 187 %\caption{Here's an example using the subfig package.\label{fig:subfigex} }
djmoffat@693 188 %\end{figure}
djmoffat@693 189
djmoffat@693 190
djmoffat@693 191 \section{Conclusions}\label{sec:conclusions}
djmoffat@693 192
djmoffat@693 193
djmoffat@693 194 %\begin{acknowledgments}
djmoffat@693 195 %You may acknowledge people, projects,
djmoffat@693 196 %funding agencies, etc.
djmoffat@693 197 %which can be included after the second-level heading
djmoffat@693 198 %``Acknowledgments'' (with no numbering).
djmoffat@693 199 %\end{acknowledgments}
djmoffat@693 200
djmoffat@693 201 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
djmoffat@693 202 %bibliography here
djmoffat@693 203 %\bibliography{smc2015template}
djmoffat@693 204
djmoffat@693 205 \bibliography{../General}{}
djmoffat@693 206
djmoffat@693 207
djmoffat@693 208 \end{document}