
PhD Tools and software
I responded to a Twitter conversation about software used to write a thesis:
Markdown, Pandoc to pdf with Mendeley. I edit in VSCode, and config manage using GitHub. If anyone at @MorayHouse wants a demo/tutorial, let me know.
— Nick Hood (@cullaloe) February 17, 2022
@Christina_Mik asked for a demo, which I am happy to do in person but haven’t the time to make a video of. What I have done instead is to adapt notes from the online thesis to describe the workflow and tools I am using.
Platform
I try as much as possible to eliminate duplication of both effort and data and have learned that text-based files free me from the tyranny of proprietary idiosyncracies. All of what follows can be achieved on pretty much any modern computing platform: Windows, Linux, whatever. The main platform I use is a MacBook Air running macOS Big Sur 11.
Workflow
I have three kinds of document to produce. The first kind are short, maybe only one to a few pages, or a presentation file, usually in the form of a printable pdf. Next, are the public articles such as the one you are reading. Finally, there are extended works which should be kept private but sharable until they are ready, like a thesis.
For all three kinds of document, I use plain text files which are readable across many platforms, and which are easily backed up and managed. I absolutely do not care about formatting whilst I am writing, it is just a distraction: I can get a machine to make it pretty when I am ready to publish or share. Here is a graphic of my writing workflow:
Notice that the net output is in two files: the markdown text file, and the bibtex file containing all of the sources I have cited.
Citation and referencing
Mendeley is a reference manager suite that includes a desktop application to access and manage your own library of references, and generates bibtex files which can be used by text processors. Note that the desktop application is not being supported now: there is a newer and much less useful Mendeley Reference Manager. Many users have been lobbying Elsevier, who own Mendeley, to reinstate the Mendeley Desktop app or add its functionality to the new Reference Manager.
The most useful feature of Mendeley Desktop, apart from importing and managing my reference library, is the automatic creation and update of a .bib
file of the entire library, or optionally, separate bib files for each folder. The bib file is used by \(\LaTeX\) and pandoc when generating your document output, to insert correctly formatted citations and your bibliography.
Document production
All of my documents are written in some form of Markdown.
For writing casual or stand-alone documents (reports, presentations, articles), I may use the Macdown open source Markdown editor for macOS, but more often there are several documents “on the go” at once within the same folder, when I find the Visual Studio Code IDE 1 easiest to use for editing. It can be used to edit csv 2 files with Janis DD’s Edit CSV plugin.
Here’s a visual of how the three types of document are produced from the markdown source file and the bibtex file:
Stand-alone documents
pandoc is used to generate stand-alone documents from markdown source with pandoc-citeproc taking care of linking to bibliographies. Diagrams in these documents (like the graphics in this post) are produced using the mermaid filter for pandoc.
Documents written in markdown often include a short YAML header containing information about it and instructions for pandoc, etc. Here is an example markdown document, with a YAML header:
---
title: My amazing document
author: Nick Hood
bibliography: /path/to/your/library.bib
date: \today
---
# My heading
Here is some text which is very interesting. Here is some text which is very interesting. Here is some text which is very interesting. Here is some text which is very interesting. Here is some text which is very interesting.
## A subheading
Here is some text which is very interesting but more detailed. Here is some text which is very interesting but more detailed. Here is some text which is very interesting but more detailed. Here is some text which is very interesting but more detailed. Here is some text which is very interesting but more detailed.
## A paragraph with a reference in it
Here is some text which is my interpretation of what someone else wrote about [@OxfordEnglishDictionary].
# References
To make a pdf of this document using pandoc, we type this in a terminal window:
$ pandoc -s filename.md -o filename.pdf --citeproc
It produces this file.
Extended documents, not public (e.g. Thesis)
R and the RStudio IDE are used for larger documents and data processing (R Core Team, 2021), mostly within RStudio
. My (non-public) thesis website is made using the Bookdown R package (Xie, 2016; Xie, 2020), which itself uses pandoc to generate HTML, Word and pdf documents. Read more about how I do this in this post.
Public web articles (like the one you’re reading)
This site is hosted on GitHub Pages which renders files uploaded and hosted there. It is possible to have GitHub use Jekyll but I prefer to build the pages on my local machine and have GitHub render static HTML. I have found this to be more stable and less prone to attack. Read more about that here and here.
Broadcast acquisition
Not related to general projects but certainly useful in mine is the ability to capture for my own use, BBC radio programmes. get_iPlayer is a command-line programme written in Perl which downloads TV and radio programmes from BBC iPlayer/BBC Sounds (“Get-Iplayer/get_iplayer,” 2021).
Configuration management/backup
Source documents and data files, all in text format, are retained in a GitHub private repository. Not only does that mean that everything is backed up against loss or damage to a computer, it is also protected against me: I can roll back changes if I need to, or launch my computer off a cliff without losing my work. Not likely, but you wear a seat belt, don’t you?
Notes and references
This post originally appeared as PhD Workflow in July 2019 and has been updated with links and references to describe my current model. I hope it’s useful.
- R Core Team. 2021. “R: A Language and Environment for Statistical Computing.” Vienna, Austria: R Foundation for Statistical Computing. https://www.r-project.org/.
- Xie, Yihui. 2016. Bookdown: Authoring Books and Technical Documents with R Markdown. Boca Raton, Florida: Chapman and Hall/CRC. https://github.com/rstudio/bookdown.
- ———. 2020. “Bookdown: Authoring Books and Technical Documents with R Markdown.” https://github.com/rstudio/bookdown.
- “Get-Iplayer/get_iplayer.” 2021. Github. https://github.com/get-iplayer/get_iplayer.