有一份详细的 LaTeX 符号和 Unicode 等效符号列表吗?

有一份详细的 LaTeX 符号和 Unicode 等效符号列表吗?

我想要一份 unicode 符号及其对应 TeX 命令的详尽列表。unicode 符号必须是文本,而不是图像。

前两列来自这个来源(部分内容如下所示)正是我要找的,但我想要一个更详尽的清单。

象征 TeX
¬ \neg
± \下午
· \cdot
\到
\右箭头
\左右箭头
\对全部
\部分的

答案1

我在这里找到了一个:https://github.com/joom/latex-unicoder.vim/blob/master/autoload/unicoder.vim。它相当有用。一瞥:

\ '\upepsilon'                  : 'ε',
\ '\zeta'                       : 'ζ',
\ '\eta'                        : 'η',
\ '\theta'                      : 'θ',
\ '\iota'                       : 'ι',
\ '\kappa'                      : 'κ',
\ '\lambda'                     : 'λ',
\ '\mu'                         : 'μ',
\ '\nu'                         : 'ν',
\ '\xi'                         : 'ξ',
\ '\upomicron'                  : 'ο',

答案2

如果您指的是 定义的符号列表unicode-math,那么可以使用 XeLaTeX 或 LuaLaTeX 获取它:

\documentclass{article}
\usepackage[a4paper,margin=2cm]{geometry}
\usepackage{unicode-math}
\usepackage{multicol}

\setmathfont{XITS Math}
\unimathsetup{math-style=literal}

\begin{document}
\begin{multicols}{2}
\linespread{1.3}\small
\def\UnicodeMathSymbol#1#2#3#4{\texttt{#1 \string#2}\quad$
  \ifx#2\sqrt
    #2{\mbox{\space}}
  \else
    \ifx#2\not
      #2^^^^2062
    \else
      \ifdefined#2
        #2{\space}
      \fi
    \fi
  \fi
  $\\}
\noindent\input{unicode-math-table}
\end{multicols}
\end{document}

该文件基本上读取unicode-math-table并显示 Unicode 点、相关命令和符号。列表持续 24 页,每页两列,我只显示前几行

enter image description here

答案3

这一页就有这样一个表格。(注意:sourceforge.net 设置了错误的字符编码,您可能需要将文本文件保存到磁盘并使用文本编辑器打开它,以便正确显示 unicode 字符。第二列和第三列似乎正是您要查找的内容。)例如,表格中紧接着 ASCII 范围的部分如下所示:

000A2^¢^\cent^^N^mathord^wasysym^= \mathcent (txfonts), cent
000A3^£^\pounds^\sterling^N^mathord^-fourier -omlmathit^= \mathsterling (txfonts), POUND SIGN, fourier prints a dollar sign
000A4^¤^^^N^mathord^^t \currency (wasysym), curren
000A5^¥^\yen^\yen^N^mathord^amsfonts^YEN SIGN
000A6^¦^^^N^mathord^^brvbar (vertical)
000A7^§^^^N^mathord^^sect
000A8^¨^\spddot^^D^mathord^amsxtra^Dot /die, alias for 0308
000AC^¬^\neg^\neg^U^mathord^^= \lnot, NOT SIGN
000AE^®^\circledR^^X^mathord^amsfonts^REGISTERED SIGN
000AF^¯^^^D^mathord^^macr, alias for 0304
000B0^°^^^N^mathord^^deg
000B1^±^\pm^\pm^V^mathbin^^plus-or-minus sign
000B2^²^^^N^mathord^^sup2
000B3^³^^^N^mathord^^sup3
000B4^´^^^N^mathord^^acute, alias for 0301
000B5^µ^\Micro^^N^mathalpha^wrisym^= \tcmu (mathcomp), t \textmu (textcomp), # \mathrm{\mu} (omlmathrm), # \muup (kpfonts mathdesign), MICRO SIGN
000B6^¶^^^N^mathord^^para (paragraph sign, pilcrow)
000B7^·^^\cdotp^B^mathbin^^# \cdot, x \centerdot, b: MIDDLE DOT
000B9^¹^^^N^mathord^^sup1
000BC^¼^^^N^mathord^^frac14
000BD^½^^^N^mathord^^frac12
000BE^¾^^^N^mathord^^frac34
000BF^¿^^^P^^^iquest
000D7^×^\times^\times^B^mathbin^^MULTIPLICATION SIGN, z notation Cartesian product
000F0^ð^\eth^\matheth^^mathalpha^amssymb arevmath^eth
000F7^÷^\div^\div^B^mathbin^^divide sign

相关内容