我想要一个类似于 aw ou a omega 的符号,我希望它由无穷大符号组成,\infty
方法是“擦除”它的顶部。我更愿意只修剪无穷大符号的“上部 v”部分,以便让新符号更像 omega。
答案1
根据原来修剪上部的指导,可以调整.4\LMex
修剪量以达到想要的外观。
\documentclass{article}
\usepackage{trimclip,scalerel}
\newcommand\altinfty{\ThisStyle{\clipbox{0pt 0pt 0pt .4\LMex}{$\SavedStyle\infty$}}}
\begin{document}
$\lim x \rightarrow \altinfty$
$\scriptstyle\lim x \rightarrow \altinfty$
$\scriptscriptstyle\lim x \rightarrow \altinfty$
\end{document}
附录
根据 OP 的评论,除了剪辑之外,还有一种替代方法是覆盖一个策略性放置的白色矩形:
\documentclass{article}
\usepackage{xcolor,stackengine,scalerel}
\newcommand\altinfty{\ThisStyle{\stackinset{c}{-.1pt}{t}{-.08\LMex}
{\textcolor{white}{\rule{1.5\LMex}{.6\LMex}}}{$\SavedStyle\infty$}}}
\begin{document}
$\lim x \rightarrow \altinfty$
$\scriptstyle\lim x \rightarrow \altinfty$
$\scriptscriptstyle\lim x \rightarrow \altinfty$
\end{document}
答案2
夹子三的副本\infty
并将它们相互叠加。
\documentclass{article}
\usepackage{trimclip}
\makeatletter
\DeclareRobustCommand{\badomega}{\mathord{\mathpalette\bad@omega\infty}}
\newcommand{\bad@omega}[2]{%
\ooalign{%
\clipbox{0pt 0pt {0.75\width} {0.2\height}}{$\m@th#1#2$}\hidewidth\cr
\hidewidth\clipbox{{0.75\width} 0pt 0pt {0.2\height}}{$\m@th#1#2$}\cr
\clipbox{0pt {-0.05\height} 0pt {0.55\height}}{$\m@th#1#2$}\cr
}%
}
\begin{document}
$\badomega\scriptstyle\badomega\scriptscriptstyle\badomega$
\end{document}
这在彩色背景上也有效。