Modern Plain Text Computing
Week 01
August 2025
We want to do our work reproducibly
RStudio at startup
RStudio schematic overview
RStudio schematic overview
RStudio at startup
RStudio at startup
RStudio at startup
RStudio at startup
RStudio at startup
Use Quarto to produce and reproduce your work
PDF out
HTML out
Word out
This way of doing things is called a Literate Programming or Notebook approach.
Quarto document
Quarto document annotated
Notebook-style documents like Quarto files are great as part of larger projects. The more complex your project, the less likely it will straightforwardly fit into a single notebook. More likely you will find yourself, first, splitting parts of a complex project up into different notebooks; and then, second, writing R scripts that programatically clean and pre-process data, run analyses, and produce some outputs—such as key tables and figures—that you then incorporate into a Quarto document indirectly. Not by copying and pasting, but by pointing to those outputs.
Desired style | Use the following Markdown annotation |
---|---|
Heading 1 | # Heading 1 |
Heading 2 | ## Heading 2 |
Heading 3 | ### Heading 3 (Actual heading styles will vary.) |
Paragraph | Just start typing |
Bold | **Bold** |
Italic | *Italic* |
Images | [Alternate text for image](path/image.jpg) |
Hyperlinks | [Link text](https://www.visualizingsociety.com/) |
Unordered Lists | |
- First | - First |
- Second. | - Second |
- Third | - Third |
Ordered Lists | |
1. First | 1. First |
2. Second. | 2. Second |
3. Third | 3. Third |
Footnote.¹ | Footnote[^notelabel] |
¹The note’s content. | [^notelabel] The note's content. |
mptc
scratch.qmd
in the mptc
folder