是否存在看起来像圆的扇形 ⌔ 的 Latex 符号?

是否存在看起来像圆的扇形 ⌔ 的 Latex 符号?

在 Unicode 中,我可以找到符号 U+2314 SECTOR:

来自官方 Unicode 图表的渲染

LaTeX 中有类似的东西吗?

答案1

\usepackage{MnSymbol}

在此处输入图片描述

我刚刚搜索过综合 LaTeX 符号列表并找到了它。

答案2

这是使用的实现pict2e;角度为 40 度。

\documentclass{article}
\usepackage{pict2e}

\makeatletter
\DeclareRobustCommand{\sector}{\mathord{\mathpalette\make@sector\relax}}
\newcommand{\make@sector}[2]{%
  \settoheight{\unitlength}{$#1x$}%
  \begin{picture}(1,1.06)
  \linethickness{.08\unitlength}
  \moveto(0.5,0)
  \lineto(0.842,1)
  \curveto(.6,1.08)(.4,1.08)(0.158,1)
  \closepath
  \strokepath
  \end{picture}%
}
\makeatother

\begin{document}

$A\sector x$

$A_{x\sector}$

\end{document}

在此处输入图片描述

答案3

包裹里有一个符号fdsymbol\sector

此外,根据你的绝望程度,你可能需要查看综合 LATEX 符号列表

在此处输入图片描述

答案4

您可以找到具有该 Unicode 符号的字体(请参阅以下列表http://www.fileformat.info/info/unicode/char/2314/fontsupport.htm),将其安装为系统字体,使用 加载它fontspec,然后将该符号直接放入文件中.tex。使用 XeLaTeX 或 LuaLaTeX 而不是 pdfLaTeX 进行编译。

\documentclass{article}

\usepackage{fontspec}
\setmainfont{Cambria}

\begin{document}
Here is the symbol: ⌔
\end{document}

在此处输入图片描述

相关内容