这pspicture
来自代码
\documentclass[12pt]{book}
\textheight=8.75in
\usepackage{xcolor,pstricks}
\begin{document}
\thispagestyle{empty}
\begin{pspicture}(-4,-4)(4,8)%
\psframe[fillcolor=blue,fillstyle=solid](-4,-4)(4,8)
%\rput(-4,0){}
\end{pspicture}%
\end{document}
我想在这个图片中添加一个(黄色)等腰梯形,其较长的底边(8 个单位)沿着矩形底部的整个宽度,较短的底边正好是 6 个单位长。梯形的高度为 3 个单位。换句话说,我想在 内绘制pspicture
一个梯形,其顶点为 (-4,-4)、(-3, -1)、(3,-1) 和 (4,-4),并用黄色填充。我该怎么做?是tikz
必需的吗?
答案1
使用以下命令非常简单\pspolygon*
:
\documentclass[12pt]{book}
\textheight=8.75in
\usepackage{xcolor,pstricks}
\begin{document}
\thispagestyle{empty}
\psset{linejoin=1}
\begin{pspicture}(-4,-4)(4,8)%
\psframe[fillcolor=blue,fillstyle=solid](-4,-4)(4,8)
\pspolygon*[linecolor=yellow](-4,-4)(-3,-1)(3,-1)(4,-4)
\end{pspicture}%
\end{document}