Latex和Markdown中的数字字体和数学符号
文章目录
1. 数学字体
在书籍和论文中,数学字体是必不可少的,但是很多同学并不清楚具体的内容,现在简单总结下,持续更新。
| 数学字体 | 符号表示 | 效果展示 |
|---|---|---|
| 粗体(boldface) | \mathbf{} | R \mathbf{R} R |
| 黑板粗体(blackbold) | \mathbb{} | R \mathbb{R} R |
| 美术字(calligraphy) | \mathcal{} | L \mathcal{L} L |
补充:
ℜ \Re ℜ(real function)
可参考:https://latex.wikia.org/wiki/Main_page
2. 数学符号
其中 p ~ \tilde{p} p~中的~表示大约的意思。
~在概率中也有变量服从于某一分布的作用。它的Latex表示为\sim。
一撇( ′ \prime ′)用\prime表示。
参考链接一:
参考链接二为
min的参数写到下方并进行对齐:
- min f ∈ F f \smash{\displaystyle\min_{f \in \mathcal{F}}} f f∈Fminf
- min f ∈ F 1 N ∑ i = 1 N L ( y i , f ( x i ) ) + λ J ( f ) \smash{\displaystyle\min_{f \in \mathcal{F}}} \frac{1}{N} \sum _{i=1}^NL(y_i,f(x_i))+\lambda J(f) f∈FminN1i=1∑NL(yi,f(xi))+λJ(f)
x ~ \tilde{x} x~其中的波浪线的表示内涵为:
In statistics and probability theory, a tilde placed on top of a variable is sometimes used to represent the median of that variable; thus {\tilde {\mathbf {y} )) would indicate the median of the variable \mathbf {y} . A tilde over the letter n ({\tilde {n))) is sometimes used to indicate the harmonic mean. In machine learning, a tilde may represent a candidate value for a cell state in GRUs or LSTM units. (e.g. c̃) 参考链接三为:https://www.jianshu.com/p/25f0139637b7