我正在尋找一種方法來在我的文件中插入此符號 ∟ (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$}
垂直部分有點小,但可能有用。