Friday, March 20, 2020

Setting Paper Size in a LaTeX Document

Setting Paper Size in a LaTeX Document Setting Paper Size in a LaTeX Document When creating a LaTeX document, you need to set a document class. Each class in LaTeX, such as â€Å"article† or â€Å"report,† has a default setting for its paper size. And if you need to change this, you will need to use the document class options. Let’s take a look at how this works. Setting Document Class Options First, let’s look at how to set document class options in LaTeX. To begin with, you need to set the document class with the following tag: By itself, this will create a document using the default settings for that class. To adjust these settings, you will need extra markup in square brackets: Your choices here will then be applied to the whole document. As shown above, you can also change multiple document elements by adding a comma between each option. And one thing you can change here is the paper size. Setting the Paper Size in LaTeX Depending on the distribution you’re using, the default paper size for most LaTeX templates will be either letter paper (US) or A4 (Europe). This should be fine in most cases, but you can also specify a paper size when you set the document class. For example, to use A5-size pages, we would write: All versions of LaTeX offer several options here as standard: A4 paper [a4paper] A5 paper [a5paper] B5 paper [b5paper] Letter paper [letterpaper] Executive paper [executivepaper] Legal paper [legalpaper] To use any of these paper sizes, simply add the required markup (as shown in square brackets) when you set the document class. These settings should cover most situations. But if you need more control over page size, you can download the LaTeX geometry package. Other Paper Sizes and the Geometry Package The geometry package offers a range of extra ways to customize your global page options in LaTeX, including other paper sizes. To use these, you will need a new line of markup after the \documentclass line: Here, for instance, the second line tells the geometry package to set the paper size to A1. You can do this for most standard paper sizes, including A, B and C series paper sizes (e.g., A1, B4, C5); and ANSI paper sizes. So no matter what kind of document you’re creating, you should find a setting in the geometry package that will meet your needs.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.