Markdown for Academic Writing and Research Notes
Markdown has become a serious tool for academic writers — used for notes, literature reviews, and writing papers compiled to PDF via Pandoc.
Why Academics Use Markdown
- Focus on writing — no fighting with Word's auto-format
- Plain text is future-proof — open in any editor in any decade
- Version control — git history for your writing
- Citations — integrate with Zotero, Mendeley, or BibTeX
- Output flexibility — one source → PDF, HTML, DOCX via Pandoc
Lecture Notes Template
markdown# Lecture: [Course] — [Topic]
**Date:** 2026-01-15 | **Instructor:** Prof. Smith | **Week:** 3
## Key Concepts
### [Concept 1]
Definition and explanation.
**Why it matters:**
## Questions to Follow Up
- [ ] What is the relationship between X and Y?
- [ ] How does this reconcile with last week's reading?
## Summary
2-3 sentence summary of the lecture's main argument.
## Related Readings
- Author (Year). *Title*. Publisher. (pp. 45–67)
Literature Review Notes
markdown# Paper Notes: Smith et al. (2023)
**Citation:** Smith, J. (2023). *Title*. *Journal*, 45(2), 123–145.
**Relevance:** High | **Status:** Read ✅
## Thesis
One sentence: What does this paper argue?
## Key Findings
- Finding 1
- Finding 2
## Quotes Worth Keeping
> "Direct quote here." (p. 127)
## How This Relates to My Research
## Questions This Raises
Citations in Markdown
Pandoc-Citeproc Format
markdownThe effect has been replicated multiple times [@smith2023; @jones2022]. As Smith et al. [-@smith2023] argue, "the correlation is causal" (p. 45).
Compile with:
bashpandoc paper.md --citeproc --bibliography refs.bib -o paper.pdf
Manual APA
markdownThe study found no significant effect (Smith & Jones, 2023, p. 134).
## References
Smith, J., & Jones, J. (2023). Study title. *Journal*, *45*(2), 123–145.
Writing Papers in Markdown
markdown---
title: "Your Paper Title"
author: "Your Name"
abstract: |
This paper examines...
bibliography: references.bib
csl: apa.csl
---
# Introduction
# Literature Review
# Methodology
# Results
# Discussion
# Conclusion
# References
Compile to PDF:
bashpandoc paper.md -o paper.pdf --pdf-engine=xelatex
Compile to DOCX (for submission):
bashpandoc paper.md -o paper.docx --reference-doc=template.docx
Math Notation
markdownInline: $E = mc^2$
Block:
$$
\frac{d}{dx}\left(\int_{a}^{x} f(u)\,du\right)=f(x)
$$
A Research Workflow
Read paper
↓ Write literature notes
Extract key concepts and quotes
↓ Link to your research question
Draft from notes → don't write from scratch
↓
Compile with Pandoc → submission-ready PDF
Tools
- Zotero + Better BibTeX — cite keys and .bib export
- Obsidian — linked notes for literature review
- Pandoc — universal academic document converter
- MarkGenie — fast editor for writing and previewing
Start with your next lecture: open MarkGenie, paste in the template, and fill it in.