I would like to get the following image.

Is it possible to draw using tikz or pstricks in latex? Please note the text labelling as well.
I got a link in a similar spirit, but could not utilize it to get what I exactly want. :(
Any help?
I would like to get the following image.

Is it possible to draw using tikz or pstricks in latex? Please note the text labelling as well.
I got a link in a similar spirit, but could not utilize it to get what I exactly want. :(
Any help?
\documentclass[tikz, border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}
\begin{scope}[shift={(-2,0,0)}]
\draw[->] (0,0,0)--(1,0,0) node[right]{$x$};
\draw[->] (0,0,0)--(0,1,0) node[above]{$z$};
\draw[->] (0,0,0)--(0,0,1) node[below left]{$y$};
\end{scope}
\foreach \i in {1,...,5}{
\draw[fill=yellow!80!black] (0,\i,0) -- (4,\i,0)--(4,\i,2)--(0,\i,2)--cycle;
\node[right] at (4,\i,0) {$Z_\i$};
}
\end{tikzpicture}
\end{document}

Update:
\documentclass[tikz, border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}[scale=2]
\begin{scope}[shift={(-2,0,0)}]
\draw[->] (0,0,0)--(1,0,0) node[right]{$x$};
\draw[->] (0,0,0)--(0,1,0) node[above]{$z$};
\draw[->] (0,0,0)--(0,0,1) node[below left]{$y$};
\end{scope}
\foreach \i in {1,...,5}{
\draw[fill=yellow!80!black] (0,\i,0) -- (4,\i,0)--(4,\i,2)--(0,\i,2)--cycle;
\node[right] at (4,\i,0) {$Z_\i$};
}
\draw[<->] (0,3,2) -- (0,4,2) node[midway,left]{$d$};
\end{tikzpicture}
\end{document}

d beside it to denote the distance between two plates? Also how can I increase the size of the whole image in my tex?
– hbaromega
May 01 '15 at 10:38