Tagged Questions
9
votes
1answer
6k views
Latex: How to code tables with multi-line cells
I am trying to write a short paper with LaTeX and need to add a table with 3 columns.
+-------------+-----------------+--------------------------------------+
| AAAAAAAAAA | BBBBBBBBBBBBBBB | Betty ...
6
votes
2answers
2k views
Centering Text Horizontally and Vertically in LaTeX
I would like to produce the following:
a b
xxxxx xxxxx
1 xxxxx xxxxx
xxxxx xxxxx
xxxxx xxxxx
2 xxxxx xxxxx
xxxxx xxxxx
Where the blocks of 'x's are ...
5
votes
1answer
2k views
Latex: how to break the line in multirow inside the tabular
I cannot find out how to break the line inside the multirow in tabular. I need to make some table where I have one cell which is two row high, and I have long text in it, but it does not break the ...
5
votes
5answers
2k views
Getting two tables in LaTeX to have the same (right-aligned) column width
I have two very short and consecutive sections (for a CV), each containing a small table:
\section{Work Experience}
\begin{tabular}{r|p{11cm}}
Current & Your job at Your Company, Town \\
Jan ...
3
votes
1answer
8k views
Advanced table in LaTeX with multiline cells
I'm trying to achieve something like this in LaTeX: http://www.imada.sdu.dk/~sorenh07/misc/table-sample.pdf (sample made in OpenOffice.org)
The most important part is the multiline ...
2
votes
2answers
722 views
table, tabular, tabularx vertical alingment, latex
Ok, this sounds so easy, but I've spent hours googling and I just cant find a solution, that isn't to complicated.
I want to create a table that has images and text in it. I want every row of the ...
2
votes
1answer
201 views
How to display my table “outside” an itemize structure so it will be centered in the page?
I have a document with an itemize structure and some table to display inside it. It have 3 subitem and the table is in the third one.
Here is an example:
\documentclass{article}%
...
2
votes
1answer
304 views
LaTeX: vertical alignement in a table containing a listing
In LaTeX, I'm using the listings package to display some code snippet inside a table. But it seems that when using this package, the vertical alignement of the cells is changing.
Here is some code :
...
2
votes
1answer
2k views
How do I make multi-page landscape tables in LaTeX
The title is pretty much the extent of my question. I am trying to insert a large table into a document using the xtabular environment. If I wrap the xtabular environment in a landscape environment, ...
1
vote
1answer
151 views
Using parindent within the longtable environment
Here is a simple test case of the problem I'm having:
\documentclass{article}
\usepackage{longtable}
\begin{document}
\begin{longtable}{p{2in}|p{5in}}
foo & \parindent=1in bar \\
...
1
vote
1answer
707 views
How do you vertically center text with an image in a latex table?
I want to align text with the center of a large image in latex. Unfortunately, the text some text is aligned with the bottom of the image:
\begin{tabular}{cc}
some text & ...
1
vote
1answer
309 views
Latex: tabular* with rubber spacing and cline
I'm using a tabular* with rubber spacing to fill the complete width of the page. This works fine, except that when I use cline, the line is not complete. It seems that cline does not cover the ...
1
vote
2answers
2k views
LaTeX: remove left margin of listing inside a table
Using LaTeX, I need to show some code snippet inside a table. Here is an example of what I'm trying to do:
\begin{document}
Par exemple :
\begin{center}
\begin{tabular}{lp{5cm}l}
\hline
Méthode ...
1
vote
1answer
5k views
LaTeX table too wide. How to make it fit?
I just started to learn latex and now I'm trying to create a table. This is my code:
\begin{table}
\caption{Top Scorers}
\begin{tabular}{ l l }
\hline
\bf Goals & \bf Players\\
\hline
...
1
vote
3answers
275 views
How to align times by their colon in a LaTeX-tabular?
I have a tabular of the times I in LaTeX.
These times are in the form 4:00 or 12:00 and this have different lengths. I would like to vertically align these times by their colon. Is there a nice way ...
1
vote
2answers
712 views
Escaping _ efficiently in Tabular environment, LaTeX
How can you escape underscores only in the tabular environment without the use of \_?
This thread discusses about underscore in general.
I cannot use the environment verbatim nor the package ...
0
votes
1answer
705 views
LaTeX: How to wrap a sideways text in a column (tabular)
Let's say we have a table
\begin{tabular}{|c|c|}
\begin{sideways}A\end{sideways}&\begin{sideways}B\end{sideways}\\
a & b \\
\end{tabular}
How can I define the height of cells A and B, so ...
0
votes
1answer
241 views
Latex: How to cells in tables which wrap, but can still be copied as a single line
I am trying to create a table over inputs to a tool which requires the entire input to be on a single line.
My question is similar to Latex: How to code tables with multi-line cells in that I want ...