I need a character in plain TeX that combines a plus with a quadrilateral whose corners are the four endpoints of the plus. Is there a way to create such a thing?
I apologize for editing the question; I could not figure out how to enter an answer. I was able to construct the character using gpic, put the resulting specials in a box, and define \gjoin to copy from that box. I will use this character in the third edition of my graph theory textbook to denote the join of two graphs, for a variety of reasons. I believe it is a useful and natural character.
The suggested overstrike using \ooalign did not do the job for me. Drawing the character as lines that join four specified points should avoid spacing difficulties due to overstrikes.
Here is the answer I found:
\expandafter\ifx\csname dplus\endcsname\relax \csname newbox\endcsname\dplus\fi
\expandafter\ifx\csname dplustemp\endcsname\relax
\csname newdimen\endcsname\dplustemp\fi
\setbox\dplus=\vtop{\vskip -7pt\hbox{%
\kern .021in%
\special{pn 11}%
\special{pa 0 50}%
\special{pa 50 100}%
\special{fp}%
\special{pa 50 100}%
\special{pa 100 50}%
\special{fp}%
\special{pa 100 50}%
\special{pa 50 0}%
\special{fp}%
\special{pa 50 100}%
\special{pa 50 0}%
\special{fp}%
\special{pa 50 0}%
\special{pa 0 50}%
\special{fp}%
\special{pa 0 50}%
\special{pa 100 50}%
\special{fp}%
\hbox{\vrule depth0.100in width0pt height 0pt}%
\kern 0.110in
}%
}%
\def\gjoin{\copy\dplus}
$G\gjoin H$ and $G_1\gjoin G_2$



tech-support@ams.org. – barbara beeton Feb 10 '12 at 13:46