I am thinking about, typesetting my name and family name in my documents similar to the way TeX/LaTeX logos are typeset (not exactly, but having it a little changed), I mean having a function like \logotype{enthusiastic student} and have it appeared on my documents the way latex logo appears by coding \LaTeX.
I have not found such package or feature, if really a package is needed; and I do not know whether simpler solutions exist. I prepared a MWE using tikz package, however, using this package is not the thing I want since it is not so convenient for me to use between the normal text, etc.
% pdfLaTeX
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw node () at (0,0) {E};
\draw node () at (1.43,0) {THUSIASTIC};
\draw node () at (0.22,-0.11) {N};
\end{tikzpicture}
%
\begin{tikzpicture}
\draw node () at (0,0) {E};
\draw node () at (0.53,0) {GI};
\draw node () at (1.275,0) {EER};
\draw node () at (0.22,-0.11) {N};
\draw node () at (0.82,-0.11) {N};
\end{tikzpicture}
\end{document}



XeTeX:) – Pablo González L Dec 09 '19 at 14:41