Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a report in LaTeX which invole a few tables. I'm stuck on that as my cell data in the table is exceeding the width of the page. Can I some how wrap the text so that it falls in to the next line in the same cell of the table?

Is it some how related to the table's width but as its over shooting the page's width it won't make a difference, isn't it?

cheers

share|improve this question

3 Answers

up vote 75 down vote accepted

Use p{width} for your column specifiers instead of l/r/c.

\begin{tabular}{|p{1cm}|p{3cm}|}
  This text will be wrapped & Some more text \\
\end{tabular}
share|improve this answer
4  
Good solution, but lose the '|' if you don't want a border around the table. It would then become \begin{tabular}{p{1cm}p{3cm}} – Andrejas Jan 5 '12 at 9:34
2  
Is there any way to do this while still specifying alignment in each cell? – dylanlknowles Apr 30 at 18:40

With the regular tabular environment, you want to use the p{width} column type, as marcog indicates. But that forces you to give explicit widths.

Another solution is the tabularx environment:

\usepackage{tabularx}
...
\begin{tabularx}{\linewidth}{ r X }
    right-aligned foo & long long line of blah blah that will wrap when the table fills the column width\\
\end{tabularx}


All X columns get the same width. You can influence this by setting \hsize in the format declaration:

>{\setlength\hsize{.5\hsize}} X >{\setlength\hsize{1.5\hsize}} X

but then all the factors have to sum up to 1, I suppose (I took this from the LaTeX companion). There is also the package tabulary which will adjust column widths to balance row heights. For the details, you can get the documentation for each package with texdoc tabulary (in TeXlive).

share|improve this answer
Interesting, that looks really useful. How intelligent is it when it comes to selecting column widths? For example, if you have two columns that need to be wrapped but one with much longer text than the other, does it still asign them equal width? – marcog Apr 26 '09 at 14:49
I edited my answer. But actually in practice I try simplify my tables so that I only need X for a single column. I just discovered tabulary :) – Damien Pollet Apr 26 '09 at 15:13

Another option is to insert a minipage in each cell where text wrapping is desired, e.g.:

\begin{table}[H]
\begin{tabular}{l}
\begin{minipage}[t]{0.8\columnwidth}%
a very long line a very long line a very long line a very long line
a very long line a very long line a very long line a very long line
a very long line a very long line a very long line %
\end{minipage}\tabularnewline
\end{tabular}
\end{table}
share|improve this answer
Thanks, this allowed me to place itemize lists in my cells. – Quentin Pradet Dec 4 '11 at 9:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.