-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: refactor LaTeX render support (#168)
- Loading branch information
Showing
6 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v22.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: "Test LaTeX" | ||
pubDate: 2023-10-01 | ||
categories: ["test"] | ||
description: "This is an article for testing LaTeX rendering." | ||
--- | ||
|
||
# Test LaTeX | ||
|
||
This is a sample article containing LaTeX mathematical formulas. | ||
|
||
## Inline Formula | ||
|
||
This is an inline formula: $E = mc^2$, which represents the mass-energy equivalence. | ||
|
||
## Block Formula | ||
|
||
Below is a block formula: | ||
|
||
$$ | ||
\int_{a}^{b} f(x) \, dx = F(b) - F(a) | ||
$$ | ||
|
||
This formula represents the fundamental theorem of calculus. | ||
|
||
## Complex Formula | ||
|
||
We can also display more complex formulas: | ||
|
||
$$ | ||
\frac{d}{dx} \left( \int_{a}^{x} f(t) \, dt \right) = f(x) | ||
$$ | ||
|
||
This formula represents the fundamental theorem of calculus in differential form. |