Is there any way to write words the same as TeX/LaTeX logo typography?
Just create and define your personal name/logo and put it in your pre-amble.
Here's \BibTex, for example:
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
I don't see why there would ever be a package specifically designed for the words or names you need.
For standard logos where there are characters raise or lowered, with kerns inserted between items, you can do as follows:
\documentclass{article}
\usepackage{xparse}
\usepackage{lmodern}
\ExplSyntaxOn
\NewDocumentCommand{\definelogo}{mmmmO{}}
{
% #1 = command name
% #2 = comma separated list of items
% #3 = comma separated list of raising amounts
% #4 = comma separated list of kerns
% #5 = initial declaration
\ee_definelogo:Nnnnn #1 {#2} {#3} {#4} {#5}
}
\cs_new_protected:Nn \ee_definelogo:Nnnnn
{
\tl_clear:N \l__ee_definelogo_body_tl
\int_step_inline:nn { \clist_count:n { #2 } - 1 }
{
\tl_put_right:Nx \l__ee_definelogo_body_tl
{
\dim_compare:nTF { \clist_item:nn { #3 } { ##1 } = 0pt }
{
\clist_item:nn { #2 } { ##1 }
}
{
\exp_not:N \raisebox{ \clist_item:nn { #3 } { ##1 } } { \clist_item:nn { #2 } { ##1 } }
}
\kern \clist_item:nn { #4 } { ##1 }
}
}
\tl_put_right:Nx \l__ee_definelogo_body_tl
{
\exp_not:N \raisebox{ \clist_item:nn { #3 } { -1 } } { \clist_item:nn { #2 } { -1 } }
}
\cs_new_protected:Npx #1
{
\exp_not:N \mbox
{
\exp_not:n { #5 }
\exp_not:V \l__ee_definelogo_body_tl
\exp_not:N \@
}
}
}
\ExplSyntaxOff
\definelogo{\BibTeX}{
B,\textsc{i},\textsc{b},\TeX
}{
0pt,0pt,0pt,0pt
}{
-0.05em,-0.025em,-0.08em
}[\normalfont]
\definelogo{\ee}{
E,N,THUSIASTIC,~,E,N,GINEER
}{
0pt,-0.475ex,0pt,0pt,0pt,-0.475ex,0pt
}{
-0.1em,-0.08em,0pt,0pt,-0.1em,-0.125em
}
\begin{document}
\BibTeX
\ee
\end{document}
Just for fun, how about something like METAFONT
, METAPOST
:
\documentclass{article}
\usepackage{fetamont}
\begin{document}
% Like a METAFONT
\textffm{ENTHUSIASTIC ENGINEER}\par
% Other
\textffm{Enthusiastic Engineer}\par
% A variant
\textffmw{ENTHUSIASTIC ENGINEER} \par
% MIx
\textffm{Enthusiastic} \textffmw{Engineer} \par
\end{document}