Please consider the following configuration of vectors.
\begin{tikzpicture}
\draw[thick,->] (0,0,0) -- (3,0,0) node[anchor=north east]{$\varepsilon_1$};
\draw[thick,->] (0,0,0) -- (0,3,0) node[anchor=north west]{$\varepsilon_2$};
\draw[thick,->] (0,0,0) -- (0,0,3) node[anchor=south east]{$\tilde{\beta}_3=\varepsilon_3$};
\draw[thick,->] (0,0,0) -- (3,-3,0) node[anchor=east]{$\tilde{\beta}_1$};
\draw[thick,->] (0,0,0) -- (0,3,-3) node[anchor=north west]{$\tilde{\beta}_2$};
\draw[thick,->] (0,0,0) -- (0,-3,-3) node[anchor=east]{$\beta_2$};
\draw[thick,->] (0,0,0) -- (1,2,1) node[anchor=north west]{$\beta_1$};
\end{tikzpicture}
- I want to add the plane spanned by
\beta_1and\beta_2and label it with a math variable. - I would like to make the picture appear more three dimensional, e.g. by shaded color of the plane or by dashed lines depending on wether something is in front of or behind the plane.
- I don't want the boundary of the plane be drawn but just the inside in color. This command does not work
\filldraw[fill=blue!20] (0,-3,-3) -- (1,-1,-2) -- (1,2,1) --- (0,0,0);but it gives an error.
I am currently experimenting with tikz. It might not be possible to make this specific configuration "good looking". The question is therefore not very specific.
I thank you for your help!
How far I got...


tikz-3dplotpackage and the3dlibrary. – Oct 08 '18 at 13:39