答案1
看看PGF手册,尤其是tape
来自shapes.symbols
图书馆的形状和trapezium
来自shapes.geometric
图书馆的形状。
对于多文档节点,double copy shadow
阴影与选项一起使用fill=white
。double copy shadow
手册中还解释了密钥,并接受任何其他阴影选项。
代码
\documentclass[tikz,border={5pt}]{standalone}
\usetikzlibrary{shapes.symbols,shapes.geometric,shadows}
\tikzset{
multidocument/.style={
shape=tape,
draw,
fill=white,
tape bend top=none,
double copy shadow},
manual input/.style={
shape=trapezium,
draw,
shape border rotate=90,
trapezium left angle=90,
trapezium right angle=80}}
\begin{document}
\begin{tikzpicture}
\node [multidocument] {Multi-document};
\node [manual input] at (0,-1.5) {Manual Input};
\end{tikzpicture}
\end{document}