我真的很想拥有这样的身材:
但我得到的只有这一个:
为什么我的不透明度不起作用?有了包含所有坐标的 TEX 文件,您知道有什么方法可以很好地绘制这些 2D 函数随时间的变化吗?
这是我的 TEX 代码。
\begin{document}
\begin{tikzpicture}
\pgfplotstableread{
plot1 plot2 plot3 plot4 plot5
0 0 0 0 0
0.348081 0.187042 0.0673327 0.0784015 0.0455678
0.165143 0 0.0664995 0.0685961 0.0375407
0.17641 0.0781801 0 0 0
0.183147 0.421627 0.471163 0.367463 0.268439
0.106028 0.145975 0.185666 0.240872 0.357571
0.0164603 0.107278 0.114965 0.130172 0.170262
0.00473057 0.0598978 0.0943741 0.114495 0.120619
0 0 0 0 0
}\dummydata
\begin{axis}[
samples=30,
domain=0:1,
samples y=0, ytick={1,...,5},
zmin=0,
area plot/.style={
fill opacity=0.2,
draw=none,
fill=blue!70,
mark=none,
smooth
}
]
\pgfplotsinvokeforeach{5,4,3,...,1}{
\addplot3 [area plot] table [x expr=\coordindex, y expr=#1,
z=plot#1]
{\dummydata};
}
\end{axis}
\end{tikzpicture}
\end{document}
答案1
我正在使用 TeXLive 2016,我认为我的代码完全实现了你想要的不透明度:
\documentclass{memoir}
\usepackage{tikz,pgfplotstable}
\begin{document}
\begin{tikzpicture}
\pgfplotstableread{
plot1 plot2 plot3 plot4 plot5
0 0 0 0 0
0.348081 0.187042 0.0673327 0.0784015 0.0455678
0.165143 0 0.0664995 0.0685961 0.0375407
0.17641 0.0781801 0 0 0
0.183147 0.421627 0.471163 0.367463 0.268439
0.106028 0.145975 0.185666 0.240872 0.357571
0.0164603 0.107278 0.114965 0.130172 0.170262
0.00473057 0.0598978 0.0943741 0.114495 0.120619
0 0 0 0 0
}\dummydata
\begin{axis}[
samples=30,
domain=0:1,
samples y=0,
ytick={1,...,5},
zmin=0,
area plot/.style={
fill opacity=0.2,
draw=none,
% densely dashed, very thin,% I would consider this line or a similar line instad of draw=none
fill=blue!70,
mark=none,
smooth
}
]
\pgfplotsinvokeforeach{5,4,3,...,1}{
\addplot3 [area plot] table [x expr=\coordindex, y expr=#1, z=plot#1]{\dummydata};
}
\end{axis}
\end{tikzpicture}
\end{document}
这适用于 pdfLaTeX 和 LuaLaTeX。请考虑添加完整的 MWE 和\documentclass
所有包必要时,参见什么才是优秀的 MWE?。
作为阿尔彭瓦瑟注意到,透明度对于一些观众来说可能是一个问题,见https://en.wikipedia.org/wiki/Portable_Document_Format#Transparency。
帖子在三维图形中绘制多个二维函数看起来相关。