-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
126 lines (113 loc) · 3.95 KB
/
index.Rmd
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
---
### Title page
title: "Towards prediction"
subtitle: Studying the mind and brain in the age of machine learning
author: "Lukas Snoek"
date: "woensdag 9 februari 2022"
aula: false
time: "13.00"
birthplace: "Hoevelaken"
### Colophon
# This paragraph begins with "This thesis was typeset using (R) Markdown, \LaTeX\ and the \verb+bookdown+ R-package"
# and is optionally followed by:
ISBN: "978-94-6458-013-6"
printing: "Ridderprint | www.ridderprint.nl"
cover: "Designed by author using a *neural style transfer* implementation by Reiichiro Nakano."
thesis_url: "https://lukas-snoek.com/thesis"
license: "CC BY" # optional, otherwise this bit is omitted
### Committee
promotores:
- title: dr.
initials: H.S.
surname: Scholte
affiliation: Universiteit van Amsterdam
one_promotor: true
copromotores:
- title: dr.
initials: S.
surname: Oosterwijk
affiliation: Universiteit van Amsterdam
one_copromotor: true
members:
- title: prof. dr.
initials: B.U.
surname: Forstmann
affiliation: Universiteit van Amsterdam
- title: prof. dr.
initials: A.H.
surname: Fischer
affiliation: Universiteit van Amsterdam
- title: prof. dr.
initials: C.
surname: Keysers
affiliation: Universiteit van Amsterdam
- title: prof. dr.
initials: P.G.
surname: Schyns
affiliation: University of Glasgow
- title: prof. dr.
initials: R.W.
surname: Goebel
affiliation: Maastricht University
- title: prof. dr.
initials: D.
surname: Borsboom
affiliation: Universiteit van Amsterdam
faculty: Faculteit der Maatschappij- en Gedragswetenschappen
### Book settings
documentclass: memoir
book_size: false # "true" if you want to render a pdf for printing as a book; "false" if you want to print loose pages
# if book_size is set to false, forces A4 paper size, and the "oneside" classoption
# if book_size is set to true, forces standard "thesis B5 size" (170mm wide by 240mm high), and the "twoside" classoption
# geometry: "left=2.5cm, right=2.5cm, top=2.5cm, bottom=2.5cm" # use this if you want to change the margins
# 2.5cm equal margins are often recommended by printers (so when book_size: true)
fontsize: 12pt # 12pt is recommened when book_size is false; 10 or 11pt is recommended when book_size is true
lang: en-US # default language for the thesis. Change to en-GB or en-US if you want a specific flavor of English (or to nl for Dutch)
site: bookdown::bookdown_site # to get a "Build" button in RStudio to render the book
output:
# HTML
bookdown::gitbook:
css: css/style.css
pandoc_args: [ "--csl", "bib/apa.csl" ]
sharing:
facebook: no
github: yes
twitter: yes
all: ['facebook', 'twitter', 'linkedin']
config:
toolbar:
download: 'thesis.pdf'
toc:
#this text will print on top ("before") or at the bottom ("after") of the table of contents
before: |
<li><a href="./">PhD thesis of Lukas Snoek</a></li>
after: |
<li><a href="https://github.com/rstudio/bookdown" target="blank">Published with bookdown</a></li>
# PDF through Latex
bookdown::pdf_book:
template: template.tex
keep_tex: yes
pandoc_args: [ "--csl", "bib/apa.csl" ]
latex_engine: xelatex # for the fontspec package
#citation_package: biblatex
includes:
in_header: tex/preamble.tex
indent: true # indent new paragraphs, instead of leaving whitespace
links-as-notes: true # in the pdf, print hyperlink URLS as footnotes (as they can't be clicked on)
bibliography:
- bib/introduction_discussion.bib
- bib/misc.bib
- bib/shared-states.bib
- bib/confounds-decoding.bib
- bib/aomic.bib
- bib/morbid-curiosity.bib
- bib/hypothesis-kernel-analysis.bib
- bib/static-vs-dynamic.bib
citation_package: none
biblio-style: "apa"
colorlinks: true
#citecolor: gray
link-citations: true # make clickable hyperlinks from in-text citations to bibliography at the end
---
```{r, include = FALSE, child = if (knitr::is_html_output()) '_00-preface.Rmd'}
```