Housemarks (superimposed & combined letters, heraldry)

You could do this

enter image description here

But the results are at best "variable" it would be better really to forget that they are letters and just draw the paths directly using tikz, otherwise you are always going to get weird artefacts from rotated serifs etc.

\documentclass{article}

\usepackage{graphicx}

\begin{document}


\fbox{\begin{picture}(10,10)
\put(5,5){\makebox(0,0){\scalebox{1.5}[1]{V}}}
\put(5,5){\makebox(0,0){\scalebox{.9}[1]{\itshape R}}}
\end{picture}}
\quad
\fbox{\begin{picture}(10,10)
\put(3,5){\makebox(0,0){A}}
\put(6.5,5.5){\makebox(0,0){\rotatebox{20}{B}}}
\end{picture}}
\quad
\fbox{\begin{picture}(10,10)
\put(2.5,5){\makebox(0,0){I}}
\put(2.5,5){\thicklines\line(1,0){4}}
\put(7,5){\makebox(0,0){S}}
\end{picture}}


\end{document}

This is mostl a comment on David Carlisle's answer, but it is a bit bit long...

If you want to use existing letters for your AB, I would recommend slanting the A instead of rotating the B. This avoids getting rotated serifs and the B looks more natural:

\documentclass{article}
\begin{document}
\leavevmode
\setbox0\hbox{A}%
\pdfsave
\pdfsetmatrix{1 0 0.35 1}%
\box0\expandafter\kern\the\dimexpr-\wd0\relax\relax
\pdfrestore
\kern.43em
B
\end{document}

enter image description here