我正在使用数学书法字体来表示某个集合 U,当我尝试声明 X 是 U 的一个元素时$X\in\mathcal{U}$
,我得到了一个可怕的结果。下面是代码,还有一些其他示例用于比较。
\documentclass[12pt]{article}
\begin{document}
\thispagestyle{empty}
Let $\mathcal{U}$ be an nonprincipal ultrafilter. If
$X\in\mathcal{U}$, then $X$ is infinite.
\Huge
\begin{tabular}{|l|l|}
$X\in\mathcal{U}$ & \verb#$X\in\mathcal{U}$# \\
$X\in U$ & \verb#$X\in U$# \\
$X + \mathcal{U}$ & \verb#$X + \mathcal{U}$# \\
$X + U$ & \verb#$X + U$#
\end{tabular}
\end{document}
X
因此, and之间的空间太大,\in
而 之前的空间太小\mathcal{U}
。如果与数学斜体 U 的示例进行比较,空间会稍微大一些后 \in
(而且看起来更好)。
放在牙套X
之间\mathcal{U}$
似乎没有帮助。
答案1
这不是一个答案,而是一个斜体和数学字体的演示。
\documentclass{standalone}
\usepackage{xcolor}
\newcounter{mycount}
\begin{document}
\fboxsep=0pt
\parbox{25pt}{\baselineskip=0pt
\lineskip=0pt
\loop\stepcounter{mycount}
\fbox{$\color{red}\Alph{mycount}$}%
\fbox{$\color{red}\mathcal{\Alph{mycount}}$}
\ifnum\value{mycount}<26\relax\repeat}
\end{document}