I would like to create a logo in LaTeX. Here I need to adjust two words relative to each other by a chosen letter.
Here is an example, where I'd like to get the two red characters exact among the other:
\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{
adieresis={ä},
germandbls={ß},
Euro={€},
}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node at (0, 0) [above] {Irg\textcolor{red}{e}ndeinWort};
\node at (0, 0) [below] {Hi\textcolor{red}{e}r};
\end{tikzpicture}
\end{document}
Do you have an idea how to do this without guessing the right values? Also it would be fine to have a solution independent from font size changes.
