I am mimicking a crystal lattice as follows:
The structure is created with nodes joined by edges but the outer nodes are connected with semi-transparent planer face as clearly shown here:
Now, I am using same code as published in this reference. But how can I connect three outer atoms with semi-transparent plane?
Minimal Example:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{positioning,calc,3d}
\begin{document}
\begin{tikzpicture}[scale = 1]
%points on cube
\coordinate (B) at (0,0,4);
%center of faces
\coordinate (I) at (0,2,2); %center of face ABCD
\coordinate (L) at (2,0,2); %center of face ABFE
\coordinate (M) at (2,2,4); %center of face CBGF
%connector
\coordinate (O) at (1,1,3);
\coordinate (P) at (1,3,1);
\coordinate (Q) at (3,1,1);
\coordinate (R) at (3,3,3);
%place non-atom cube corners
\shadedraw [ball color= black] (B) circle (0.25cm);
%draw the center of each face
\shadedraw [ball color= red] (I) circle (0.25cm);
\shadedraw [ball color= red] (L) circle (0.25cm);
\shadedraw [ball color= red] (M) circle (0.25cm);
%connectors
\shadedraw [ball color= blue] (O) circle (0.45cm);
%connections from faces to O
\draw [very thick] (B) -- (O);
\draw [very thick] (I) -- (O);
\draw [very thick] (M) -- (O);
\draw [very thick] (L) -- (O);
\end{tikzpicture}
\end{document}


\documentclassis still missing. – Henri Menke Feb 12 '22 at 21:37