File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
44DocumenterCitations = " daee34ce-89f3-4625-b898-19384cb65244"
55DocumenterInterLinks = " d12716ef-a0f6-4df4-a9f1-a5a34e75c656"
66DocumenterVitepress = " 4710194d-e776-4893-9690-8d956a29c365"
7+ LaTeXStrings = " b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
78
89[sources ]
910DocumenterVitepress = {path = " .." }
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ using Documenter
22using DocumenterVitepress
33using DocumenterCitations
44using DocumenterInterLinks
5- using DataFrames
65
76# Handle DocumenterCitations integration - if you're running this, then you don't need anything here!!
87documenter_citations_dir = dirname (dirname (pathof (DocumenterCitations)))
Original file line number Diff line number Diff line change @@ -475,6 +475,29 @@ You can also use fenced code blocks with the `math` tag for equations!
475475``` math
476476\nabla^2 \Phi = \rho
477477```
478+
479+ ## LaTeXStrings
480+
481+ ``` @example latexstring
482+ using LaTeXStrings
483+ ```
484+
485+ ::: tabs
486+
487+ == text string
488+
489+ ``` @example latexstring
490+ L"an equation: $\alpha^2$"
491+ ```
492+
493+ == text/latex display
494+
495+ ``` @example latexstring
496+ LaTeXString("an equation: \$\\alpha^2\$")
497+ ```
498+
499+ :::
500+
478501## DataFrame
479502
480503``` @example
You can’t perform that action at this time.
0 commit comments