有没有命令可以显示用于表示垂直度的符号的较大版本\perp
?我看过全面的 LaTeX 符号列表并没有找到这个符号的大版本。
另外,我想知道自从这个问题以来情况是否有所改变正交和的符号按照要求。我发现它对\obot
我\bigobot
来说不起作用。
答案1
以下是我可以提供的\bigperp
命令:
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\makeatletter
\newcommand{\bigperp}{%
\mathop{\mathpalette\bigp@rp\relax}%
\displaylimits
}
\newcommand{\bigp@rp}[2]{%
\vcenter{
\m@th\hbox{\scalebox{\ifx#1\displaystyle2.1\else1.5\fi}{$#1\perp$}}
}%
}
\makeatother
\begin{document}
$
\displaystyle\bigperp\sum
\textstyle\bigperp\sum
\scriptstyle\bigperp\sum
\scriptscriptstyle\bigperp\sum
$
$\displaystyle\bigperp_{i=1}^{n} U_{i}$
\end{document}