2

I'm trying to write top-down text along side a float. Some thing like this

S
O
M
E
-
T
E
X
T

I could find the \rotatebox and tikz draw along text routines, but they rotate the characters too.

Surya
  • 709

1 Answers1

4

a minimalist solution which requires separate characters with a space

\documentclass{minimal}
\usepackage{tikz}
\usepackage{lipsum}
\begin{document}

\begin{minipage}[t]{1em}
B O N J O U R
~\\
H E L L O
\end{minipage}
\begin{minipage}[t]{0.99\textwidth}
l\lipsum[1]
\end{minipage}
\end{document}

enter image description here

David Carlisle
  • 757,742
rpapa
  • 12,350