latex 特殊字符 ∟

latex 特殊字符 ∟

我正在寻找一种方法来在我的文档中插入此符号 ∟ (html: ∟)。我在互联网上找到了一些提到 \usepackage{mathdesign} 和 \rightangle 的帖子,但这似乎是这个字符:> 有人有想法吗?非常感谢!

答案1

采用图片模式的解决方案:

\documentclass{article}
\usepackage{pict2e}

\DeclareRobustCommand{\rightangle}{%
  \begingroup\setlength{\unitlength}{1ex}%
  \begin{picture}(1.2,1)
  \roundcap
  \polyline(0.1,1)(0.1,0)(1.1,0)
  \end{picture}%
  \endgroup
}

\begin{document}

Here is the right angle symbol \rightangle{} in context.

\Large

And \rightangle{} changes size

\end{document}

在此处输入图片描述

使用 STIX 字体的解决方案。此变体可用于数学模式,并自动更改下标或上标的大小。

\documentclass{article}
\usepackage{amsmath}

\DeclareFontEncoding{LS1}{}{}
\DeclareFontSubstitution{LS1}{stix}{m}{n}

\DeclareRobustCommand{\rightangle}{%
  \text{\usefont{LS1}{stix}{m}{n}\symbol{"D9}}%
}

\begin{document}

Here is the right angle symbol \rightangle{} in context.

\Large

And \rightangle{} changes size

\end{document}

在此处输入图片描述

答案2

你尝试过 \usepackage{graphicx}

\rotatebox[origin=c]{180}{$\neg$}

垂直部分稍微小一点,但可能会有用。

相关内容