Graphics, Figures & TablesTable: Horizontal character, but vertical text.

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
jonysatie
Posts: 27
Joined: Fri Apr 06, 2007 1:15 am

Table: Horizontal character, but vertical text.

Post by jonysatie »

Hello forum:

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
example.png (2.97 KiB) Viewed 2189 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Table: Horizontal character, but vertical text.

Post by phi »

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}
jonysatie
Posts: 27
Joined: Fri Apr 06, 2007 1:15 am

Re: Table: Horizontal character, but vertical text.

Post by jonysatie »

Thank you very much phi.
The second option was the one I was looking for because the text is written in just one cell.
Post Reply