I need to make symbols borders tighter and closer to each other.
But I don't want to make symbol smaller or taller with \scalebox{}[].
For example: It must be looking like A, but the next symbol must starts in the middle of A.
I need to make symbols borders tighter and closer to each other.
But I don't want to make symbol smaller or taller with \scalebox{}[].
For example: It must be looking like A, but the next symbol must starts in the middle of A.
Use a box half the width of the character:
\documentclass{article}
\newcommand{\half}[1]{\makebox[.5\width][l]{#1}}
\begin{document}
x\half{A}\half{B}\half{C}
\end{document}
\makebox[0pt][c]{A}
is an A that takes up no space, centred on that zero size box, change the width or alignment to fit your needs.
\widthdoes and how it works? I can't seem to\showit and it's not listed in this command glossary. – wchargin Dec 19 '15 at 16:27\makebox(or\framebox, or\savebox) one can use\width,\heightand\depthin the width optional argument, which refer to the natural width, height or depth of the material. Also\raiseboxcan profit of them:\heightand\depthare for this, of course. – egreg Dec 19 '15 at 16:38