1
vote
1answer
28 views

How to put captions below tables residing in multiple columns

I made the following document, consisting of 2 tables in 2 columns: Code: \documentclass{article} \usepackage[a5paper]{geometry} ...
3
votes
1answer
55 views

How can I stop content overlapping my footer?

I am trying to use LaTeX to generate PDF versions of cheat sheets people build on my website. They are all three column documents, effectively each containing multiple tables. For the most part, ...
4
votes
1answer
91 views

8 column table with lstinputlisting in LaTeX

I'd like to create a multicolumn table (up to 8 columns) to insert my code via \lstinputlisting{source.c}. But it seems to me that more then 6 columns aren't possibile even tough space is available. ...
7
votes
1answer
133 views

Footnotes in tabular environments within multicols

I'm running into a strange inconsistency when I use footnotes in and out of tabular environments within multicols. In particular, I'm declaring a savenotes environment in a style file as follows: ...
1
vote
1answer
44 views

Creation of Column

I am making a table of made up of two columns, but the problem is that in the last row I have multiple column with in a single row, I don't know how to do this. I applied \multicolumn but it did not ...
0
votes
1answer
73 views

Multiple Column Height

I need to put three lists of data into three columns. After putting the first set of data this happened: But I need all the data to be in the FIRST column only, the next sets of data will go in ...
5
votes
1answer
117 views

Alignment at the center of two multicolumn

I would center 10e-1 and 10e-3 at the center of the 4 multicolumn. How can I do? \usepackage{siunitx} \usepackage{multirow} \usepackage{booktabs} \begin{table}[htp] \centering ...
3
votes
1answer
180 views

Automatic break line after multicolumn

Is there a way to put \\ after multicolumn automatically, each time it appears in the code? Pseudocode would look like this: \newcommand{\commandThatAddsBreaklines} if(thereIsAMulticolumn == true) ...
0
votes
1answer
103 views

Manipulating table and multicols

I am trying to make a template for my master's homework. This master is organised by a university and a research center. So I thought of having on top of page(left and right) their logos. Bellow those ...
3
votes
2answers
1k views

Table rowspan and colspan

I need to create similar table using LaTeX: I have tried to use \tabular and \multicolumn, but every time I get something wrong. I want: Fixed width columns and fixed height rows; Centered cells ...
5
votes
1answer
760 views

“! Misplaced \omit” error

The code below describes a table that goes like: |_|x x|x x| |x|x|x|x|x| |x|x|x|x|x| where |_| = empty cell, |x x| = multicolumn{2}, |x| = cell with text in it. \begin{tabular}{c|c|c|c|c|} ...
5
votes
1answer
101 views

Text wrap in multicols

The following LaTex code (credit) features a table within muticols: \usepackage{multicol} ... \begin{multicols}{3} \subsubsection{Another Subsubsection} Lorem ipsum dolor sit amet, consectetur ...
2
votes
2answers
545 views

How can I use the full page width (\textwidth) while importing a table with \includegraphics?

I'm in a 2-column environment. I need to use the entire pagewidth (\textwidth) while importing a table with \includegraphics. \begin{table} \centering \includegraphics[width=\textwidth]{./myfile.pdf} ...
0
votes
1answer
270 views

Multicol alternative

This post is a follow up to this post: multiple pairs of columns which was about generating columns of name/value pairs. There are sample outputs there. I now have several solutions and am at the ...
8
votes
2answers
201 views

Making an odd shaped table

I'm trying to make a table that looks like this: +--------------+ | Class 1 | +--------------+ | A | B | ...
2
votes
1answer
927 views

How to use multirow inside a multicolumn with p attribute?

Is it possible to use the p attribute in a multicol, with a multirow embedded? A previous post doesn't provide a useful answer, since it only works with attributes other than p. It is exactly my ...
0
votes
1answer
318 views

How to make table with divided column [duplicate]

Possible Duplicate: How to merge columns in a table? How can I make a table of the type above? I am writing a seminar report using the report class.
2
votes
1answer
944 views

Problem with multirow and table cell borders

I'm pulling my hair with the rendering of table cell borders when using multirow and multicol. In the below example, the double-lines in the table's "header" do not extend to the table top, and even ...
1
vote
1answer
289 views

What goes wrong with combining multicolumn and tabular

When I try the following code I get some errors about misplaced \noalign, however I almost entirely copied the code from the wikipage. What is going wrong? \begin{table}[hbt] \centering ...
7
votes
2answers
1k views

Balancing long table inside multicol in LaTeX

I would like to put some longer tabular data inside the multicols environment while maintaining its balancing abilities. I have tried supertabular with the trick to redefine \newpage as columnbreak. ...
1
vote
2answers
629 views

Setting tabular width

I'm using a tabular within multicols and would like to make a table extend its second column right to the edge of the column within multicols, so the column is pushed over but the text is still left ...
5
votes
1answer
224 views

Tables header row's: how to ignore the column type?

I have several column types defined using the array and collcell package. An example \newcolumntype{N}{>{\collectcell\num}c<{\endcollectcell}} This alleviates making tables a lot, and makes ...
3
votes
1answer
286 views

Subtable inside a table / Adjusting table column width on the fly

I've been fiddling with the following table for a while, and have some minor issues. \documentclass{article} \usepackage{threeparttable} \usepackage{multirow} \begin{document} \begin{table}[!ht] ...
3
votes
1answer
273 views

How to wrap text in a cell (without any explicit lengths)

I'm hoping to wrap text in a single "mega-cell" at the end of a table. ---------------------- | header1 | header 2 | ---------------------- | entry1 | entry 2 | ---------------------- | ...
4
votes
1answer
219 views

How do I create the headings for this multirow multicolum table?

I wish to create a table that looks like the following: +-------++--------------------------++--------------------------+ | || Category A || Category B | | Title ...
1
vote
1answer
391 views

ltablex - Multi-column problem

I have a problem using a multicolumn command in an ltablex environment. When I insert a large amount of text into a multicolumn command the text (and the table) run off of the side of the page. I've ...
1
vote
1answer
839 views

Centering contents of table cells horizontally and vertically

I'd appreciate help centering the contents of the topmost row vertically and horizontally in their cells(?). I've tried using \multicolumn without luck. \documentclass[10pt,a4paper]{scrreprt} ...
5
votes
1answer
5k views

Making a long table continue over two columns

I am using multicol to make a two-column document using the book document class. I have a long tabular that I want to break where the page breaks and then continue in the next column. I could split ...
3
votes
2answers
2k views

Listing and Tabular in Multicols enviornment

I want to use the multicols environment to display a listing beneath a table: \begin{multicols}{2} \begin{lstlisting}[] ..... \end{lstlisting} \columnbreak \begin{table} \centering ...
3
votes
2answers
888 views

How to put table into multicols

I'm trying to get table formated like this: A desription of A D description of D B long description Eee description of Eee of B F description of F Cccc ...
1
vote
1answer
429 views

Setting table placement as “here” in a multicol environment, spanning 2 columns

I have a problem with table placement. I want the table to be anchored to the position where it occurs in the text (i.e. "here", "h") and the columns should simply wrap around it. The table should ...
26
votes
2answers
3k views

multicolumn long table or enumeration

I would like to generate a multi-column table that wraps within columns of the document, and splits across pages. There are a couple of similar questions here How do I create a really long table in ...