当前位置:   article > 正文

LaTex字体、符号汇总_latex字母字体

latex字母字体

一. 花式字体

不同字体宏包下,同一字体的表现不同。一般不用加宏包即可。

黑板粗体字

此字体经常用来表示代表实数、整数、有理数、复数的大写字母。
$\mathbb ABCDEF$\mathbb {ABCDEF}
$\Bbb ABCDEF$\Bbb {ABCDEF}

黑体字

$\mathbf ABCDEFGHIJKLMNOPQRSTUVWXYZ$\mathbf {ABCDEFGHIJKLMNOPQRSTUVWXYZ}
$\mathbf abcdefghijklmnopqrstuvwxyz$ :\mathbf {abcdefghijklmnopqrstuvwxyz}

打印机字体

$\mathtt ABCDEFGHIJKLMNOPQRSTUVWXYZ$\mathtt {ABCDEFGHIJKLMNOPQRSTUVWXYZ}

不添加宏包

  1. \begin{array}{ll|l}
  2.  \texttt{"normal"}      &\texttt{}         & ABCDEFGHIJKLMNOPQRSTUVWXYZ\\
  3.  \texttt{"blackboard"}  &\texttt{\mathbb}  &\mathbb{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  4.  \texttt{"boldface"}    &\texttt{\mathbf}  &\mathbf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  5.  \texttt{"typewriter"}  &\texttt{\mathtt}  &\mathtt{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  6.  \texttt{"roman"}       &\texttt{\mathrm}  &\mathrm{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  7.  \texttt{"sans-serif"}  &\texttt{\mathsf}  &\mathsf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  8.  \texttt{"calligraphic"}&\texttt{\mathcal} &\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  9.  \texttt{"script"}      &\texttt{\mathscr} &\mathscr{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  10.  \texttt{"fraktur"}     &\texttt{\mathfrak}&\mathfrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
  11. \end{array}

实现效果

"normal"ABCDEFGHIJKLMNOPQRSTUVWXYZ"blackboard"\mathbbABCDEFGHIJKLMNOPQRSTUVWXYZ"boldface"\mathbfABCDEFGHIJKLMNOPQRSTUVWXYZ"typewriter"\mathttABCDEFGHIJKLMNOPQRSTUVWXYZ"roman"\mathrmABCDEFGHIJKLMNOPQRSTUVWXYZ"sans-serif"\mathsfABCDEFGHIJKLMNOPQRSTUVWXYZ"calligraphic"\mathcalABCDEFGHIJKLMNOPQRSTUVWXYZ"script"\mathscrABCDEFGHIJKLMNOPQRSTUVWXYZ"fraktur"\mathfrakABCDEFGHIJKLMNOPQRSTUVWXYZ

宏包1:\usepackage[mathscr]{eucal}

  1. \begin{array}{ll}
  2. \texttt{"normal"} & ABCDEFGHIJKLMNOPQRSTUVWXYZ\\
  3. \texttt{"blackboard"} &$\mathbb{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  4. \texttt{"boldface"} &$\mathbf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  5. \texttt{"typewriter"} &$\mathtt{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  6. \texttt{"roman"} &$\mathrm{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  7. \texttt{"sans-serif"} &$\mathsf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  8. \texttt{"calligraphic"}&$\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  9. \texttt{"script"} &$\mathscr{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  10. \texttt{"fraktur"} &$\mathfrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
  11. \end{array}

输出结果

"normal"ABCDEFGHIJKLMNOPQRSTUVWXYZ"blackboard"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"boldface"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"typewriter"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"roman"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"sans-serif"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"calligraphic"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"script"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$"fraktur"$ABCDEFGHIJKLMNOPQRSTUVWXYZ$

宏包2:\usepackage{mathrsfs}

二. 希腊字母

 小写希腊字母

大写希腊字母

三. 色彩表

色彩表1

  1. \begin{array}{|lc|}
  2. \hline
  3.  \verb+\color{black}{黑色}+    & \color{black}{黑色}   \\
  4.  \verb+\color{darkgray}{深灰}+ & \color{darkgray}{深灰}\\
  5.  \verb+\color{gray}{灰色}+     & \color{gray}{灰色}    \\
  6.  \verb+\color{silver}{银色}+   & \color{silver}{银色}  \\
  7.  \verb+\color{lightgray}{浅灰}+&\color{lightgray}{浅灰}\\
  8.  \verb+\color{white}{白色}+    & \color{white}{白色}   \\
  9. \hline
  10.  \verb+\color{brown}{棕色}+    & \color{brown}{棕色}   \\
  11.  \verb+\color{maroon}{栗色}+   & \color{maroon}{栗色}  \\
  12.  \verb+\color{red}{红色}+      & \color{red}{红色}     \\
  13.  \verb+\color{fuchsia}{桃红}+  & \color{fuchsia}{桃红} \\
  14.  \verb+\color{magenta}{品红}+  & \color{magenta}{品红} \\
  15.  \verb+\color{pink}{粉红}+     & \color{pink}{粉红}    \\
  16.  \verb+\color{orange}{橙色}+   & \color{orange}{橙色}  \\
  17.  \verb+\color{yellow}{黄色}+   & \color{yellow}{黄色}  \\
  18.  \verb+\color{lime}{青柠}+     & \color{lime}{青柠}    \\
  19.  \verb+\color{olive}{橄榄}+    & \color{olive}{橄榄}   \\
  20.  \verb+\color{green}{绿色}+    & \color{green}{绿色}   \\
  21.  \verb+\color{aqua}{水绿}+     & \color{aqua}{水绿}    \\
  22.  \verb+\color{cyan}{青色}+     & \color{cyan}{青色}    \\
  23.  \verb+\color{teal}{靛青}+     & \color{teal}{靛青}    \\
  24.  \verb+\color{blue}{蓝色}+     & \color{blue}{蓝色}    \\
  25.  \verb+\color{navy}{海蓝}+     & \color{navy}{海蓝}    \\
  26.  \verb+\color{violet}{罗兰}+   & \color{purple}{罗兰}  \\ 
  27.  \verb+\color{purple}{紫色}+   & \color{purple}{紫色}  \\ 
  28. \hline
  29. \end{array}

实现效果:

\color{black}{黑色}\color{darkgray}{深灰}\color{gray}{灰色}\color{silver}{银色}\color{lightgray}{浅灰}\color{white}{白色}\color{brown}{棕色}\color{maroon}{栗色}\color{red}{红色}\color{fuchsia}{桃红}\color{magenta}{品红}\color{pink}{粉红}\color{orange}{橙色}\color{yellow}{黄色}\color{lime}{青柠}\color{olive}{橄榄}\color{green}{绿色}绿\color{aqua}{水绿}绿\color{cyan}{青色}\color{teal}{靛青}\color{blue}{蓝色}\color{navy}{海蓝}\color{violet}{罗兰}\color{purple}{紫色}
 

色彩表2

  1. \begin{array}{|rrrrrrrr|}
  2. \hline
  3. \verb+#000+ & \color{#000}{text} & \verb+#005+ & \color{#005}{text} & \verb+#00A+ & \color{#00A}{text} & \verb+#00F+ & \color{#00F}{text}  \\
  4. \verb+#500+ & \color{#500}{text} & \verb+#505+ & \color{#505}{text} & \verb+#50A+ & \color{#50A}{text} & \verb+#50F+ & \color{#50F}{text}  \\
  5. \verb+#A00+ & \color{#A00}{text} & \verb+#A05+ & \color{#A05}{text} & \verb+#A0A+ & \color{#A0A}{text} & \verb+#A0F+ & \color{#A0F}{text}  \\
  6. \verb+#F00+ & \color{#F00}{text} & \verb+#F05+ & \color{#F05}{text} & \verb+#F0A+ & \color{#F0A}{text} & \verb+#F0F+ & \color{#F0F}{text}  \\
  7. \hline
  8. \verb+#080+ & \color{#080}{text} & \verb+#085+ & \color{#085}{text} & \verb+#08A+ & \color{#08A}{text} & \verb+#08F+ & \color{#08F}{text}  \\
  9. \verb+#580+ & \color{#580}{text} & \verb+#585+ & \color{#585}{text} & \verb+#58A+ & \color{#58A}{text} & \verb+#58F+ & \color{#58F}{text}  \\
  10. \verb+#A80+ & \color{#A80}{text} & \verb+#A85+ & \color{#A85}{text} & \verb+#A8A+ & \color{#A8A}{text} & \verb+#A8F+ & \color{#A8F}{text}  \\
  11. \verb+#F80+ & \color{#F80}{text} & \verb+#F85+ & \color{#F85}{text} & \verb+#F8A+ & \color{#F8A}{text} & \verb+#F8F+ & \color{#F8F}{text}  \\
  12. \hline
  13. \verb+#0F0+ & \color{#0F0}{text} & \verb+#0F5+ & \color{#0F5}{text} & \verb+#0FA+ & \color{#0FA}{text} & \verb+#0FF+ & \color{#0FF}{text}  \\
  14. \verb+#5F0+ & \color{#5F0}{text} & \verb+#5F5+ & \color{#5F5}{text} & \verb+#5FA+ & \color{#5FA}{text} & \verb+#5FF+ & \color{#5FF}{text}  \\
  15. \verb+#AF0+ & \color{#AF0}{text} & \verb+#AF5+ & \color{#AF5}{text} & \verb+#AFA+ & \color{#AFA}{text} & \verb+#AFF+ & \color{#AFF}{text}  \\
  16. \verb+#FF0+ & \color{#FF0}{text} & \verb+#FF5+ & \color{#FF5}{text} & \verb+#FFA+ & \color{#FFA}{text} & \verb+#FFF+ & \color{#FFF}{text}  \\
  17. \hline
  18. \end{array}

实现效果:

#000text#005text#00Atext#00Ftext#500text#505text#50Atext#50Ftext#A00text#A05text#A0Atext#A0Ftext#F00text#F05text#F0Atext#F0Ftext#080text#085text#08Atext#08Ftext#580text#585text#58Atext#58Ftext#A80text#A85text#A8Atext#A8Ftext#F80text#F85text#F8Atext#F8Ftext#0F0text#0F5text#0FAtext#0FFtext#5F0text#5F5text#5FAtext#5FFtext#AF0text#AF5text#AFAtext#AFFtext#FF0text#FF5text#FFAtext#FFFtext
 

四. 公式

常用公式符号

加粗

$$ {\mathbf h} $$

h

分数

$$ \frac{a-1}{b-1} \quad and \quad {a+1\over b+1} $$

a1b1anda+1b+1

矢量

$$ \overleftarrow{xy} \quad and \quad \overleftrightarrow{xy} \quad and \quad \overrightarrow{xy} $$

xyandxyandxy

积分

$$ \int_0^1 {x^2} \,{\rm d}x $$

01x2dx

累加累乘

$$ \sum_{i=1}^n \frac{1}{i^2} \quad and \quad \prod_{i=1}^n \frac{1}{i^2} \quad and \quad \bigcup_{i=1}^{2} R $$

i=1n1i2andi=1n1i2andi=12R

元素省略

  1. $$
  2. \begin{pmatrix}
  3. 1&a_1&a_1^2&\cdots&a_1^n\\
  4. 1&a_2&a_2^2&\cdots&a_2^n\\
  5. \vdots&\vdots&\vdots&\ddots&\vdots\\
  6. 1&a_m&a_m^2&\cdots&a_m^n\\
  7. \end{pmatrix}
  8. $$

(1a1a12a1n1a2a22a2n1amam2amn)

增广矩阵

  1. $$
  2. \left[ \begin{array} {c c | c} %这里的c表示数组中元素对其方式:c居中、r右对齐、l左对齐,竖线表示23列间插入竖线
  3. 1 & 2 & 3 \\
  4. \hline %插入横线,如果去掉\hline就是增广矩阵
  5. 4 & 5 & 6
  6. \end{array} \right]
  7. $$

[123456]

 

分式

  1. \begin{equation}
  2. x = a_0 + \cfrac{1^2}{a_1
  3.         + \cfrac{2^2}{a_2
  4.         + \cfrac{3^2}{a_3 
  5.         + \cfrac{4^4}{a_4 + \cdots}}}}
  6. \end{equation}

实现效果:

x=a0+12a1+22a2+32a3+44a4+
 

  1. \begin{equation}
  2. \underset{j=1}{\overset{\infty}{\LARGE\mathrm K}}\frac{a_j}{b_j}
  3. =\cfrac{a_1}{b_1
  4. +\cfrac{a_2}{b_2
  5. +\cfrac{a_3}{b_3
  6. +\ddots}}}
  7. \end{equation}

实现效果: 

Kj=1ajbj=a1b1+a2b2+a3b3+

  1. \begin{equation}
  2. x = a_0 + \frac{1^2}{a_1+}
  3.           \frac{2^2}{a_2+}
  4.           \frac{3^2}{a_3 +
  5.           \frac{4^4}{a_4 +} \cdots
  6. \end{equation}

实现效果: 

x=a0+12a1+22a2+32a3+44a4+

线性代数

  1. \begin{array}{ll}
  2.  \texttt{\overline}&\overline{AAA}\\
  3.  \texttt{\underline}&\underline{BBB}\\
  4.  \texttt{\widetilde}&\widetilde{CCC}\\
  5.  \texttt{\widehat}&\widehat{DDD}\\
  6.  \texttt{\fbox}&\fbox{EEE}\\
  7. \hline
  8.  \texttt{\vec}&\vec{x}\ \mathrm{or}\ \vec{AB}\\
  9.  \texttt{\check}&\check{x}\\
  10.  \texttt{\acute}&\acute{x}\\
  11.  \texttt{\grave}&\grave{x}\\
  12.  \texttt{\bar}&\bar{x}\\
  13.  \texttt{\hat}&\hat{x}\\
  14.  \texttt{\tilde}&\tilde{x}\\
  15.  \texttt{\mathring}&\mathring{x}\\
  16.  \texttt{\dot}&\dot{x}\\
  17.  \texttt{\ddot}&\ddot{x}\\
  18.  \texttt{\dddot}&\dddot{x}\\
  19. \end{array}

实现效果: 

\overlineAAA¯\underlineBBB_\widetildeCCC~\widehatDDD^\fboxEEE\vecx or AB\checkxˇ\acutex´\gravex`\barx¯\hatx^\tildex~\mathringx˚\dotx˙\ddotx¨\dddotx

  1. \begin{array}{lc}
  2.  \texttt{smallmatrix}&\bigl(\begin{smallmatrix} a & b \\ c & d \end{smallmatrix}\bigr)\\
  3.  \texttt{matrix} &\begin{matrix} 1&2\\3&4\\ \end{matrix} \\
  4.  \texttt{pmatrix}&\begin{pmatrix}1&2\\3&4\\ \end{pmatrix}\\
  5.  \texttt{bmatrix}&\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\\
  6.  \texttt{Bmatrix}&\begin{Bmatrix}1&2\\3&4\\ \end{Bmatrix}\\
  7.  \texttt{vmatrix}&\begin{vmatrix}1&2\\3&4\\ \end{vmatrix}\\
  8.  \texttt{Vmatrix}&\begin{Vmatrix}1&2\\3&4\\ \end{Vmatrix}\\
  9. \end{array}

实现效果:

smallmatrix(abcd)matrix1234pmatrix(1234)bmatrix[1234]Bmatrix{1234}vmatrix|1234|Vmatrix1234

  1. \begin{pmatrix}
  2.  1 & a_1 & a_1^2 & \cdots & a_1^n \\
  3.  1 & a_2 & a_2^2 & \cdots & a_2^n \\
  4.  \vdots  & \vdots& \vdots & \ddots & \vdots \\
  5.  1 & a_m & a_m^2 & \cdots & a_m^n \\
  6. \end{pmatrix}

实现效果:

(1a1a12a1n1a2a22a2n1amam2amn)

  1. $$
  2. \left[
  3. \begin{array}{cc|c}
  4.   1&2&3\\
  5.   4&5&6\\
  6. \end{array}
  7. \right]
  8. $$

实现效果:

[123456]

方程式组

  1. \begin{array}{ll}
  2. %线性方程组加\\[2ex],不然会挤在一起.
  3.  a_1x+b_1y+c_1z=\frac{p_1}{q_1} \\[2ex] 
  4.  a_2x+b_2y+c_2z=\frac{p_2}{q_2} \\[2ex] 
  5.  a_3x+b_3y+c_3z=\frac{p_3}{q_3}
  6. \end{array}
  7. % 注意:要加\begin{array}{ll} 和 \end{array},不然无法换行
  8. % 不同方程式之间不要有空行
  9. % 除了最后一行公式,其余的每一行都要在末尾添加 \\[2ex],不然无法换行

实现效果:

a1x+b1y+c1z=p1q1a2x+b2y+c2z=p2q2a3x+b3y+c3z=p3q3

  1. \require{cancel}
  2. \require{enclose}
  3. %约去符,删除线
  4. \begin{array}{ll}
  5.  \verb|y+\cancel{x}| & y+\cancel{x}\\
  6.  \verb|y+\bcancel{x}| & y+\bcancel{x}\\
  7.  \verb|y+\xcancel{x}| & y+\xcancel{x}\\
  8.  \verb|y+\cancelto{0}{x}| & y+\cancelto{0}{x}\\
  9.  \verb+\frac{1\cancel9}{\cancel95} = \frac15+& \frac{1\cancel9}{\cancel95} = \frac15 \\
  10.  \verb|\enclose{horizontalstrike}{x+y}| & \enclose{horizontalstrike}{x+y}\\
  11.  \verb|\enclose{verticalstrike}{\frac xy}| & \enclose{verticalstrike}{\frac xy}\\
  12.  \verb|\enclose{updiagonalstrike}{x+y}| & \enclose{updiagonalstrike}{x+y}\\
  13.  \verb|\enclose{downdiagonalstrike}{x+y}| & \enclose{downdiagonalstrike}{x+y}\\
  14. \end{array}

实现效果:

五. 数学符号表

  1. $$
  2. \hat{a} \check{a} \tilde{a} \acute{a}
  3. \grave{a} \dot{a} \ddot{a} \breve{a}
  4. \bar{a} \vec{a} \widehat{A} \widetilde{A}
  5. $$

a^aˇa~a´a`a˙a¨a˘a¯aA^A~
 

二元关系符

你可以在下述命令的前面加上\not 来得到其否定形式。

 二元运算符

大尺寸运算符 

箭头

 定界符

3-8

大尺寸定界符

其它符号

非数学符号

AMS 定界符

 

AMS 希腊和希伯来字母

3-12

AMS 二元关系符

AMS 箭头

AMS 二元否定关系符和箭头

AMS 二元运算符

AMS 其它符号

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/835957
推荐阅读
相关标签
  

闽ICP备14008679号