Book Image

LaTeX Cookbook

By : Stefan Kottwitz
Book Image

LaTeX Cookbook

By: Stefan Kottwitz

Overview of this book

LaTeX is a high-quality typesetting software and is very popular, especially among scientists. Its programming language gives you full control over every aspect of your documents, no matter how complex they are. LaTeX's huge amount of customizable templates and supporting packages cover most aspects of writing with embedded typographic expertise. With this book you will learn to leverage the capabilities of the latest document classes and explore the functionalities of the newest packages. The book starts with examples of common document types. It provides you with samples for tuning text design, using fonts, embedding images, and creating legible tables. Common document parts such as the bibliography, glossary, and index are covered, with LaTeX's modern approach.You will learn how to create excellent graphics directly within LaTeX, including diagrams and plots quickly and easily. Finally, you will discover how to use the new engines XeTeX and LuaTeX for advanced programming and calculating with LaTeX. The example-driven approach of this book is sure to increase your productivity.
Table of Contents (19 chapters)
LaTeX Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Removing white margins


To reuse the PDF output of your LaTeX document in another document, in an e-book, or on a website, it's usually a good idea to remove the margins, or at least to make them smaller.

Getting ready

For this recipe, you need to have the following things installed:

  • The PostScript interpreter software—Ghostscript

  • The programming language—Perl

  • The pdfcrop script

Fortunately, TeX Live installs internal versions of Ghostscript and Perl by default, and offers the pdfcrop script as a package; so, TeX Live users are lucky. If you don't use TeX Live, you may need to install the software. You can find more information at http://www.ghostscript.com, http://www.perl.org and http://ctan.org/pkg/pdfcrop.

How to do it...

The procedure is pretty easy, given that Command Prompt won't be an obstacle for you. We use LaTeX, so this won't be a challenge. Follow these steps for removing the white margins:

  1. Open Command Prompt.

    • On Linux or Unix, open a shell

    • On Ubuntu, Linux, and Mac OS X, the shell...