使用 TiKZ 可以实现带有文本框的三角形/翻转金字塔吗?

使用 TiKZ 可以实现带有文本框的三角形/翻转金字塔吗?

我需要绘制一个类似于此的图形。我尝试摆弄 tikz 和金字塔形状。当我旋转金字塔时,文本也会旋转。我无法像示例中那样获得文本,我也开始旋转了!请帮帮我!谢谢! 翻转的金字塔图形,带有文字、表格等......

答案1

原则上,无需包裹即可完成此操作。

\documentclass[tikz,border=5mm]{standalone}
\begin{document}
\begin{tikzpicture}[font=\sffamily]
 \draw (0,0) -- (9,4) -- (9,-4) -- cycle;
 \foreach \X in {1,...,5} {
 \draw[dashed] ({9*\X/6},{4*\X/6}) -- ({9*\X/6},{-4*\X/6});
 }
 \draw ({9*(1/2)/6},0) circle (1pt);
 \node[text width={(7/6)*1cm},anchor=west] at ({9*(2/6)/6},0) {text};
 \node[text width={(7/6)*1cm},anchor=west] at ({9*(1+1/6)/6},0) {text text text};
 \node[text width={(7/6)*1cm},anchor=west] at ({9*(2+1/6)/6},0) {text text text};
 \node[text width={(7/6)*1cm},anchor=west] at ({9*(3+1/6)/6},0) {text text text};
 \node[text width={(7/6)*1cm},anchor=west] at ({9*(4+1/6)/6},0) {text text text};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容