\pscirclebox 未对齐

\pscirclebox 未对齐

因为我的示例\pscirclebox没有正确对齐,并且带圆圈的物体太高了。请参阅 MWE:

\documentclass{minimal}
\usepackage{pstricks,auto-pst-pdf}

\begin{document}

$$a\pscirclebox{=}b$$

a\pscirclebox{=}b

\end{document}

有治愈方法吗?

答案1

auto-pst-pdf寻找 pspicture 环境来正确裁剪所创建的图像,该环境具有总是没有深度。使用xelatexwithoutauto-pst-pdf或告诉auto-pst-pdf有一些 PostScript 内容:

\documentclass{minimal}
\usepackage{pstricks,auto-pst-pdf}
\newcommand\kreisel[1]{\pscirclebox{#1}}
\newcommand\ps[1]{\begin{postscript}$#1$\end{postscript}}

\begin{document}
    \[
    \begin{postscript}$a\pscirclebox{=}b$\end{postscript}
    \]

    \centering
    \begin{postscript}
        a\pscirclebox{=}b   
    \end{postscript}

\ps{y=a+b\kreisel{x^2}}

\end{document}

在此处输入图片描述

相关内容