【系统】Hello, world!

Hello, World!

hello, world!

Test for \(\LaTeX\) equation

  • MathJax Test:

    • This is \(\LaTeX\), and \int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi} is rendered as \(\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}\).
  • KaTeX Test:

    • This is $\LaTeX$, and \int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi} is rendered as $\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}$.
  • 行间公式测试

$$
\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}
$$

source code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" id="MathJax-script"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css">
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/auto-render.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "\\[", right: "\\]", display: true},
{left: "$", right: "$", display: false},
{left: "\\(", right: "\\)", display: false}
]
});
});
</script>

## Hello, World!

hello, world!

## Test for \\(\LaTeX\\) equation

- MathJax Test:
- This is \\(\LaTeX\\), and `\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}` is rendered as \\(\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}\\).

- KaTeX Test:
- This is $\LaTeX$, and `\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}` is rendered as $\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}$.

- 行间公式测试

$$
\int_{-\infty}^{+\infty}e^{-x^2}\mathrm d x=\sqrt{\pi}
$$

【系统】Hello, world!
http://zhoujy.com/helloworld/
作者
ZJsheep
发布于
2023年6月28日
许可协议