大号 \perp 符号和适当的带圆圈的 \perp 符号

大号 \perp 符号和适当的带圆圈的 \perp 符号

有没有命令可以显示用于表示垂直度的符号的较大版本\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}

在此处输入图片描述

相关内容