0
votes
1answer
16 views

Support sections on the bookmark in landscape mode

I'm writing a book and I want to put a unnumbered chapter (chapter*), where I will discuss the results and then put the results in tables. These results are divided into three options, so I want to ...
4
votes
1answer
44 views

Tabulary on a rotated page does not use correct \textwidth

I'm trying to have a tabulary-table on a landscape page in a portrait document. Because I want to have the table use the full width, I tried to set it width to \textwidth, but the width of the table ...
0
votes
1answer
60 views

Centering table in landscape page [duplicate]

I'm trying to get a table centered both vertically and horizontally in a landscape page. I've tried some of the solutions proposed around here but I can't get them to work in my specific case. Here ...
0
votes
0answers
63 views

table too large for page [closed]

I've wanted to create a table with 6 columns. Because it is too large to fit on the page, I've tried using the table in landscape mode. However if I translate the code I get following error message: ...
1
vote
0answers
66 views

Wide table spanning multiple pages using longtable and landscape packages

I am using the longtable and landscape package in the hope it would allow my very wide table to be read easily across multiple pages without breaks. However, it only spans one page and any extra ...
3
votes
1answer
63 views

Table width and height woes for multipage landscape table

I'm writing up my thesis and trying to convert a table to LaTeX (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3523805/table/T1/). It's rather large so I'm using the lscape and the longtable library. ...
0
votes
0answers
90 views

Supertable landscape too wide [closed]

I have a complex table with 20 columns or so which is by far too large for a normal environment, so I have put it into a landscape environment. The table is also too long and has to be split over more ...
3
votes
1answer
192 views

Sideways table with rotated header on multiple pages

I am trying to have a sideways table on multiple pages with the header rotated at 90 deg. I have used landscape and longtable for the rotation and multipage span (sidewaystable doesn't work with ...
0
votes
0answers
124 views

Positioning of landscape table [closed]

I will have a full page table like: \begin{landscape} \begin{table} .... \end{table} \begin{longtable} .... \end{longtable} \end{landscape} The problem is that it doesn't behave like a ...
1
vote
1answer
158 views

Suggestions for long and wide table

I want to add a "set" of tables in a document. Something like that I thought of combing somehow supertabular for spliting in pages and landscape in order to rotate it... I don't know how to ...
2
votes
2answers
524 views

Center table on landscape page

I have a rather wide table for which I have a designated page in landscape mode. The rest of the document is in portrait mode. Currently, the first row of the table begins at the very top of the page ...
0
votes
1answer
107 views

landscape with \addtolength messing up location of page number

I want a page number in the normal position but when I combine my methodology of margin stretching with landscape then the page number moves to the right a lot. Note that "TABLE GOES HERE" is ...
4
votes
1answer
316 views

Landscape forces premature pagebreak

After some trouble I have managed to make a table in landscape orientation that breaks over three pages. I used tabularx and the landscape package. Now my problem is that the thing won't float like ...
1
vote
1answer
140 views

Create landscape tables with apa6 document class

How can I create landscape tables with the apa6 document class? The landscape environment seems to be ignored; the table is still upright. I guess the problem is that tables and figures are ...
6
votes
1answer
407 views

How to wrap text around a landscape table over multiple pages? \sidewaystable or \landscape + \longtable

I am trying to create a landscape table that breaks over multiple pages. I have successfully done this with the following: \begin{landscape} \begin{longtabu} to \textwidth{some columns} \caption[my ...
10
votes
1answer
5k views

Change caption font size

I want to change the font size of a single rotated table caption (definitely not all the captions in all my tables/figures) Right now I can wrap the text inside the \caption around a \scriptsize{} ...
5
votes
2answers
473 views

newcolumntype leads to error with afterpage

when I'm defining a new columntype in an afterpage environment, LaTeX fail with an error: Latex Error: ./chapters/chapter3.tex:149 Illegal parameter number in definition of \AP@. When removing the ...
2
votes
1answer
174 views

How can I get two tables side by side in landscape mode?

I'd like to get two tables side by side in landscape mode with an appendix title at the top. Here's what I've been working with: \documentclass{article} \usepackage{pdflscape} \begin{document} ...
2
votes
2answers
690 views

Avoid pagebreak in landscape

I'm using the lscape package to landscape certain pages of the document. These pages basically are a section/subsection heading plus a table that must be landscaped. The problem is that entering ...
1
vote
1answer
637 views

Two landscape tables in columns

I am trying to include two landscape tables on one page, with the first one being in the left column and the other placed in the right one. I have tried several solutions including the minipage ...
3
votes
2answers
2k views

How to put two tables in one landscape page

I have two consecutive tables and since they are wide I want to have them in a landscape page. But it doesn't show both of them in one page. here is the code I'm using: \begin{landscape} ...
3
votes
2answers
1k views

sidewaystable from rotating package cuts off table, even after changing margins

I'm using this code for my table: \begin{sidewaystable} {\small \begin{tabular}{cccccccccccccccccc} \toprule \multicolumn{3}{l}{\texttt{Table 2}} \\ ...
3
votes
2answers
3k views

sidewaystable vs landscape environment (pdflscape-package) for landscape tables spanning double pages

As explained in several other posts, I'm currently trying to create wide tables. The document is in portrait format A4, but the tables shall be typeset in landscape format. As the tables have more ...
5
votes
2answers
2k views

How to make a landscape table fill the whole width?

It seems that neither \textwidth nor \textheight can force the table to fill the whole width. \documentclass[dvips]{book} \usepackage[a4paper,margin=20mm,showframe]{geometry} \usepackage{lscape} ...
8
votes
1answer
5k views

How to rotate landscape table page in PDF?

Currently I am using \usepackage{rotating} \begin{sidewaystable} \begin{tabular}...\end{tabular} \end{sidewaystable} to typeset landscape tables, which works great. But I want to rotate that page ...