适合 pstPlanePut 的物体吗?

适合 pstPlanePut 的物体吗?

我想在三维空间中旋转线条和文本。

\documentclass{article}
\pagestyle{empty}
\usepackage{pst-3dplot}
\begin{document}
\pstPlanePut[plane=yz](0,0,0){ASDF

FDSA}
\end{document}

导致乳胶抱怨:

Runaway argument?
{ASDF
! Paragraph ended before \pst@PlanePut was complete.
<to be read again>
                   \par

没有该段落,就没有错误。

\documentclass{article}
\pagestyle{empty}
\usepackage{pst-3dplot}
\begin{document}
\pstPlanePut[plane=yz](0,0,0){ASDF FDSA}
\end{document}

我不清楚 pscustom 的限制,这是我的第一个想法。但是,我在 pscustom 或 psframebox 中包装段落时遇到了同样的错误。

有没有办法创建一个适合 pstPlanePut 参数的图形对象?

答案1

当您将内容装箱时,就可以了。因此,我建议使用类似tabular(或类似,,,\parbox... \minipage)的方法:

在此处输入图片描述

\documentclass{article}
\pagestyle{empty}
\usepackage{pst-3dplot}
\begin{document}
\pstPlanePut[plane=yz](0,0,0){\begin{tabular}{l} ASDF \\ FDSA \end{tabular}}
\end{document}

根据您所追求的目标,您可能需要摆弄盒子的锚点。

相关内容