Latex 常用字符及字体变换
作者:互联网
Latex 常用字符及字体变换
字体变换
1、斜体
\emph{文字}
2、下划线
\underline{文字}
3、粗体 (快捷键:ctrl+B)
\textbf{文字}
4、罗马数字
大写:\uppercase\expandafter{\romannumeral2}
小写:\romannumeral2
5、运算
点乘:a \cdot b
叉乘:a \times b
除以:a \div b
6、绝对值
$ \vert $
7、上标下标
上标:a^b 下标:a_b
8、取整
向上取整:$\lfloor x \rfloor$
向下取整:$\lceil x \rceil$
希腊字母
Python 输出希腊字母
for upper in range(913, 938): #输出大写
print(chr(upper), upper)
for lower in range(945,970): #输出小写
print(chr(lower),lower)
#为了方便观察,这里将大小写并排展示
Α 913 α 945
Β 914 β 946
Γ 915 γ 947
Δ 916 δ 948
Ε 917 ε 949
Ζ 918 ζ 950
Η 919 η 951
Θ 920 θ 952
Ι 921 ι 953
Κ 922 κ 954
Λ 923 λ 955
Μ 924 μ 956
Ν 925 ν 957
Ξ 926 ξ 958
Ο 927 ο 959
Π 928 π 960
Ρ 929 ρ 961
930 ς 962 #有情况
Σ 931 σ 963
Τ 932 τ 964
Υ 933 υ 965
Φ 934 φ 966
Χ 935 χ 967
Ψ 936 ψ 968
Ω 937 ω 969
标签:upper,lower,Latex,romannumeral2,字体,字符,print,取整 来源: https://www.cnblogs.com/SethDeng/p/16479850.html