改变 tikzpicture 的形状

改变 tikzpicture 的形状

我正在使用 XeLaTeX 和 TikZ 制作一顶派对帽。显然,要做到这一点,形状tikzpicture必须是三角形。我该如何做到这一点?而且,为了通用性,如何对任何形状都做到这一点?

编辑:我正在使用standalone文档,因此:

\documenclass[tikz]{standalone}
% blah blah blah preamble
\begin{document}

\begin{tikzpicture}
% some drawing here
% somehow we have to ensure that all the drawing
% only happens within a specified part
% if anything that comes outide the path is drawn
% it doesn't show up in the picture
\end{tikzpicture}

\end{document}

答案1

你描述的是一条\clip路径。如果你tikzpicture以例如

\clip (0,0) rectangle (3,3);

如果超出该矩形,后面的内容将被剪掉。我认为您可以制作任何类型的路径,因此上面评论中的示例也适用,即

\clip (0,0) -- (2,0) -- (1,2) -- cycle;

也就是说,最终的 PDF 仍然是矩形,这是无法避免的。

相关内容