因为我的示例\pscirclebox
没有正确对齐,并且带圆圈的物体太高了。请参阅 MWE:
\documentclass{minimal}
\usepackage{pstricks,auto-pst-pdf}
\begin{document}
$$a\pscirclebox{=}b$$
a\pscirclebox{=}b
\end{document}
有治愈方法吗?
答案1
auto-pst-pdf
寻找 pspicture 环境来正确裁剪所创建的图像,该环境具有总是没有深度。使用xelatex
withoutauto-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}