答案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}