我想在变量顶部添加自定义符号。问题是,如果变量大小发生变化,符号大小始终保持不变。在包含分数等的更复杂的公式中,这看起来很糟糕。
下面是一个例子。为了减少垂直空间,我使用了以下代码我怎样才能缩小(或扩大) \stackrel 中的垂直间距?。
\documentclass{minimal}
\usepackage{amsmath}
\usepackage{tikz}
\newcommand{\defeq}{%
\mathrel{\vbox{\offinterlineskip\ialign{%
\hfil##\hfil\cr
$\text{\tikz{\draw[-, line width=0.2ex] (1.6ex,0.5ex) -- (1.6ex,-0.5ex); \begin{scope}[xshift=0ex] \draw[-, line width=0.2ex] (0,0) -- (1.4ex,0); \fill[black] (1.5ex,0) -- (1ex,0.5ex) -- (1ex,-0.5ex) -- cycle; \end{scope} }}$\cr
\noalign{\kern-0.4ex}
}}}}
\begin{document}
\begin{equation}
B_{\overset{\defeq}{AB}} \overset{\defeq}{AB}
\end{equation}
\end{document}
答案1
装箱会阻止下标中的大小变化,您可以使用它\mathchoice
来选择不同的大小,但在这里我认为您可以删除 vbox,\ialign
因为您只有一行,所以它不会对齐任何内容。
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\newcommand{\defeq}{%
\mathrel{\text{\tikz{\draw[-, line width=0.2ex] (1.6ex,0.5ex) -- (1.6ex,-0.5ex); \begin{scope}[xshift=0ex] \draw[-, line width=0.2ex] (0,0) -- (1.4ex,0); \fill[black] (1.5ex,0) -- (1ex,0.5ex) -- (1ex,-0.5ex) -- cycle; \end{scope}}}}}
\begin{document}
\begin{equation}
B_{\overset{\defeq}{AB}} \overset{\defeq}{AB}
\end{equation}
\end{document}
或者更接近:
\newcommand{\defeq}{%
\mathrel{\text{%
\raisebox{-.4ex}[0pt][0pt]{\tikz{\draw[-, line width=0.2ex] (1.6ex,0.5ex) -- (1.6ex,-0.5ex); \begin{scope}[xshift=0ex] \draw[-, line width=0.2ex] (0,0) -- (1.4ex,0); \fill[black] (1.5ex,0) -- (1ex,0.5ex) -- (1ex,-0.5ex) -- cycle; \end{scope}}}}}}