{landscape} is one of the two most common types of page orientation, the other one being portrait.
4
votes
1answer
317 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
141 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 ...
4
votes
2answers
481 views
Longtable width exceeds page
I saw these topics and sure they help a lot,
Resize longtable to width of landscape page
How to fit landscape multi-page table to textwidth
But still it does not fix my problem for some reason. I ...
6
votes
1answer
409 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 ...
3
votes
1answer
830 views
Sidewaystable together with longtable?
I've a massive sidewaystable (code below). I've been trying different combinations of longtable, supertabular, lscape, rotating, sidewaystable, table, etc, and I can't get it to be sideways and also ...
3
votes
1answer
225 views
Caption does not appear under a figure
I need to put into my thesis (portrait format) a figure in landscape format. I tried using pdflscape environment but it didn't work for me. Now I am trying to use sidewaysfigure environment. The ...
11
votes
1answer
816 views
Should I prefer {pdflscape} over [pdftex]{lscape}?
I came across a problem with pdflscape and TikZ' external library where externalized tikzpictures in a landscape environment were rotated incorrectly ( Using tikzexternalize with pdflscape results in ...
3
votes
1answer
379 views
KOMA landscape/portrait
Got an problem regarding landscape pages in a portrait report.
The first sheet is according to the koma manual and works fine. The second with the same code won't.
Example:
\documentclass[ 12pt, ...
0
votes
1answer
836 views
Page numbers in landscape
I use report class, and now I need to change page orientation (portrait/lanscape) for some pages in my document. I have tried pdflscape for that, but there is a problem: page numbers preserve original ...
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{} ...
2
votes
2answers
374 views
Add pdf/excel to appendix
I have a large (1 page high, 5 pages wide, in landscape) excel sheet and I want to add it to the appendices of my thesis. Is there a way to convert this to a latex tabular or can I export the excel to ...
5
votes
2answers
476 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
234 views
How can I set a a4 landscape page with crop marks?
I need to set a a4 page in landscape mode with crop marks in every corner of the page. I used the geometry package with the following values,
paperheight=22.76cm,
paperwidth=31.46cm,
a4paper,
...
2
votes
2answers
3k views
Resize longtable to width of landscape page [duplicate]
\documentclass[a4paper,12pt]{article}
\usepackage{longtable}
\usepackage{pdflscape}
\usepackage{graphicx}
\begin{document}
\begin{landscape}
% \resizebox{\textwidth}{!}{ }
...
6
votes
1answer
2k views
How to fit landscape multi-page table to textwidth
\usepackage{longtable}
\begin{landscape}
\begin{table}[!htb]
\centering
\resizebox{\linewidth}{!}{%
\begin{longtable}{|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
% Table here
\end{longtable}%
}%
\end{table}
...
1
vote
1answer
260 views
How can I draw a landscape picture using PSTricks?
I need to draw a figure using PSTricks which is quite a bit wider than than it is long. Is there anyway I can draw a pic like that in a landscape mode?
Right now my pic starts at the top of a regular ...
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}
...
4
votes
2answers
5k views
Landscape figure in LaTeX
I have a figure I'm trying to insert which is in landscape and I'm using the following (snipped) code:
\documentclass[12pt, oneside]{book}
\usepackage{graphicx}
\usepackage{wrapfig}
...
2
votes
2answers
691 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 ...
7
votes
1answer
2k views
Landscape caption for a rotated figure in a portrait page
I've managed to rotate an image 90 degrees to be as if in landscape mode, but I still need to change location and rotation of the caption to match the image's orientation, while keeping the page in ...
2
votes
2answers
333 views
Problem with rotated pages (pdflscape package) and double-sided printing
I am using the pdflscape package to rotate pages with wide tables on them. This works fine, but there is a problem when I print the document in duplex mode.
Its a double-sided document (left and ...
1
vote
0answers
924 views
Landscaped Longtables [closed]
I am currently using the longtable environment, but I would like to change the orientation of the table and make it landscape. Using the lscape environment I am only able to modify the orientation of ...
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
1answer
1k views
Landscape, A3/A4 paper with XeTeX
With pdflatex, it seems easy to get a landscape document, on A3 paper. One only needs to add [landscape,a3paper] or [landscape,a4paper] to the document class options. With xelatex, however, these ...
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}} \\
...
1
vote
1answer
907 views
How to adjust or remove page numbers on a landscape page within a portrait document? [duplicate]
Possible Duplicate:
How to translate and rotate the heading of landscaped pages?
I have a document that is typset in portrait, using the article class, that contains a single landscape page ...
5
votes
1answer
605 views
Landscape forces position of floats
I have a couple of large figures, which I'd like to put on separate pages in landscape mode.
\usepackage{lscape}
...
\begin{landscape}
\begin{figure}[!t]
\centering
...
\end{figure}
...
4
votes
2answers
1k views
How to insert a landscape normal-sized pdf page between beamer slides?
Since I have too large a table to show during a presentation,
I would like to insert a landscape pdf page between slides.
5
votes
1answer
351 views
Paragraph-style footnotes with bigfoot and (pdf)lscape
I'm using the package bigfoot to declare a custom type of footnote: Thanks to the option [para], the footnotes of this new type will be grouped into a single paragraph. This new type of footnote can ...
6
votes
1answer
250 views
Using footmisc's para option in lscape
I'd like to use the para option of the package footmisc to make a compact list of (short) footnotes. This works well for regular pages, but stops working when I switch to landscape mode. Does anyone ...
1
vote
1answer
1k views
Inserting a portrait page into landscape presentation using beamer
I am doing the presentation of my PhD using beamer. I have done the diagram flux of my algorithm and I want to show it in my presentation. The problem that I have is that when I wrote down the diagram ...
16
votes
1answer
995 views
Two-column LaTeX class for a photobook
I am looking for a solution to produce a two-column(ed) LaTeX-based photobook. Text and comments should go on the outer column (in a two-sided document)--something like a wide outer margin. Photos ...
9
votes
2answers
3k views
Vertical centering of figure in landscape environment
I am using the pdflscape package to insert landscape pages in my document. On one of these I would like to have a figure that is vertically centered on the page, but I can't find how to do it.
MWE:
...
2
votes
1answer
776 views
Different paper orientation in a document lyx
I have to change the orientation from portrait to landscape in the middle of a document. Only for 1 until 3 pages after that it have to portrait again.
I use this code in texmaker and running well
...
2
votes
1answer
892 views
Change page margins for one single page inside the document
I am writing a document , A4, using KOMA-Scripts (scrbook) and inside my document i have a Flowchart which doesn't pass in portrait. I used
\KOMAoptions{paper=landscape}
\recalctypearea
...
0
votes
0answers
233 views
landscape page and list of tables [closed]
I have a landscape page in a twosided portrait report. It works fine and the pdf looks ok. The issue pops up at the List of Tables where the landscape page appears to be at page 72 which is correct, ...
3
votes
1answer
744 views
Has a dmath environment (breqn package) a maximum size?
I have the problem, that I need some quite long formulas and therefore I use breqn. Up till now, there was no problem doing so. But now I have a formula that seems to be too long for breqn. I get some ...
2
votes
2answers
1k views
Problems with alignment with landscape table
I'm writing a paper that includes a number of tables. Until now these have been in standard table* format, i.e.
\begin{table*}
\caption{Caption}
\label{label}
\begin{center}
...
0
votes
1answer
304 views
longtable example+error:Package longtable Error: Column widths have changed in table…
I'm trying to use a longtable in landscape. I obtain a compilation error (I use XeLaTex) and I don't know where is the problem.
The code is:
\begin{landscape}
\begin{longtable}{ccccccc}
\caption{My ...
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
1answer
387 views
XeLaTeX forces readers to rotate their heads 90 degrees
My document contains some landscaped pages using lscape package. When I compile the input file using latex-dvips-ps2pdf, the landscaped pages are automatically rotated so readers don't need to rotate ...
11
votes
2answers
3k views
How to place a table on a new page with landscape orientation without clearing the current page?
I'd like to place a table on a new page with landscape orientation. To do so, I use
\usepackage{pdflscape}
...
\pagestyle{empty}
\begin{landscape}
\begin{table}[htbp]
\begin{center}
...
4
votes
1answer
872 views
abstract, tableofcontents and listoffigures in twocolumn, landscape report
\documentclass[a4paper,landscape,twocolumn]{report}
....
\begin{document}
\begin{abstract}
bla bla bla
\end{abstract}
\tableofcontents
\listoffigures
\chapter{Introduction}
....
I get the main ...
1
vote
2answers
793 views
Is there a way to rotate all pages in XeLaTeX?
I known there is a landscape command to set horizontal pages, but this is not I want. My purpose is to typeset vertical CJK with XeLaTeX. The general approach is using \rotatebox{-90} get a vertical ...
5
votes
1answer
333 views
Caption on side of page
I have a image that I want to include in my thesis. It's long, so I have to rotate it, however when I do this the caption remains at the bottom of the page. How can I make the caption go to the side ...
0
votes
0answers
340 views
Rotate one whole page 90degrees in a document including header and footer created with fancyhdr [duplicate]
Possible Duplicate:
How to translate and rotate the heading of landscaped pages?
I have a thesis with header+footer on each page created using the fancyhdr package.
On one page I have an ...
4
votes
3answers
501 views
memoir class - Mixed portrait and landscape pages
Section 4.2.2. in Notes on book design makes a reference to mixed portrait and landscape pages.
I am aware of pdflscape, that allows such a mixing, but as this manual is written by the author of ...
7
votes
1answer
2k views
How to wrap text around landscape page
I have from time to time a landscape page. I would like that text around it just normally flows. So something how figure environment works. So that it is not really important where you exactly define ...
7
votes
1answer
597 views
How to make landscape mode rotate properly in a twoside book?
How can I use pdflscape (or some other?) package in a twoside book so that landscape mode is always rotated so that top of the page points to the middle of the book? By default it seems landscape mode ...