其他分享
首页 > 其他分享> > [译]Hugo-Theme-PaperMod主题文档 数学排版

[译]Hugo-Theme-PaperMod主题文档 数学排版

作者:互联网

转载翻译自: https://adityatelange.github.io/hugo-PaperMod/posts/math-typesetting/
作者:PaperMod Authors
已获得作者授权

中文demo

https://note.ftls.xyz/papermod/

可以使用第三方 JavaScript 库启用 Hugo 项目中的数学符号。

在这个例子中,我们将使用 KaTeX

{{ if or .Params.math .Site.Params.math }}
{{ partial "math.html" . }}
{{ end }}

注意: 可使用在线参考: Supported TeX Functions

{{< math.inline >}}
{{ if or .Page.Params.math .Site.Params.math }}

{{ end }} {{}}

Examples

{{< math.inline >}}

行内公式: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)

{{}}

公式块:

φ = 1 + 1 1 + 1 1 + 1 1 + ⋯ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } φ=1+1+1+1+⋯1​1​1​

---
author: Hugo Authors
title: "[译]数学排版"
date: 2019-03-08
description: 设置 KaTeX 的简要指南 
math: true
ShowBreadCrumbs: false
---

标签:PaperMod,Hugo,Theme,html,Params,true,math
来源: https://blog.csdn.net/qq_42970717/article/details/120189199