[Tex/LaTex] How to write the name, for example, to look like the \LaTeX logo

fontsfunlogos

How could I write my name, for example, in a \LaTeX style? It is just interesting, as in Google all other things pop up when I try to search for an answer!

Best Answer

this requires xelatex

enter image description here

\documentclass{article}
\XeTeXinterchartokenstate = 1
\XeTeXcharclass`L=4
\XeTeXcharclass`A=4
\XeTeXcharclass`T=4
\XeTeXcharclass`E=4
\XeTeXcharclass`X=4
\XeTeXinterchartoks 255 4{\z}
\def\z#1{{\XeTeXinterchartokenstate = 0\lowercase{\,#1}}}

\lccode`L=`D
\lccode`T=`V
\lccode`E=`I
\lccode`X=`D


\begin{document}

\LaTeX

\end{document}
Related Question