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

Locally switching to a different font


A typographically good document with consistent appearance commonly uses just a few fonts, each one with a purpose. Common font choices are:

  • Serif body text

  • Sans serif for headings

  • Monospaced for source code

Each font family is defined in the preamble, usually implicitly done by packages. There are LaTeX commands for switching between families, shapes, and weight. But what if you would like to additionally use a completely different font, such as a second serif font? This recipe will help to achieve that.

How to do it...

We will take a look at two ways:

  • Defining a command

  • Defining an environment

In each case, we need to know the code for the font. Such code is based on the Karl Berry's naming scheme; you can read about it by typing the texdoc fontname command in the Command Prompt, or at http://texdoc.net/pkg/fontname. You don't really need to study this guide, just take a look at the font's own documentation. For your convenience, here is a selection of frequently...