0
votes
1answer
64 views

Using knitr, how can I rotate page to landscape and fit the figure to full extent?

LaTeX newbie here, so please be gentle. I'm working with knitr to generate pdf report. The document consists of quite few large maps, with a lot of details or small multiples. Ideally, whenever such ...
0
votes
0answers
119 views

Set margins of A3 landscape site with KOMA-Script [closed]

in my A4 document, I inserted few a3 landscape pages for extra large graphics, using the \KOMAOptions-command. Unfortunately, the margins of the resulting A3 page are quite large, and I wonder how to ...
4
votes
2answers
319 views

How can get rid of margins and minimize white space to fully use a page in LaTeX?

I want to create a formulary in LaTeX. I can use it at the exam and it has do be at maximum a page recto-verso. I don't want margins (little margins for the print, no more). I want to minimize the ...
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} ...
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 ...
2
votes
1answer
772 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
885 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 ...
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} ...