This question is an extension of the earlier post Best Way to Produce This Chapter Divider Image
Consider the code:
\documentclass{book}
\usepackage{stackengine}
\usepackage{graphicx}
\def\asterisks{\par\vspace{1.6em}{\centering\scalebox{1.5}{%
\stackon[-0.15pt]{\bfseries*~*~*}{\bfseries*}}\par}\vspace{.5em}\par}
\begin{document} \vspace*{35pt}
\thispagestyle{empty}
\LARGE
\asterisks
\end{document}
which produces the stack:
Now, suppose that I would like to add a single asterisk directly underneath the row containing three asterisks.
According to the documentation for stackon and stackunder,
And so, I figured that I could treat the asterisk that I want to add as the anchor, upon which the other two rows of asterisks would rest atop, as such:
\def\asterisks{\par\vspace{1.6em}{\centering\scalebox{1.5}{%
\stackon[-0.15pt]{\bfseries*}{\bfseries*~*~*}{\bfseries*}}\par}\vspace{.5em}\par}
but alas,
when I run this, I get
My interpretation of the documentation is obviously incorrect.
QUESTION: Could someone point out the error of my reasoning and indicate how I may produce (i) a three-tiered asterisk stack with the top row containing one asterisk, the row beneath it---three asterisks, and the row beneath it---one asterisk; and, (2) From there, how I may add another tier on the bottom containing a single asterisk, thereby producing a four-tiered image of a cross. (From there, I probably will be able to generalize the process.)
Thank you.





Stackenginepackage so that I may be able to produce a reasonable depiction say, of the Southern Cross constellation. But for now, I need to get better at stacking asterisks that are equidistant in a given row or column. Thanks again. – DDS Jan 23 '22 at 00:04