Markdown Guide¶
Opus uses Markdown for document formatting. This guide covers everything you need to know.
What is Markdown?¶
Markdown is a lightweight markup language that uses plain text formatting. It's designed to be readable as-is while also converting to formatted output (HTML, PDF, Word, etc.).
Basic Syntax¶
Headings¶
Use # symbols for headings. More # means smaller headings:
Paragraphs¶
Just write text. Separate paragraphs with a blank line:
Emphasis¶
*Italic text* or _italic text_
**Bold text** or __bold text__
***Bold and italic***
~~Strikethrough~~
Lists¶
Unordered lists:
Ordered lists:
Links¶
Images¶
Block Quotes¶
Code¶
Inline code:
Code blocks:
Horizontal Rules¶
Extended Syntax¶
Opus supports additional Markdown features beyond the basics.
Tables¶
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Align columns with colons:
Footnotes¶
Task Lists¶
Definition Lists¶
Abbreviations¶
The HTML specification is maintained by the W3C.
*[HTML]: Hyper Text Markup Language
*[W3C]: World Wide Web Consortium
Academic Extensions¶
Opus adds features specifically for academic writing:
Citations¶
According to recent research [@smith2024], the effect is significant.
Multiple citations [@smith2024; @jones2023] support this.
See Citations for full details.
Equations¶
See Equations for full details.
Figure References¶
As shown in @fig:results, the data supports our hypothesis.
{#fig:results}
Cross-References¶
Tips for Academic Writing¶
- Use headings consistently - Follow your discipline's conventions
- Keep paragraphs focused - One idea per paragraph
- Use lists for clarity - Break down complex points
- Cite as you write - Don't leave citations for later
- Preview regularly - Check your formatting looks correct
Next Steps¶
- Equations - Mathematical notation
- Citations - Reference management
- Track Changes - Revision tracking