答案1
答案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
答案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}