How do we write this title vertically in TikZ - similar to vertical text (not in table)?:
T
T I
H T
I I M L
S S Y E
How do we write this title vertically in TikZ - similar to vertical text (not in table)?:
T
T I
H T
I I M L
S S Y E
All credits goes to David Carlisle and Torbjørn T.
\documentclass{article}
\usepackage{tikz}
\makeatletter
\protected\def\vvv#1{\leavevmode\bgroup\vbox\bgroup\xvvv#1\relax}
\def\xvvv{\afterassignment\xxvvv\let\tmp= }
\def\xxvvv{%
\ifx\tmp\@sptoken\egroup\ \vbox\bgroup\let\next\xvvv
\else\ifx\tmp\relax\egroup\egroup\let\next\relax
\else
%\hbox{\tmp}%original
\hbox to 1.1em{\hfill\tmp\hfill}% centred
\let\next\xvvv\fi\fi
\next}
\makeatother
\begin{document}
\begin{tikzpicture}
\node at (0,0) {\vvv{THIS IS MY TITLE}};
\end{tikzpicture}
\end{document}

\node. – Torbjørn T. Apr 15 '14 at 19:47