blob: f39e7bbd8cd8aa4e8ea3e83a13d898e2d07abbc6 (
plain)
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
|
% Most packages need to be loaded before hyperref
% so put them in the definition of \jmlrprehyperref
\def\jmlrprehyperref{%
% Packages used by imported articles:
\usepackage{lipsum}
}
\documentclass[wcp]{jmlrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
% Title is added to the PDF properties. Optional argument
% is used instead, if present.
%\title[Short Title]{Big Long Title}
\title{Sample Proceedings}
\author[Anne Editor et al.]{Anne Editor, Anne Other Editor and Nicola Talbot}
\subtitle{\thejmlrworkshop}
\jmlrvolume{42}
\jmlryear{2010}
\jmlrworkshop{Workshop on Causality}
\jmlrlocation{Somewhere}
\logo[http://www.sampleurl.com/]{\includegraphics{bookLogo}}
\begin{document}
\maketitle
\frontmatter
\chapter{Foreword}
This is the foreword.
\begin{authorsignoff}
\Author{Nicola Talbot\\
University of East Anglia}
\end{authorsignoff}
\begin{preface}
This is the preface.
\begin{signoff}{March 2010}
% First editor:
\Editor{Nicola Talbot\\
University of East Anglia\\
\mailto{N.Talbot@uea.ac.uk}}
% Second editor:
\Editor{Anne Editor\\
University of Nowhere\\
\mailto{ae@sample.com}}
\end{signoff}
\end{preface}
\tableofcontents
\mainmatter
\begin{jmlrpapers}
\addtocpart{Introduction}
% syntax: \importpaper[label]{directory}{filename}
\importpaper{paper1}{paper1}
\addtocpart{First Topic}
\importpaper{paper2}{paper2}
\importpaper{paper3}{paper3}
\addtocpart{Second Topic}
\importpaper{paper4}{paper4}
\end{jmlrpapers}
\end{document}
|