有没有办法产生这个除法符号?÷

有没有办法产生这个除法符号?÷

有没有办法产生这个除法符号?÷

该术语\div给出的误差为Missing $ inserted

也不起作用。

答案1

Werner 和 egreg 的评论是正确的:你仍然应该使用\div,但在数学模式中。

所以:$6 \div 3 = 2$

$6 \div 3 = 2$

答案2

提问者说:有没有办法产生这个除法符号?÷

我说:

使用 PSTricks

在此处输入图片描述

\documentclass[pstricks,border=3pt]{standalone}

\begin{document}
\begin{pspicture}(4,4)
    \psline[linewidth=10pt](0,2)(4,2)
    \pscircle*(2,0.75){15pt}
    \pscircle*(2,3.25){15pt}
\end{pspicture}
\end{document}

使用 TikZ

\documentclass[tikz,border=3pt]{standalone}

\begin{document}
\begin{tikzpicture}(4,4)
    \draw[line width=10pt,fill=black] 
        (0,2) -- (4,2)
        (2,0.75) circle (15pt)
        (2,3.25) circle (15pt);
\end{tikzpicture}
\end{document}

各种各样的

如果您需要更漂亮的 div 符号......

在此处输入图片描述

\documentclass[pstricks,border=3pt]{standalone}
\usepackage{graphicx}
\makeatletter
\pstVerb{/ptcm {\pst@number\psunit\space div} bind def}
\makeatother
\SpecialCoor
\begin{document}
\begin{pspicture}(4,4)
\psclip
{
    \pscustom[dimen=middle]
    {
    \psframe[linewidth=10pt](!0 2 5 ptcm sub)(!4 2 5 ptcm add)
    \moveto(!2 15 ptcm add 0.75)
    \pscircle(2,0.75){15pt}
    \moveto(!2 15 ptcm add 3.25)
    \pscircle(2,3.25){15pt}
    }
}
    \rput(2,2){\includegraphics[width=4cm]{example-grid-100x100pt}}
\endpsclip
\end{pspicture}
\end{document}

相关内容