christopher@31
|
1 % -----------------------------------------------
|
christopher@31
|
2 % Template for SMC 2012
|
christopher@31
|
3 % adapted from the template for SMC 2011, which was adapted from that of SMC 2010
|
christopher@31
|
4 % -----------------------------------------------
|
christopher@31
|
5
|
christopher@31
|
6 \documentclass{article}
|
christopher@31
|
7 \usepackage{smc2015}
|
christopher@31
|
8 \usepackage{times}
|
christopher@31
|
9 \usepackage{ifpdf}
|
christopher@31
|
10 \usepackage[english]{babel}
|
christopher@31
|
11 \usepackage{cite}
|
christopher@31
|
12 \usepackage{minted}
|
christopher@31
|
13
|
christopher@50
|
14 \newcommand{\code}[1]{{\small\texttt{#1}}}
|
christopher@50
|
15
|
christopher@54
|
16 \input{definitions}
|
christopher@54
|
17
|
christopher@31
|
18 %%%%%%%%%%%%%%%%%%%%%%%% Some useful packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
christopher@31
|
19 %%%%%%%%%%%%%%%%%%%%%%%% See related documentation %%%%%%%%%%%%%%%%%%%%%%%%%%
|
christopher@31
|
20 %\usepackage{amsmath} % popular packages from Am. Math. Soc. Please use the
|
christopher@31
|
21 %\usepackage{amssymb} % related math environments (split, subequation, cases,
|
christopher@31
|
22 %\usepackage{amsfonts}% multline, etc.)
|
christopher@31
|
23 %\usepackage{bm} % Bold Math package, defines the command \bf{}
|
christopher@31
|
24 %\usepackage{paralist}% extended list environments
|
christopher@31
|
25 %%subfig.sty is the modern replacement for subfigure.sty. However, subfig.sty
|
christopher@31
|
26 %%requires and automatically loads caption.sty which overrides class handling
|
christopher@31
|
27 %%of captions. To prevent this problem, preload caption.sty with caption=false
|
christopher@31
|
28 %\usepackage[caption=false]{caption}
|
christopher@31
|
29 %\usepackage[font=footnotesize]{subfig}
|
christopher@31
|
30
|
christopher@31
|
31
|
christopher@31
|
32 %user defined variables
|
christopher@31
|
33 \def\papertitle{SYNPY: A PYTHON TOOLKIT FOR SYNCOPATION MODELLING}
|
christopher@31
|
34 \def\firstauthor{Chunyang Song}
|
christopher@31
|
35 \def\secondauthor{Marcus Pearce}
|
christopher@31
|
36 \def\thirdauthor{Christopher Harte}
|
christopher@31
|
37
|
christopher@31
|
38 % adds the automatic
|
christopher@31
|
39 % Saves a lot of ouptut space in PDF... after conversion with the distiller
|
christopher@31
|
40 % Delete if you cannot get PS fonts working on your system.
|
christopher@31
|
41
|
christopher@31
|
42 % pdf-tex settings: detect automatically if run by latex or pdflatex
|
christopher@31
|
43 \newif\ifpdf
|
christopher@31
|
44 \ifx\pdfoutput\relax
|
christopher@31
|
45 \else
|
christopher@31
|
46 \ifcase\pdfoutput
|
christopher@31
|
47 \pdffalse
|
christopher@31
|
48 \else
|
christopher@31
|
49 \pdftrue
|
christopher@31
|
50 \fi
|
christopher@31
|
51
|
christopher@31
|
52 \ifpdf % compiling with pdflatex
|
christopher@31
|
53 \usepackage[pdftex,
|
christopher@31
|
54 pdftitle={\papertitle},
|
christopher@31
|
55 pdfauthor={\firstauthor, \secondauthor, \thirdauthor},
|
christopher@31
|
56 bookmarksnumbered, % use section numbers with bookmarks
|
christopher@31
|
57 pdfstartview=XYZ % start with zoom=100% instead of full screen;
|
christopher@31
|
58 % especially useful if working with a big screen :-)
|
christopher@31
|
59 ]{hyperref}
|
christopher@31
|
60 %\pdfcompresslevel=9
|
christopher@31
|
61
|
christopher@31
|
62 \usepackage[pdftex]{graphicx}
|
christopher@31
|
63 % declare the path(s) where your graphic files are and their extensions so
|
christopher@31
|
64 %you won't have to specify these with every instance of \includegraphics
|
christopher@54
|
65 %\graphicspath{{./figures/}}
|
christopher@31
|
66 \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
|
christopher@31
|
67
|
christopher@31
|
68 \usepackage[figure,table]{hypcap}
|
christopher@31
|
69
|
christopher@31
|
70 \else % compiling with latex
|
christopher@31
|
71 \usepackage[dvips,
|
christopher@31
|
72 bookmarksnumbered, % use section numbers with bookmarks
|
christopher@31
|
73 pdfstartview=XYZ % start with zoom=100% instead of full screen
|
christopher@31
|
74 ]{hyperref} % hyperrefs are active in the pdf file after conversion
|
christopher@31
|
75
|
christopher@31
|
76 \usepackage[dvips]{epsfig,graphicx}
|
christopher@31
|
77 % declare the path(s) where your graphic files are and their extensions so
|
christopher@31
|
78 %you won't have to specify these with every instance of \includegraphics
|
christopher@31
|
79 \graphicspath{{./figures/}}
|
christopher@31
|
80 \DeclareGraphicsExtensions{.eps}
|
christopher@31
|
81
|
christopher@31
|
82 \usepackage[figure,table]{hypcap}
|
christopher@31
|
83 \fi
|
christopher@31
|
84
|
christopher@31
|
85 %setup the hyperref package - make the links black without a surrounding frame
|
christopher@31
|
86 \hypersetup{
|
christopher@31
|
87 colorlinks,%
|
christopher@31
|
88 citecolor=black,%
|
christopher@31
|
89 filecolor=black,%
|
christopher@31
|
90 linkcolor=black,%
|
christopher@31
|
91 urlcolor=black
|
christopher@31
|
92 }
|
christopher@31
|
93
|
christopher@31
|
94
|
christopher@31
|
95 % Title.
|
christopher@31
|
96 % ------
|
christopher@31
|
97 \title{\papertitle}
|
christopher@31
|
98
|
christopher@31
|
99 % Authors
|
christopher@31
|
100 % Please note that submissions are NOT anonymous, therefore
|
christopher@31
|
101 % authors' names have to be VISIBLE in your manuscript.
|
christopher@31
|
102 %
|
christopher@31
|
103 % Single address
|
christopher@31
|
104 % To use with only one author or several with the same address
|
christopher@31
|
105 % ---------------
|
christopher@31
|
106 %\oneauthor
|
christopher@31
|
107 % {\firstauthor} {Affiliation1 \\ %
|
christopher@31
|
108 % {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
|
christopher@31
|
109
|
christopher@31
|
110 % Two addresses
|
christopher@31
|
111 % --------------
|
christopher@31
|
112 \threeauthors
|
christopher@31
|
113 {\firstauthor} {Queen Mary, University of London \\ %
|
christopher@31
|
114 {\tt \href{mailto:dr.chunyang.song@gmail.com}{dr.chunyang.song@gmail.com}}}
|
christopher@31
|
115 {\secondauthor} {Queen Mary, University of London \\ %
|
christopher@31
|
116 {\tt \href{mailto:marcus.pearce@qmul.ac.uk}{marcus.pearce@qmul.ac.uk}}}
|
christopher@31
|
117 {\thirdauthor} {University of York \\ %
|
christopher@31
|
118 {\tt \href{mailto:christopher.harte@york.ac.uk}{christopher.harte@york.ac.uk}}}
|
christopher@31
|
119
|
christopher@31
|
120 % Three addresses
|
christopher@31
|
121 % --------------
|
christopher@31
|
122 % \threeauthors
|
christopher@31
|
123 % {\firstauthor} {Affiliation1 \\ %
|
christopher@31
|
124 % {\tt \href{mailto:author1@smcnetwork.org}{author1@smcnetwork.org}}}
|
christopher@31
|
125 % {\secondauthor} {Affiliation2 \\ %
|
christopher@31
|
126 % {\tt \href{mailto:author2@smcnetwork.org}{author2@smcnetwork.org}}}
|
christopher@31
|
127 % {\thirdauthor} { Affiliation3 \\ %
|
christopher@31
|
128 % {\tt \href{mailto:author3@smcnetwork.org}{author3@smcnetwork.org}}}
|
christopher@31
|
129
|
christopher@31
|
130
|
christopher@31
|
131 % ***************************************** the document starts here ***************
|
christopher@31
|
132 \begin{document}
|
christopher@31
|
133 %
|
christopher@31
|
134 \capstartfalse
|
christopher@31
|
135 \maketitle
|
christopher@31
|
136 \capstarttrue
|
christopher@31
|
137 %
|
christopher@31
|
138 \begin{abstract}
|
christopher@31
|
139
|
christopher@54
|
140 SynPy is an open-source software toolkit for quantifying syncopation. It provides reference implementations for seven widely known syncopation models; and to achieve an easy and fast platform to measure syncopation for a piece of monophonic music.
|
christopher@54
|
141
|
christopher@31
|
142
|
christopher@31
|
143 \end{abstract}
|
christopher@31
|
144 %
|
christopher@31
|
145
|
christopher@59
|
146 \input{section/introduction}
|
christopher@50
|
147
|
christopher@54
|
148 %\input{section/background}
|
christopher@50
|
149
|
christopher@51
|
150 \input{section/framework}
|
christopher@50
|
151
|
christopher@51
|
152 \input{section/dataset}
|
christopher@50
|
153
|
christopher@51
|
154 \input{section/conclusion}
|
christopher@50
|
155
|
christopher@50
|
156
|
christopher@31
|
157
|
christopher@31
|
158 % \url{http://www.maynoothuniversity.ie/smc15}.
|
christopher@31
|
159
|
christopher@31
|
160
|
christopher@31
|
161
|
christopher@31
|
162
|
christopher@31
|
163
|
christopher@40
|
164
|
christopher@40
|
165
|
christopher@40
|
166
|
christopher@40
|
167
|
christopher@40
|
168
|
christopher@31
|
169 % \section{Page size and format}\label{sec:page_size}
|
christopher@31
|
170
|
christopher@31
|
171 % \begin{equation}
|
christopher@31
|
172 % E=mc^{2+\delta}.
|
christopher@31
|
173 % \label{eq:Emc2}
|
christopher@31
|
174 % \end{equation}
|
christopher@31
|
175 % Refer to equations like so:
|
christopher@31
|
176 % As (\ref{eq:Emc2}) shows,
|
christopher@31
|
177 % I do not completely trust Special Relativity.
|
christopher@31
|
178
|
christopher@31
|
179 % \subsection{Figures, Tables and Captions}
|
christopher@31
|
180 % \begin{table}[t]
|
christopher@31
|
181 % \begin{center}
|
christopher@31
|
182 % \begin{tabular}{|l|l|}
|
christopher@31
|
183 % \hline
|
christopher@31
|
184 % String value & Numeric value \\
|
christopher@31
|
185 % \hline
|
christopher@31
|
186 % Hej SMC & 2015 \\
|
christopher@31
|
187 % \hline
|
christopher@31
|
188 % \end{tabular}
|
christopher@31
|
189 % \end{center}
|
christopher@31
|
190 % \caption{Table captions should be placed below the table, exactly like this,
|
christopher@31
|
191 % but using words different from these.}
|
christopher@31
|
192 % \label{tab:example}
|
christopher@31
|
193 % \end{table}
|
christopher@31
|
194
|
christopher@31
|
195
|
christopher@31
|
196
|
christopher@31
|
197 % Always refer to tables and figures in the main text, for example:
|
christopher@31
|
198 % see Fig. \ref{fig:example} and \tabref{tab:example}.
|
christopher@31
|
199 % Figures and tables may extend across both columns to a maximum width of 17.2cm.
|
christopher@31
|
200
|
christopher@31
|
201
|
christopher@31
|
202
|
christopher@31
|
203 % \begin{figure}[t]
|
christopher@31
|
204 % \centering
|
christopher@31
|
205 % \includegraphics[width=0.6\columnwidth]{figure}
|
christopher@31
|
206 % \caption{Figure captions should be placed below the figure,
|
christopher@31
|
207 % exactly like this.
|
christopher@31
|
208 % When you come to SMC2015, you will
|
christopher@31
|
209 % understand why there is a large hand
|
christopher@31
|
210 % planted atop Copenhagen.\label{fig:example}}
|
christopher@31
|
211 % \end{figure}
|
christopher@31
|
212
|
christopher@31
|
213
|
christopher@31
|
214
|
christopher@31
|
215 %
|
christopher@31
|
216 \begin{acknowledgments}
|
christopher@31
|
217 You may acknowledge people, projects,
|
christopher@31
|
218 funding agencies, etc.
|
christopher@31
|
219 which can be included after the second-level heading
|
christopher@31
|
220 ``Acknowledgments'' (with no numbering).
|
christopher@31
|
221 \end{acknowledgments}
|
christopher@31
|
222
|
christopher@31
|
223 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
christopher@31
|
224 %bibliography here
|
christopher@31
|
225 \bibliography{csong.bib}
|
christopher@31
|
226
|
christopher@31
|
227 \end{document}
|