I've come up with a way of displaying the symbol my lecturer uses for a poset embedding in LaTeX, having not been able to find it as a standard symbol. The method I employed was using a TikZ picture as a new function with the following code
\newcommand{\Sqsubset}{
\kern3pt
\begin{tikzpicture}
\draw (0ex,0ex) -- (0ex,1.3ex);
\draw (0ex,0) -- (1.3ex,0ex);
\draw (0ex,1.3ex) -- (1.3ex,1.3ex);
\draw (0.325ex,0.325ex) -- (1.3ex,0.325ex);
\draw (0.325ex,0.325ex) -- (0.325ex,0.975ex);
\draw (0.325ex,0.975ex) -- (1.3ex,0.975ex);
\end{tikzpicture}
\kern3pt }
I was basically just wondering if there is a way of using this symbol without having to have the compiler draw it from the code every time... perhaps saving it as a glyph?




\documentclassand the appropriate packages so that those trying to help don't have to recreate it.This is especially important for
– Peter Grill Oct 26 '16 at 17:09tikzas there are numerous librariesmathabxpackage so that you can use\sqSubsetin math mode --> a comprehensive LATEX Symbol List – mattdanzi Oct 26 '16 at 17:18