An online HTLM version of the thesis is available at https://www.barelysignificant.com/phd_thesis/ and a PDF version at https://thesiscommons.org/p6dct/.
Rumination is known to be a predominantly verbal process and has been proposed to be considered as such as a dysfunctional form of inner speech (i.e., the silent production of words in one's mind). On the other hand, research on the psychophysiology of inner speech revealed that the neural processes involved in overt and covert speech tend to be very similar. This is coherent with the idea that some forms of inner speech could be considered as a kind of simulation of overt speech, in the same way as imagined actions can be considered as the result of a simulation of the corresponding overt action (e.g., walking and imagined walking). In other words, the motor simulation hypothesis suggests that the speech motor system should be involved as well during inner speech production. The corollary hypothesis might be drawn, according to which the production of inner speech (and rumination) should be disrupted by a disruption of the speech motor system. We conducted a series of five studies aiming to probe the role of the speech motor system in rumination. Overall, our results highlight that although verbal rumination may be considered as a form of inner speech, it might not specifically involve the speech motor system. More precisely, we argue that rumination might be considered as a particularly strongly condensed form of inner speech that does not systematically involve fully specified articulatory features. We discuss these findings in relation to the habit-goal framework of depressive rumination and we discuss the implications of these findings for theories of inner speech production.
My dissertation is a book based on RMarkdown
and the bookdown
package
(https://github.com/rstudio/bookdown, https://bookdown.org/). This bookdown project was originally a fork of the demo book
(https://github.com/rstudio/bookdown-demo) and is largely inspired by Tristan Mahr's own dissertation: https://github.com/tjmahr/dissertation/blob/master/README.md. Importantly, I have used the memoir
LaTeX class (https://ctan.org/pkg/memoir?lang=en) in combination with the bookdown
package.
The most important elements of the template are listed and discussed below:
-
The
index.Rmd
file is the central file of the thesis. It contains basic metadata such as the author name, the title of the thesis, and so on (in the YAML header). Importantly, it also defines thedocumenclass
(in my case, it uses thememoir
package) and the class options. In the YAML header of this file, I also specify the bibliography files (in a better BibTeX format, issued from Zotero). The index file also contains the (English) abstract of the thesis, displayed on the welcome page of the online html version of the thesis. -
The
preamble.tex
(in the ./latex folder) file is like a usual preamble .tex file. It loads the relevant LaTeX packages, defines some commands to be used later in the thesis (such as\initial
) and defines some formatting elements. I have tried to comment the code as much as possible but nobody's perfect. -
The
before_body.tex
(in the ./latex folder) defines elements for the cover page (specific to Univ. Grenoble Alpes). The last lines of this file may be more generally useful as they define some formatting elements for the rest of the thesis (e.g., I define the main font and set the line stretch to\OnehalfSpacing
). -
The UGA cover page template is managed by the
cover_page.sty
style file (in the ./cover folder). -
The
_bookdown.yml
files defines the name of the outputted document (here "thesis"), the label for the chapters, the outputting directory (i.e., where outputted documents are stored) and the .Rmd files that should be included for each output format. -
Another crucial element, the
_output.yml
file defines the argument to be passed to the function creating each output. For each output format (here, gitbook, pdf, and word), it defines format-specific arguments. Importantly, for the PDF output, to be able to define a citation style (using a .csl), thecitation_package
argument should be set tonone
so thatpandoc-citeproc
is used (instead ofnatbib
orbiblatex
, for instance). -
A citation style can then be applied by using the
pandoc_args
argument of thebookdown::pdf_book
function.
Some things I have changed from previous versions of the template:
-
I deactivated the default TOC from
bookdown
and defined a custom one in00-toc.Rmd
to be able to define the order of the00-*.Rmd
files (e.g., abstract, preface, etc). -
I deactivated the default references manager (i.e.,
natbib
orbiblatex
) to be able to provide a .csl file for the references (citation_package
in_output.yml
needs to benone
). See thepandoc_args
in the_output.yml
file. -
I have manually created a list of abbreviations in the
00-toc.Rmd
file and defined a LaTeX command to fill-in this glossary at the bottom ofpreamble.tex
. I have tried to use automatic list of abbreviations such as the one in theglossaries
package (https://www.ctan.org/pkg/glossaries) but I did not manage to make it work withbookdown
...