Graphics, Figures & Tables ⇒ Table: Horizontal character, but vertical text.
Table: Horizontal character, but vertical text.
I need some help. How could I do this table with LaTeX?
Thanks ...
PD: The idea is to put the word HELLO just in one cell.
- Attachments
-
- example.png (2.97 KiB) Viewed 2263 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Table: Horizontal character, but vertical text.
Code: Select all
\begin{tabular}{cc}H&W\\E&O\\L&R\\L&L\\O&D\end{tabular}
% or
\begin{tabular}{*{2}{p{1em}}}\centering H E L L O & \centering W O R L D\end{tabular}
Re: Table: Horizontal character, but vertical text.
The second option was the one I was looking for because the text is written in just one cell.