File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.2.6 - 2025-06-08
4+ - Lowers MIME priority for LaTeX rendering.
5+
36## v0.2.5 - 2025-05-29
47- Add LaTeX rendering support on outputs from Documenter blocks.
58- Fix a bug with ` @ansi ` blocks in draft mode.
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ using Documenter
22using DocumenterVitepress
33using DocumenterCitations
44using DocumenterInterLinks
5+ using LaTeXStrings
56
67# Handle DocumenterCitations integration - if you're running this, then you don't need anything here!!
78documenter_citations_dir = dirname (dirname (pathof (DocumenterCitations)))
Original file line number Diff line number Diff line change @@ -478,21 +478,19 @@ You can also use fenced code blocks with the `math` tag for equations!
478478
479479## LaTeXStrings
480480
481- ``` @example latexstring
482- using LaTeXStrings
483- ```
484-
485481::: tabs
486482
487483== text string
488484
489- ``` @example latexstring
485+ ``` @example
486+ using LaTeXStrings
490487L"an equation: $\alpha^2$"
491488```
492489
493490== text/latex display
494491
495- ``` @example latexstring
492+ ``` @example
493+ using LaTeXStrings
496494LaTeXString("an equation: \$\\alpha^2\$")
497495```
498496
You can’t perform that action at this time.
0 commit comments