Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/authoring/markdown-basics.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,13 @@ Use `$` delimiters for inline math and `$$` delimiters for display math. For exa
| ``` | |
+---------------------------+-------------------------+

::: {.callout-note}
## No blank lines in display math

In display math (`$$`), the delimiters may be separated from the formula by whitespace (`$$ E = mc^{2} $$`).
However, there can be no blank lines between the opening and closing $$ delimiters.
:::

If you want to define custom TeX macros, include them within `$$` delimiters enclosed in a `.hidden` block. For example:

``` tex
Expand Down
Loading