-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
201 lines (133 loc) · 4.54 KB
/
main.tex
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
\documentclass[bfivepaper,twosided,justified,nobib]{style/tufte-book}
\hypersetup{colorlinks}% uncomment this line if you prefer colored hyperlinks (e.g., for onscreen viewing)
%%
% Book metadata
\title{Questioning Artificial Intelligence}
\author{Jordan Boyd-Graber}
\publisher{University of Maryland}
\newif\ifcomment\commentfalse
\newif\ifproposal\proposaltrue
\input{style/preamble}
\usepackage{libertine}
%%
% If they're installed, use Bergamo and Chantilly from www.fontsite.com.
% They're clones of Bembo and Gill Sans, respectively.
%\IfFileExists{bergamo.sty}{\usepackage[osf]{bergamo}}{}% Bembo
%\IfFileExists{chantill.sty}{\usepackage{chantill}}{}% Gill Sans
%\usepackage{microtype}
\usepackage{booktabs}
\usepackage{graphicx}
\setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio}
\graphicspath{{figures/}}
% The fancyvrb package lets us customize the formatting of verbatim
% environments. We use a slightly smaller font.
\usepackage{fancyvrb}
\fvset{fontsize=\normalsize}
%%
% Prints a trailing space in a smart way.
\usepackage{xspace}
\newif\ifcomment\commenttrue
%\input{style/preamble}
% Generates the index
\usepackage{makeidx}
\usepackage{tikz}
\usepackage{natbib}
\usepackage{subfig}
\setcitestyle{authoryear}
\newcommand{\proposalpart}[2]{
\ifproposal
% \textbf{Part #2: #1}
\else
\part{#1}
\fi
}
% Number Label Title
\newcommand{\chapterfile}[3]{
\ifproposal
\begingroup
\renewcommand{\cleardoublepage}{}
\renewcommand{\clearpage}{}
\chapter{#3}\label{ch:#2}
\endgroup
\vspace{-0.5cm}
\input{chapters/blurbs/#2}
\vspace{-2.5cm}
\else
\chapter{#3}
\label{ch:#2}
\begin{quote}
\input{chapters/blurbs/#2}
\end{quote}
\input{chapters/#1-#2}
\fi}
\makeindex
\newcommand{\blankpage}{\newpage\hbox{}\thispagestyle{empty}\newpage}
\graphicspath{{figures/datsets}{figures/leaderboard}}
\begin{document}
\setcounter{secnumdepth}{1}
% Front matter
\clearpage
\ifproposal
\input{chapters/005-proposal}
% \tableofcontents
\chapter{Chapter Synopses}
\setcounter{chapter}{0}
\titleformat{\chapter}[display]
{\normalfont%
\normalsize % %change this size to your needs for the first line
\bfseries}{}{20pt}{%
\normalsize \thechapter: %change this size to your needs for the second line
}
A brief description of each of the proposed chapters.
\else
\input{chapters/000-frontmatter}
\fi
\chapterfile{010}{introduction}{Introduction: The Unanswered Questions}
\proposalpart{Question Answering Before Computers}{1}
\chapterfile{110}{history}{Question Answering: The Foundation and Savior of Civilization}
\chapterfile{120}{turing}{The Turing Test: A Game Show Pitch that
Defined Artificial Intelligence}
\chapterfile{130}{ir}{The Cranfield Paradigm: How a University with an Airstrip made Google Possible}
% Introduce tf-idf, nearest neighbor search
\chapterfile{140}{manchester}{The Manchester Paradigm: The Art of Asking the Perfect Question}
\proposalpart{Question Answering Present}{2}
\chapterfile{200}{watson}{Watson on Jeopardy!: \\ Unquestioned Answers from \abr{ibm}'s tour de force}
\chapterfile{210}{formats}{Formats Beyond Stand-Alone QA}
\chapterfile{220}{datasets}{Datasets: Build or Adopt?}
\chapterfile{230}{methods}{The Tools to Answer Questions}
\chapterfile{240}{leaderboards}{Siri takes the SAT}
% How computers answer questions [NLP]
% \chapterfile{leaderboard}{What Leaderboards have Done to \abr{ai} Research}
% What Leaderboards have Done to Research [NLP]
% Cranfield vs. Manchester
% Learning from Trivia Nerds
% How to Write a Good Question
\proposalpart{Question Answering Future}{3}
\chapterfile{300}{gameshow}{Fulfiling Turing's Gameshow}
\chapterfile{310}{scifi}{What AI Dystopias You Should be Afraid of?}
% Science Fiction QA
% - Voigt-Kampff
% - Kirk outsmarting computers
% AI is not what you should be afraid of
%Computer Game Shows of the Future
% \proposalpart{Question Answering Future}
\ifproposal
\titleformat{\chapter}[display]
{\normalfont%
\huge% %change this size to your needs for the first line
\bfseries}{\chaptertitlename\ \thechapter}{20pt}{%
\Huge %change this size to your needs for the second line
}
\setcounter{chapter}{5}
\chapter{Watson on Jeopardy!: \\ Unquestioned Answers from \abr{ibm}'s tour
de force \\ (Sample Chapter)}
\begin{quote}
\input{chapters/blurbs/watson}
\end{quote}
\input{chapters/200-watson}
\fi
\backmatter
\bibliography{bib/jbg}
\bibliographystyle{plainnat}
\printindex
\end{document}