The theming system in Asciidoctor PDF is used to control the layout and styling of the PDF file Asciidoctor PDF generates from AsciiDoc. This document describes how the theming system works, how to define a custom theme in YAML, and how to activate the theme when running Asciidoctor PDF.
💡
|
The quickest way to create your own theme is to extend the default theme.
This gives you a set of foundation styles to build on and provides a collection of bundled fonts (which you don’t have to redeclare).
If you want to use your own fonts, you must declare the name and location of each font in the font catalog.
If you want to combine your own fonts with the bundled fonts, you can either extend the font catalog (by setting merge: true ) or redeclare the bundled fonts alongside your own.
|
|
If the theme doesn’t specify any fonts (nor are they being inherited), only the built-in (AFM) fonts provided by the PDF reader will be available. Using AFM fonts can result in missing functionality and warnings. See the Built-In (AFM) Fonts section to learn more about these limitations. |
- Language Overview
- Values
- Fonts
- Keys
- Extends
- Extending the Font Catalog
- Role
- Cover
- Page
- Base
- Vertical Spacing
- Link
- (Inline) Literal
- Heading
- Section
- Title Page
- Prose
- Block
- Caption
- Code
- Callout Numbers
- Button
- Key
- Menu
- Blockquote
- Verse
- Sidebar
- Example
- Admonition
- Image
- SVG
- Lead
- Abstract
- Thematic Break
- Description List
- Outline List
- Unordered List
- Table
- Footnotes
- Table of Contents (TOC)
- Running Content (Header & Footer)
- Applying Your Theme
- Theme-Related Document Attributes
- Printing Mode (print)
- Publishing Mode (prepress)
- Source Highlighting Theme
- Extending the Converter
- Appendix A: Preparing a Custom Font
The Asciidoctor PDF theme language is described using the YAML data format and incorporates many concepts from CSS and SASS. Therefore, if you have a background in web design, the terminology should be immediately familiar to you. Note, however, that the theming system isn’t actually CSS.
The theme file must be named <name>-theme.yml, where <name>
is the name of the theme.
We recommend not using the names base or default so you don’t confuse it with one of the built-in themes.
Like CSS, themes have both selectors and properties.
Selectors are the component you want to style.
The properties are the style elements of that component that can be styled.
All selector names are implicit (e.g., heading
), so you customize the theme primarily by manipulating pre-defined property values (e.g., font-size
).
📎
|
The theme language in Asciidoctor PDF supports a limited subset of the properties from CSS. Some of these properties have different names from those found in CSS.
|
A theme is described in a YAML-based data format and stored in a dedicated theme file. YAML is a human-friendly data format that resembles CSS and helps to describe the theme. The theme language adds some extra features to YAML, such as variables, basic math, measurements and color values. These enhancements will be explained in detail in later sections.
Here’s an example of a basic theme file that extends the base theme:
extends: base
page:
layout: portrait
margin: [0.75in, 1in, 0.75in, 1in]
size: Letter
base:
font-color: #333333
font-family: Times-Roman
font-size: 12
line-height-length: 17
line-height: $base-line-height-length / $base-font-size
vertical-spacing: $base-line-height-length
heading:
font-color: #262626
font-size: 17
font-style: bold
line-height: 1.2
margin-bottom: $vertical-spacing
link:
font-color: #002FA7
outline-list:
indent: $base-font-size * 1.5
footer:
height: $base-line-height-length * 2.5
line-height: 1
recto:
right:
content: '{page-number}'
verso:
left:
content: $footer-recto-right-content
When creating a new theme, you only have to define the keys you want to override from the extended theme, which is loaded prior to loading your custom theme. All the available keys are documented in Keys. The converter uses the information from the theme map to help construct the PDF.
Instead of designing a theme from scratch, you can extend the default theme using the extends
key as follows:
extends: default
base:
font-color: #ff0000
You can also point the extends key at another custom theme to extend from it.
If you don’t want to extend any theme, including the base theme, omit the extends
key or assign the value ~
to the extends
key (i.e., extends: ~
).
|
If you start a new theme from scratch, we strongly recommend defining TrueType fonts and specifying them in the base and literal categories.
Otherwise, Asciidoctor PDF will use built-in AFM fonts, which can result in missing functionality and warnings.
|
💡
|
Instead of creating a theme from scratch, another option is to download the default-theme.yml file from the source repository. Save the file using a unique name (e.g., custom-theme.yml) and start hacking on it. Alternatively, you can snag the file from your local installation using the following command: $ ASCIIDOCTOR_PDF_DIR=`gem contents asciidoctor-pdf --show-install-dir`;\ cp "$ASCIIDOCTOR_PDF_DIR/data/themes/default-theme.yml" custom-theme.yml |
Keys may be nested to an arbitrary depth to eliminate redundant prefixes (an approach inspired by SASS). Once the theme is loaded, all keys are flattened into a single map of qualified keys. Nesting is simply a shorthand way of organizing the keys. In the end, a theme is just a map of key/value pairs.
Nested keys are adjoined to their parent key with an underscore (_
) or hyphen (-
).
This means the selector part (e.g., link
) is combined with the property name (e.g., font-color
) into a single, qualified key (e.g., link_font_color
or link-font-color
).
For example, let’s assume we want to set the base (i.e., global) font size and color. These keys may be written longhand:
base-font-color: #333333
base-font-family: Times-Roman
base-font-size: 12
Or, to avoid having to type the prefix base-
multiple times, the keys may be written as a hierarchy:
base:
font-color: #333333
font-family: Times-Roman
font-size: 12
Or even:
base:
font:
color: #333333
family: Times-Roman
size: 12
Each level of nesting must be indented by two spaces from the indentation of the parent level.
Also note the presence of the colon (:
) after each key name.
The value of a key may be one of the following types:
-
String
-
Font family name (e.g., Roboto)
-
Font style (normal, bold, italic, bold_italic)
-
Alignment (left, center, right, justify)
-
Color as hex string (e.g., 'ff0000', #ff0000, or '#ff0000')
-
Image path
-
Enumerated type (where specified)
-
Text content (where specified)
-
-
Null (clears any previously assigned value)
-
empty (i.e., no value specified)
-
null
-
~
-
-
Number (integer or float) with optional units (default unit is points)
-
Array
-
Color as RGB array (e.g., [51, 51, 51])
-
Color CMYK array (e.g., [50, 100, 0, 0])
-
Margin (e.g., [1in, 1in, 1in, 1in])
-
Padding (e.g., [1in, 1in, 1in, 1in])
-
-
Variable reference (e.g., $base_font_color or $base-font-color)
-
Math expression
Note that keys almost always require a value of a specific type, as documented in Keys.
Like CSS, inheritance is a principle feature in the Asciidoctor PDF theme language. For many of the properties, if a key is not specified, the key inherits the value applied to the parent content in the content hierarchy. This behavior saves you from having to specify properties unless you want to override the inherited value.
The following keys are inherited:
-
font-family
-
font-color
-
font-size
-
font-style
-
text-transform
-
line-height (currently some exceptions)
-
margin-bottom (if not specified, defaults to $vertical-spacing)
Headings inherit starting from a specific heading level (e.g., heading-h2-font-size
), then to the heading category (e.g., heading-font-size
), then directly to the base value (e.g., base-font-size
).
Any setting from an enclosing context, such as a sidebar, is skipped.
To save you from having to type the same value in your theme over and over, or to allow you to base one value on another, the theme language supports variables.
Variables consist of the key name preceded by a dollar sign ($
) (e.g., $base-font-size
).
Any qualified key that has already been defined can be referenced in the value of another key.
(In order words, as soon as the key is assigned, it’s available to be used as a variable).
❗
|
Variables are defined from top to bottom (i.e., in document order). Therefore, a variable must be defined before it is referenced. In other words, the path the variable refers to must be above the usage of that variable. |
For example, once the following line is processed,
base:
font-color: #333333
the variable $base-font-color
will be available for use in subsequent lines and will resolve to #333333
.
Let’s say you want to make the font color of the sidebar title the same as the heading font color.
Just assign the value $heading-font-color
to the $sidebar-title-font-color
.
heading:
font-color: #191919
sidebar:
title:
font-color: $heading-font-color
You can also use variables in math expressions to use one value to build another. This is commonly done to set font sizes proportionally. It also makes it easy to test different values very quickly.
base:
font-size: 12
font-size-large: $base-font-size * 1.25
font-size-small: $base-font-size * 0.85
We’ll cover more about math expressions later.
You can define arbitrary key names to make custom variables.
This is one way to group reusable values at the top of your theme file.
If you are going to do this, it’s recommended that you organize the keys under a custom namespace, such as brand
.
For instance, here’s how you can define your brand colors:
brand:
primary-color: #E0162B # # (1)
secondary-color: '#FFFFFF' # # (2)
alert-color: '0052A5' # # (3)
-
To align with CSS, you may add
#
in front of the hex color value to coerce it to a string. A YAML preprocessor is used to ensure the value is not treated as a comment as would normally be the case in YAML. -
You may put quotes around the CSS-style hex value to make it friendly to a YAML editor or validation tool.
-
The leading
#
on a hex value is entirely optional. However, we recommend that you always use either a leading#
or surrounding quotes (or both) to prevent YAML from mangling the value (for example, 000000 would become 0, so use '000000' or #000000 instead).
You can now use these custom variables later in the theme file:
base:
font-color: $brand-primary-color
The theme language supports basic math operations to support calculated values. Like programming languages, multiply and divide take precedence over add and subtract.
The following table lists the supported operations and the corresponding operator for each.
Operation | Operator |
---|---|
multiply |
* |
divide |
/ |
add |
+ |
subtract |
- |
❗
|
Operators must always be surrounded by a space on either side (e.g., 2 + 2, not 2+2). |
Here’s an example of a math expression with fixed values.
conum:
line-height: 4 / 3
Variables may be used in place of numbers anywhere in the expression:
base:
font-size: 12
font-size-large: $base-font-size * 1.25
Values used in a math expression are automatically coerced to a float value before the operation. If the result of the expression is an integer, the value is coerced to an integer afterwards.
❗
|
Numeric values less than 1 must have a 0 before the decimal point (e.g., 0.85). |
The theme language also supports several functions for rounding the result of a math expression. The following functions may be used if they surround the whole value or expression for a key.
- round(…)
-
Rounds the number to the nearest half integer.
- floor(…)
-
Rounds the number up to the next integer.
- ceil(…)
-
Rounds the number down the previous integer.
You might use these functions in font size calculations so that you get more exact values.
base:
font-size: 12.5
font-size-large: ceil($base-font-size * 1.25)
Several of the keys require a value in points (pt), the unit of measure for the PDF canvas. A point is defined as 1/72 of an inch. If you specify a number without any units, the units defaults to pt.
However, us humans like to think in real world units like inches (in), centimeters (cm), or millimeters (mm). You can let the theme do this conversion for you automatically by adding a unit notation next to any number.
The following units are supported:
Unit | Suffix |
---|---|
Centimeter |
cm |
Inches |
in |
Millimeter |
mm |
Percentage[1] |
%, vw, or vh |
Points |
pt (default) |
-
A percentage with the % unit is calculated relative to the width or height of the content area. Viewport-relative percentages (vw or vh units) are calculated as a percentage of the page width or height, respectively. Currently, percentage units can only be used for placing elements on the title page or for setting the width of a block image.
Here’s an example of how you can use inches to define the page margins:
page:
margin: [0.75in, 1in, 0.75in, 1in]
The order of elements in a measurement array is the same as it is in CSS:
-
top
-
right
-
bottom
-
left
The align subkey is used to align text and images within the parent container.
The following decorations can be applied to text:
-
none (no decoration)
-
underline
-
line-through
In most cases, wherever you can specify a custom font family, you can also specify a font style. These two settings are combined to locate the font to use.
The following font styles are recognized:
-
normal (no style)
-
italic
-
bold
-
bold_italic
Many places where font properties can be specified, a case transformation can be applied to the text. The following transforms are recognized:
-
uppercase
-
lowercase
-
capitalize (each word, like CSS)
-
none (clears an inherited value)
🔥
|
Ruby 2.5 and better has built-in support for transforming the case of any letter defined by Unicode.
You no longer need the |
The theme language supports color values in three formats:
- Hex
-
A string of 3 or 6 characters with an optional leading
#
, optional surrounding quotes, or both. - RGB
-
An array of numeric values ranging from 0 to 255.
- CMYK
-
An array of numeric values ranging from 0 to 1 or from 0% to 100%.
- Transparent
-
The special value
transparent
indicates that a color should not be used.
The hex color value is likely most familiar to web developers.
The value must be either 3 or 6 characters (case insensitive) with an optional leading hash (#
), optional surrounding quotes, or both.
To align with CSS, you may add a #
in front of the hex color value.
A YAML preprocessor is used to ensure the value is not treated as a comment as would normally be the case in YAML.
That same preprocessor will also coerce a primitive value to a string if color
is the name of the last segment in the key (e.g., font-color
).
This avoids the problem of 000 becoming 0 (and similar implicit conversions) when the theme file is parsed.
You also may put quotes around the CSS-style hex value to make it friendly to a YAML editor or validation tool.
In this case, the leading #
on a hex value is entirely optional.
Regardless, we recommend that you always use either a leading #
or surrounding quotes (or both) to prevent YAML from mangling the value.
The following are all equivalent values for the color red:
|
|
|
|
|
|
|
|
Here’s how a hex color value appears in the theme file:
base:
font-color: #ff0000
An RGB array value must be three numbers ranging from 0 to 255. The values must be separated by commas and be surrounded by square brackets.
📎
|
An RGB array is automatically converted to a hex string internally, so there’s no difference between ff0000 and [255, 0, 0]. |
Here’s how to specify the color red in RGB:
-
[255, 0, 0]
Here’s how a RGB color value appears in the theme file:
base:
font-color: [255, 0, 0]
A CMYK array value must be four numbers ranging from 0 and 1 or from 0% to 100%. The values must be separated by commas and be surrounded by square brackets.
Unlike the RGB array, the CMYK array is not converted to a hex string internally. PDF has native support for CMYK colors, so you can preserve the original color values in the final PDF.
Here’s how to specify the color red in CMYK:
-
[0, 0.99, 1, 0]
-
[0, 99%, 100%, 0]
Here’s how a CMYK color value appears in the theme file:
base:
font-color: [0, 0.99, 1, 0]
An image is specified either as a bare image path or as an inline image macro as found in the AsciiDoc syntax.
Images in the theme file are currently resolved relative to the value of the pdf-themesdir
attribute.
(If pdf-theme
is a path that ends in .yml
, and pdf-themesdir
is not set, then the images are resolved relative to the directory of the path specified by pdf-theme
).
If you want to use an image in your theme that’s relative to the document you’re converting, you can prefix the target with the attribute reference.
The following image types (and corresponding file extensions) are supported:
-
PNG (.png)
-
JPEG (.jpg)
-
SVG (.svg)
🔥
|
The GIF format (.gif) and BMP format (.bmp) are not supported unless you’re using prawn-gmagick. See support for additional image file formats for details. |
Here’s how an image is specified in the theme file as a bare image path:
title-page:
background-image: title-cover.png
Here’s how the image is specified using the inline image macro:
title-page:
background-image: image:title-cover.png[]
In either case, the image is resolved relative to the value of the pdf-themesdir
attribute, as previously described.
If you want to instead reference an image relative to the document you’re converting, then prefix the target with the attribute reference.
title-page:
background-image: image:{docdir}/images/title-cover.png[]
Like in the AsciiDoc syntax, wrapping the value in the image macro allows you to specify other settings, such as pdfwidth
, fit
, and/or align
.
For example:
title-page:
logo-image: image:logo.png[width=250,align=center]
Some of the keys accept a quoted string as text content.
The final segment of these keys is always named content
.
A content key accepts a string value. It’s usually best to quote the string or use the YAML multi-line string syntax.
Text content may be formatted using a subset of inline HTML.
You can use the well-known elements such as <strong>
, <em>
, <code>
, <a>
, <sub>
, <sup>
, <del>
, and <span>
.
The <span>
element supports the style
attribute, which you can use to specify the color
, font-weight
, and font-style
CSS properties.
You can also use the rgb
attribute on the <color>
element to change the color or the name
and size
attributes on the <font>
element to change the font properties.
If you need to add an underline or strikethrough decoration to the text, you can assign the underline
or line-through
to the class
attribute on any aforementioned element.
Here’s an example of using formatting in the content of the menu caret:
menu-caret-content: " <font size=\"1.15em\"><color rgb=\"#b12146\">\u203a</color></font> "
📎
|
The string must be double quoted in order to use a Unicode escape code like \u203a .
|
Additionally, normal substitutions are applied to the value of content keys for running content, so you can use most AsciiDoc inline formatting (e.g., *strong*
or {attribute-name}
) in the values of those keys.
You can select from built-in PDF fonts, fonts bundled with Asciidoctor PDF or custom fonts loaded from TrueType font (TTF) files. If you want to use custom fonts, you must first declare them in your theme file.
❗
|
Asciidoctor has no challenge working with Unicode.
In fact, it prefers Unicode and considers the entire range.
However, once you convert to PDF, you have to meet the font requirements of PDF in order to preserve Unicode characters.
That means you need to provide a font (at least a fallback font) that contains glyphs for all the characters you want to use.
If you don’t, you may notice that characters are missing (usually replaced with a box).
There’s nothing Asciidoctor can do to convince PDF to work with extended characters without the right fonts in play.
To see which characters are missing from the font, enable verbose mode (-v ) when running Asciidoctor PDF.
|
The names of the built-in fonts (for general-purpose text) are as follows:
Font Name | Font Family |
---|---|
Helvetica |
sans-serif |
Times-Roman |
serif |
Courier |
monospace |
Using a built-in font requires no additional files.
You can use the key anywhere a font-family
property is accepted in the theme file.
For example:
base:
font-family: Times-Roman
However, when you use a built-in font, the characters you can use in your document are limited to the characters in the WINANSI (Windows-1252) code set. WINANSI includes most of the characters needed for writing in Western languages (English, French, Spanish, etc). For anything outside of that, PDF is BYOF (Bring Your Own Font).
Even though the built-in fonts require the content to be encoded in WINANSI, you still type your AsciiDoc document in UTF-8. Asciidoctor PDF encodes the content into WINANSI when building the PDF.
|
Built-in (AFM) fonts do not use the fallback fonts. In order for the fallback font to kick in, you must use a TrueType font anywhere you want the fallback font to be used (e.g., the base font family, the code font family, etc). |
When using the built-in PDF (AFM) fonts on a block of content in your AsciiDoc document, any character that cannot be encoded to WINANSI is replaced with a logic “not” glyph (¬
) and you’ll see the following warning in your console:
The following text could not be fully converted to the Windows-1252 character set: | <string with unknown glyph>
This behavior differs from the default behavior in Prawn, which is to simply crash.
You’ll often see this warning if you’re using callouts in your document and you haven’t specified a TrueType font in your theme. To prevent this warning, you need to specify a TrueType font.
When using a TrueType font, you will get no warning for a missing glyph. That’s a consequence of how Prawn works and is outside of Asciidoctor PDF’s control. However, you’ll likely see it substituted with a box (guaranteed if you’re using one of the bundled fonts).
For more information about how Prawn handles character encodings for built-in fonts, see this note in the Prawn CHANGELOG.
Asciidoctor PDF bundles several fonts that are used by the default theme. You can also use these fonts in your custom theme by simply declaring them. These fonts provide more characters than the built-in PDF fonts, but still only a subset of UTF-8 (to reduce the size of the gem).
The family name of the fonts bundled with Asciidoctor PDF are as follows:
- Noto Serif
-
A serif font that can be styled as normal, italic, bold or bold_italic.
- M+ 1mn
-
A monospaced font that maps different thicknesses to the styles normal, italic, bold and bold_italic. Also provides the circuled numbers used in callouts.
- M+ 1p Fallback
-
A sans-serif font that provides a very complete set of Unicode glyphs. Cannot be styled as italic, bold or bold_italic. Used as the fallback font in the
default-with-fallback-font
theme.
💡
|
If you want to specify the location of custom fonts using the pdf-fontsdir attribute, yet still be able to reference the bundled fonts, you need to refer to the bundled fonts using the GEM_FONTS_DIR token.
To do so, you can either a) prefix the path of the bundled font in the theme file with the segment GEM_FONTS_DIR (e.g., GEM_FONTS_DIR/mplus1p-regular-fallback.ttf , or b) use relative paths in the theme file and include GEM_FONT_DIR in the value of the pdf-fontsdir attribute separated by the location of your custom fonts using a comma (e.g., path/to/your/fonts,GEM_FONTS_DIR ) or a semi-colon (e.g., path/to/your/fonts;GEM_FONTS_DIR ).
|
The limited character set of WINANSI, or the plain look of the built-in or bundled fonts, may motivate you to incorporate your own fonts. Custom fonts can enhance the look of your PDF theme substantially.
❗
|
In order for a third-party font to work properly with Prawn (and hence Asciidoctor PDF), several modifications are required. See Preparing a Custom Font to learn how to prepare your font for use with Asciidoctor PDF. |
To start, find the TTF file collection for the font you want to use. A collection typically consists of four font styles:
-
normal
-
italic
-
bold
-
bold_italic
You’ll need all four variants to support AsciiDoc content properly (unless the font only has a single variant). If you do not register the font correctly, the converter may crash or revert to the fallback font, depending on how the theme is configured. If one of the variants is missing from your collection, you can simply reuse the normal / single variant in its place.
|
Asciidoctor PDF cannot italicize a font dynamically like a browser can, so the italic styles are required to italicize text. |
Once you’ve obtained the TTF files, put them in the directory inside your project where you want to store the fonts. It’s recommended that you name them consistently so it’s easier to type the names in the theme file.
Let’s assume the name of the font is Roboto. Rename the files as follows:
-
roboto-normal.ttf (originally Roboto-Regular.ttf)
-
roboto-italic.ttf (originally Roboto-Italic.ttf)
-
roboto-bold.ttf (originally Roboto-Bold.ttf)
-
roboto-bold_italic.ttf (originally Roboto-BoldItalic.ttf)
Next, declare the font under the font-catalog
key at the top of your theme file.
Assign each font a unique key (e.g., Roboto
) and specify the path to each of the four font styles under that key.
font:
catalog:
merge: false # set value to true to merge catalog with theme you're extending
Roboto:
normal: roboto-normal.ttf
italic: roboto-italic.ttf
bold: roboto-bold.ttf
bold_italic: roboto-bold_italic.ttf
If you use this form, you must declare all four variants. If you’re missing the font file for one of the variants, configure it to use the same font file as the normal variant.
If your font only has a single variant, assign the font path to the font key directly.
font:
catalog:
merge: false # set value to true to merge catalog with theme you're extending
VLGothic: vlgothic.ttf
Font paths can be absolute or relative.
Absolute paths are used as is.
Relative font paths are resolved from the font search path.
You can also use the GEM_FONTS_DIR
keyword to refer to the location of the bundled fonts.
You can add any number of fonts to the catalog. Each font must be assigned a unique key, as shown here:
font:
catalog:
merge: false # set value to true to merge catalog with theme you're extending
Roboto:
normal: roboto-normal.ttf
italic: roboto-italic.ttf
bold: roboto-bold.ttf
bold_italic: roboto-bold_italic.ttf
Roboto Light:
normal: roboto-light-normal.ttf
italic: roboto-light-italic.ttf
bold: roboto-light-bold.ttf
bold_italic: roboto-light-bold_italic.ttf
You can use the key that you assign to the font in the font catalog anywhere the font-family
property is accepted in the theme file.
For example, to use the Roboto font for all headings (section titles and discrete headings), use:
heading:
font-family: Roboto
font-style: bold
The font name and font style are used to locate an entry in the font catalog.
Fonts defined for text in SVGs will be mapped to the font catalog from your theme. So if you have an SVG that requires a specific font, you’ll need to declare that font in the font catalog in your theme.
We recommend that you match the font key in your theme file to the name of the font seen by the operating system. This will allow you to use the same font names (aka families) in both your graphics program and Asciidoctor PDF, thus making them portable.
When you execute Asciidoctor PDF, specify the directory where the fonts reside using the pdf-fontsdir
attribute:
$ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir=path/to/fonts document.adoc
You can specify multiple directories by separating the paths with either a comma (,
):
$ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir=path/to/fonts,path/to/more-fonts document.adoc
or a semi-colon (;
) (which requires enclosing the combined value in double quotes to escape the delimiter from the shell):
$ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir="path/to/fonts;path/to/more-fonts" document.adoc
To include the location of the bundled fonts in the search, include the GEM_FONTS_DIR
token in the list:
$ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir="path/to/fonts;GEM_FONTS_DIR" document.adoc
When running Asciidoctor PDF on the JVM (perhaps using AsciidoctorJ PDF), you can refer a directory inside of any JAR file on the classpath by prefixing the path with uri:classloader:
:
$ asciidoctorj -b pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir="uri:classloader:/path/to/fonts;GEM_FONTS_DIR" document.adoc
When Asciidoctor PDF creates the PDF, it only embeds the glyphs from the font that are needed to render the characters present in the document. Effectively, it subsets the font. While that saves space taken up by the generated PDF, you may still be storing the full font in your source repository.
To minimize the size of the source font, you can use FontForge to subset the font ahead of time. Subsetting a font means remove glyphs you don’t plan to use. Doing so is not a requirement, simply a personal preference.
If a TrueType font is missing a character needed to render the document, such as a special symbol or emoji, you can have Asciidoctor PDF look for the character in a fallback font.
You only need to specify a single fallback font, typically one that provides a full set of symbols. If the character isn’t found in the fallback font, it will mostly likely be replaced by a box (i.e., the notdef glyph), which is guaranteed if you’re using the bundled fallback font.
❗
|
When defining the fallback font, you must specify all four variants (normal, bold, italic, bold_italic), even if you use the same font file for each. |
❗
|
The fallback font only gets used when the primary font is a TrueType font (i.e., TTF, DFont, TTC).
Any glyph missing from an AFM font is simply replaced with the “not” glyph (¬ ).
|
🔥
|
The default theme does not use a fallback font.
However, the built-in default-with-fallback-font theme does.
In fact, it provides two.
One for general writing in non-Latin languages (M+ 1p) and another for emoji (Noto Emoji).
Using the fallback font slows down PDF generation slightly because it has to analyze every single character.
It’s use is not recommended for large documents.
Instead, it’s best to select primary fonts that have all the characters you need.
|
Like with other custom fonts, you first need to declare the fallback font. Let’s choose Droid Sans Fallback. You can map all the styles to a single font file (since bold and italic don’t usually make sense for symbols).
font:
catalog:
Roboto:
normal: roboto-normal.ttf
italic: roboto-italic.ttf
bold: roboto-bold.ttf
bold_italic: roboto-bold_italic.ttf
DroidSansFallback: droid-sans-fallback.ttf
Notice that we only declare the fallback font file once using a literal value. This ensures the font is defined for all four variants so it will be used regardless of which font style is active when it’s called on. This assignment is equivalent to the following:
DroidSansFallback:
'*': droid-sans-fallback.ttf
The benefit of this syntax is that it allows you to use a separate font file for just one of the variants (e.g., bold).
Next, add the key name to the fallbacks
key under the font-catalog
key.
The fallbacks
key accepts an array of values, meaning you can specify more than one fallback font.
However, we recommend using a single fallback font, if possible, as shown here:
font:
catalog:
Roboto:
normal: roboto-normal.ttf
italic: roboto-italic.ttf
bold: roboto-bold.ttf
bold_italic: roboto-bold_italic.ttf
DroidSansFallback: droid-sans-fallback.ttf
fallbacks:
- DroidSansFallback
💡
|
If you are using more than one fallback font, add additional lines to the fallbacks key.
|
Of course, make sure you’ve configured your theme to use your custom font:
base:
font-family: Roboto
That’s it! Now you’re covered. If your custom TTF font is missing a glyph, Asciidoctor PDF will look in your fallback font. You don’t need to reference the fallback font anywhere else in your theme file.
Here’s another example that shows how to use an alternative emoji font (Symbola):
extends: default-with-fallback-font
font:
catalog:
merge: true
Symbola: /path/to/symbola.ttf
fallbacks: [ M+ 1p, Symbola ]
Now Asciidoctor PDF will look for the emoji in the Symbola font instead of the Noto Emoji font.
This section lists all the keys that are available when creating a custom theme. The keys are organized by category. Each category represents a common prefix under which the keys are typically nested.
💡
|
Keys can be nested wherever an underscore (_ ) or hyphen (- ) appears in the name.
This nested structure is for organizational purposes only.
All keys are flatted when the theme is loaded (e.g., align nested under base becomes base-align ).
|
The converter uses the values of these keys to control how most elements are arranged and styled in the PDF. The default values listed in this section get inherited from the base theme.
❗
|
The default theme has a different set of values which are not shown in this guide. |
When creating a theme that extends the base theme, all keys are optional. Required keys are provided by the base theme. Therefore, you only have to declare keys that you want to override.
A theme can extend another theme using the extends
key.
For example:
extends: default
base:
font-color: #ff0000
The extends key accepts either a single value or an array of values.
Each value is interpreted as a filename.
If the filename equals default
, it resolves to the location of the default (built-in) theme.
If the filename is absolute, it’s used as is.
If the filename begins with ./
, it’s resolved as a theme file relative to the current theme file.
Otherwise, the filename is resolved as a theme file in the normal way (relative to the value of the pdf-themesdir
attribute).
Currently, the theme starts out empty. Then, the files referenced by the extends key are loaded in order. Finally, the keys in the current file are loaded. Each time a theme is loaded, the keys are overlaid onto the keys from the previous theme.
Key | Value Type | Example |
---|---|---|
extends |
String or Array (default: []) |
extends: - default - ./brand-theme.yml |
If you define a font catalog in a theme that extends from default
, and you want to continue to use the bundled fonts in your theme, you either have to redeclare the bundled fonts:
extends: default
font:
catalog:
Noto Serif:
normal: GEM_FONTS_DIR/notoserif-regular-subset.ttf
bold: GEM_FONTS_DIR/notoserif-bold-subset.ttf
italic: GEM_FONTS_DIR/notoserif-italic-subset.ttf
bold_italic: GEM_FONTS_DIR/notoserif-bold_italic-subset.ttf
M+ 1mn:
normal: GEM_FONTS_DIR/mplus1mn-regular-subset.ttf
bold: GEM_FONTS_DIR/mplus1mn-bold-subset.ttf
italic: GEM_FONTS_DIR/mplus1mn-italic-subset.ttf
bold_italic: GEM_FONTS_DIR/mplus1mn-bold_italic-subset.ttf
Your Font:
normal: /path/to/your/font.ttf
heading:
font-family: Your Font
or you need to set merge: true
above your font definitions:
extends: default
font:
catalog:
merge: true
Your Font:
normal: /path/to/your/font.ttf
heading:
font-family: Your Font
If you’re referring to a bundled font, you’ll need to prefix the path with GEM_FONTS_DIR
(or add it to the value of the pdf-fontsdir
attribute) so the converter can find and register it.
You can find the bundle font definitions in default theme.
The keys in the role
category define custom roles for formatting.
The name of the role is the first subkey level.
The role name may contain a hyphen, but a role name cannot contain an underscore.
The keys under the role are the theming properties.
❗
|
Custom roles only apply to inline phrases. |
Here’s an example of a role for making text red:
role:
red:
font-color: #ff0000
This role can be used as follows:
Error text is shown in [.red]#red#.
You can also use a role to unset a font color (to make it inherit):
role:
heading-code:
font-color: ~
This role can be used as follows:
== [.heading-code]`SELECT` clause
The converter provides several predefined roles, which can can all be redefined.
The big
and small
roles map the font size to the $base-font-size-large and $base-font-size-small values, respectively.
The underline
and line-through
roles add the underline and strikethrough decorations, respectively.
The subtitle
role is used to configure the font properties of the subtitle of a section title.
The color roles (e.g., blue
), which you may be familiar with from the HTML converter, are not mapped by default.
You’ll need to define these color roles in your theme if you’d like to make use of them when converting to PDF.
Key | Value Type | Example |
---|---|---|
Key Prefix: role-<name> |
||
background-color |
Color |
role: highlight: background-color: #ffff00 |
border-color |
Color |
role: found: border-color: #cccccc |
border-offset |
Number |
role: found: border-offset: 2 |
border-radius |
Number |
role: found: border-radius: 3 |
border-width |
Number |
role: found: border-width: 0.5 |
font-color |
Color |
role: red: font-color: #ff0000 |
font-family |
Font family name |
role: label: font-family: M+ 1mn |
font-size |
Number |
role: large: font-size: 12 |
font-style |
Font style |
role: heavy: font-style: bold |
text-decoration |
Text decoration |
role: deleted: text-decoration: line-through |
text-decoration-color |
Color |
role: deleted: text-decoration-color: #ff0000 |
text-decoration-width |
Number |
role: underline: text-decoration-width: 0.5 |
The keys in this category control the front and back cover images. Currently, the only supported feature is setting the image per side.
Key | Value Type | Example |
---|---|---|
Key Prefix: cover |
||
<face>-image[1] |
path, image macro[2] |
cover: front: image: image:cover.pdf[page=2] |
-
<face>
can befront
orback
. -
The value may be an image file or a PDF file. A relative path will be resolved relative to the value of the
pdf-themesdir
attribute. An image files is handled just like a background image. If a PDF file is specified, the first page is used unless another page is specified by thepage
attribute. The page from the PDF file will be imported as is.
The keys in this category control the size, margins and background of each page (i.e., canvas). We recommended that you define this category before all other categories.
📎
|
The background of the title page can be styled independently of other pages. See Title Page for details. |
Key | Value Type | Example |
---|---|---|
Key Prefix: page |
||
background-color[1] |
Color |
page: background-color: #fefefe |
background-image[2] |
image macro[3] |
page: background-image: image:page-bg.png[] |
background-image-(recto|verso)[2] |
image macro[3] |
page: background-image: recto: image:page-bg-recto.png[] verso: image:page-bg-verso.png[] |
foreground-image[2] |
image macro[3] |
page foreground-image: image:watermark.svg[] |
initial-zoom |
Fit | FitH | FitV |
page: initial-zoom: Fit |
layout |
portrait | landscape |
page: layout: landscape |
margin |
Measurement | Measurement[top,right,bottom,left] |
page: margin: [0.5in, 0.67in, 1in, 0.67in] |
margin-inner[4] |
Measurement |
page: margin-inner: 0.75in |
margin-outer[4] |
Measurement |
page: margin-outer: 0.59in |
mode |
outline | none | thumbs | fullscreen | fullscreen outline | fullscreen none | fullscreen thumbs |
page: mode: fullscreen none |
size |
Named size | Measurement[width,height] |
page: size: Letter |
numbering-start-at[5] |
title | toc | body | Integer |
page: numbering-start-at: toc |
-
To disable the background color for the page, set the value to white (i.e., FFFFFF). The color keyword
transparent
is not recognized in this context. -
By default, page background and foreground images are automatically scaled to fit the bounds of the page (i.e.,
fit=contain
) and centered (i.e.,position=center
). The size of the image can be controlled using any of the sizing attributes on the image macro (i.e., fit, pdfwidth, scaledwidth, or width) whenfit=none
. The position of the image can be controlled using theposition
attribute. If the recto (right-hand, odd-numbered pages) or verso (left-hand, even-numbered pages) background image is specified, it will be used only for that side (not available for the foreground image). If you define the keys using the flatten structure (e.g.,page-background-image-recto
), you can also set the default page background image (page-background-image
), which will then be used as a fallback if a background image isn’t specified for a given side. To disable the image, use the valuenone
. -
Target may be an absolute path or a path relative to the value of the
pdf-themesdir
attribute. -
The margins for
recto
(right-hand, odd-numbered) andverso
(left-hand, even-numbered) pages are calculated automatically from the margin-inner and margin-outer values. These margins and used when the valueprepress
is assigned to themedia
document attribute. If no cover is specified, the recto margin is not applied to the title page. To apply the recto margin to the title page, but not include a cover, assign the value~
to thefront-cover-image
attribute. -
The
title
andtoc
values are only recognized if the title page is enabled (i.e., doctype is book ortitle-page
attribute is set) Thetoc
value only applies if the toc is in the default location (before the first page of the body). If the toc macro is used to position the toc, the start-at behavior is the same as if the toc is not enabled. If value is an integer, page numbering will start at the specified page of the body (i.e., 1 is first page, 2 is second page, etc.)
The keys in this category provide generic theme settings and are often referenced throughout the theme file as variables. We recommended that you define this category after the page category and before all other categories.
📎
|
While it’s common to define additional keys in this category (e.g., base-border-radius ) to keep your theme DRY, we recommend using custom variables instead.
|
Key | Value Type | Example |
---|---|---|
Key Prefix: base |
||
align |
Text alignment |
base: align: justify |
border-color |
Color |
base: border-color: #eeeeee |
border-width |
Number |
base: border-width: 0.5 |
font-color |
Color |
base: font-color: #333333 |
font-family |
Font family name |
base: font-family: Noto Serif |
font-kerning |
normal | none |
base: font-kerning: none |
font-size |
Number |
base: font-size: 10.5 |
font-size-min |
Number |
base: font-size-min: $base-font-size * 0.75 |
font-style |
Font style |
base: font-style: normal |
text-transform[1] |
none |
base: text-transform: none |
line-height-length[2] |
Number |
base: line-height-length: 12 |
line-height[2] |
Number |
base: line-height: > $base-line-height-length / $base-font-size |
text-decoration-width |
Number |
base: text-decoration-width: 0.5 |
-
The
text-transform
key cannot be set globally. Therefore, this key should not be used. The value ofnone
is implicit and is documented here for completeness. -
line-height-length
is a utility property that’s internal to the theme. It’s used as an intermediate property for computing thebase-line-height
from the base font size and the desired line height size. For instance, if you setbase-line-height-length
, you can use$base-line-height-length / $base-font-size
to set the value ofbase-line-height
. You don’t have to go about it this way in your own theme.
The keys in this category control the general spacing between elements where a more specific setting is not designated.
Key | Value Type | Example |
---|---|---|
vertical-spacing |
Number |
vertical-spacing: 10 |
The keys in this category are used to style hyperlink text.
Key | Value Type | Example |
---|---|---|
Key Prefix: link |
||
font-color |
Color |
link: font-color: #428bca |
font-family |
Font family name |
link: font-family: Roboto |
font-size |
Number |
link: font-size: 9 |
font-style |
Font style |
link: font-style: italic |
text-decoration |
Text decoration |
link: text-decoration: underline |
text-decoration-color |
Color |
link: text-decoration-color: #0000ff |
text-decoration-width |
Number |
link: text-decoration-width: 0.5 |
The keys in this category are used for inline monospaced text in prose and table cells.
Key | Value Type | Example |
---|---|---|
Key Prefix: literal |
||
background-color |
Color |
literal: background-color: #f5f5f5 |
border-color[1] |
Color |
literal: border-color: #cccccc |
border-offset[2] |
Number |
literal: border-offset: 2 |
border-radius |
Number |
literal: border-radius: 3 |
border-width |
Number |
literal: border-width: 0.5 |
font-color |
Color |
literal: font-color: #b12146 |
font-family |
Font family name |
literal: font-family: M+ 1mn |
font-size |
Number |
literal: font-size: 12 |
font-style |
Font style |
literal: font-style: bold |
-
The border is only used if a border color is specified and the border width is not explicitly set to 0. The border only works properly if the literal phrase does not have nested formatting. Otherwise, the border will be inherited, producing a less than desirable result.
-
The border offset is the amount that the background and border swells around the text. It does not affect the distance between the formatted phrase and the phrases that surround it.
The keys in this category control the style of most headings, including part titles, chapter titles, sections titles, the table of contents title and discrete headings.
Key | Value Type | Example |
---|---|---|
Key Prefix: heading |
||
align |
Text alignment |
heading: align: center |
font-color |
Color |
heading: font-color: #222222 |
font-family |
Font family name |
heading: font-family: Noto Serif |
font-kerning |
normal | none |
heading: font-kerning: none |
font-style |
Font style |
heading: font-style: bold |
text-decoration |
Text decoration |
heading: text-decoration: underline |
text-decoration-color |
Color |
heading: text-decoration-color: #cccccc |
text-decoration-width |
Number |
heading: text-decoration-width: 0.5 |
text-transform |
Text transform |
heading: text-transform: capitalize |
line-height |
Number |
heading: line-height: 1.2 |
margin-top |
Measurement |
heading: margin-top: $vertical-spacing * 0.2 |
margin-page-top |
Measurement |
heading: margin-page-top: $vertical-spacing |
margin-bottom |
Measurement |
heading: margin-bottom: 9.6 |
min-height-after |
Measurement |
heading: min-height-after: 0.5in |
chapter-break-before |
always | auto |
heading: chapter: break-before: auto |
part-break-before |
always | auto |
heading: part: break-before: auto |
part-break-after |
always | auto |
heading: part: break-after: always |
Key Prefix: heading-h<n>[1] |
||
align |
Text alignment |
heading: h2-align: center |
font-color |
Color |
heading: h2-font-color: [0, 99%, 100%, 0] |
font-family |
Font family name |
heading: h4-font-family: Roboto |
font-kerning |
normal | none |
heading: h3-font-kerning: none |
font-size[1] |
Number |
heading: h6-font-size: $base-font-size * 1.7 |
font-style |
Font style |
heading: h3-font-style: bold_italic |
text-transform |
Text transform |
heading: h3-text-transform: uppercase |
margin-top |
Measurement |
heading: h2-margin-top: $vertical-spacing * 0.5 |
margin-page-top |
Measurement |
heading: h2-margin-page-top: $vertical-spacing |
margin-bottom |
Measurement |
heading: h2-margin-bottom: 10 |
-
<n>
is a number ranging from 1 to 6, representing each of the six heading levels. -
A font size is assigned to each heading level by the base theme. If you want the font size of a specific level to be inherited, you must assign the value
null
(or~
for short).
The keys in this category control the style of a section body.
Key | Value Type | Example |
---|---|---|
Key Prefix: section |
||
indent |
Measurement | Measurement[left,right][1] |
section: indent: [0.5in, 0] |
-
Applies to the section body only, excluding section titles and discrete headings. A single value gets applied to both the left and right side (e.g.,
0.5in
). A two-value array configures the left and right side independently (e.g.,[0.5in, 0]
).
The keys in this category control the style of the title page as well as the arrangement and style of the elements on it.
❗
|
The title page is only enabled by default for the book doctype (e.g., :doctype: book ).
If you want to enable the title page when using a different doctype (such as the article doctype), you must define the title-page attribute in the document header (i.e., :title-page: ).
|
📎
|
Subtitle partitioning of the doctitle is only enabled when the title page is also enabled. |
💡
|
The title page can be disabled for the book doctype by setting the notitle attribute in the AsciiDoc document header (i.e., :notitle: ).
(It’s analogue, :!showtitle: , does not work with this converter).
For other doctypes, the same result can be achieved by not setting the title-page attribute.
|
Key | Value Type | Example |
---|---|---|
Key Prefix: title-page |
||
align |
Text alignment |
title-page: align: right |
background-color[1] |
Color |
title-page: background-color: #eaeaea |
background-image[2] |
image macro[3] |
title-page: background-image: image:title.png[] |
font-color |
Color |
title-page: font-color: #333333 |
font-family |
Font family name |
title-page: font-family: Noto Serif |
font-kerning |
normal | none |
title-page: font-kerning: none |
font-size |
Number |
title-page: font-size: 13 |
font-style |
Font style |
title-page: font-style: bold |
text-transform |
Text transform |
title-page: text-transform: uppercase |
line-height |
Number |
title-page: line-height: 1 |
Key Prefix: title-page-logo |
||
align |
Image alignment |
title-page: logo: align: right |
image |
image macro[3] |
title-page: logo: image: image:logo.png[pdfwidth=25%] |
top |
Measurement[4] |
title-page: logo: top: 25% |
Key Prefix: title-page-title |
||
display |
none |
title-page: title: display: none |
font-color |
Color |
title-page: title: font-color: #999999 |
font-family |
Font family name |
title-page: title: font-family: Noto Serif |
font-kerning |
normal | none |
title-page: title: font-kerning: none |
font-size |
Number |
title-page: title: font-size: $heading-h1-font-size |
font-style |
Font style |
title-page: title: font-style: bold |
text-transform |
Text transform |
title-page: title: text-transform: uppercase |
line-height |
Number |
title-page: title: line-height: 0.9 |
top |
Measurement[4] |
title-page: title: top: 55% |
margin-top |
Measurement |
title-page: title: margin-top: 13.125 |
margin-bottom |
Measurement |
title-page: title: margin-bottom: 5 |
Key Prefix: title-page-subtitle |
||
display |
none |
title-page: subtitle: display: none |
font-color |
Color |
title-page: subtitle: font-color: #181818 |
font-family |
Font family name |
title-page: subtitle: font-family: Noto Serif |
font-kerning |
normal | none |
title-page: subtitle: font-kerning: none |
font-size |
Number |
title-page: subtitle: font-size: $heading-h3-font-size |
font-style |
Font style |
title-page: subtitle: font-style: bold_italic |
text-transform |
Text transform |
title-page: subtitle: text-transform: uppercase |
line-height |
Number |
title-page: subtitle: line-height: 1 |
margin-top |
Measurement |
title-page: subtitle: margin-top: 13.125 |
margin-bottom |
Measurement |
title-page: subtitle: margin-bottom: 5 |
Key Prefix: title-page-authors |
||
content |
Quoted AsciiDoc string |
title-page: authors: content: name_only: "{author}" with_email: "{author} <{email}>" with_url: "{url}[{author}]" |
display |
none |
title-page: authors: display: none |
delimiter |
Quoted string |
title-page: authors: delimiter: '; ' |
font-color |
Color |
title-page: authors: font-color: #181818 |
font-family |
Font family name |
title-page: authors: font-family: Noto Serif |
font-kerning |
normal | none |
title-page: authors: font-kerning: none |
font-size |
Number |
title-page: authors: font-size: 13 |
font-style |
Font style |
title-page: authors: font-style: bold_italic |
text-transform |
Text transform |
title-page: authors: text-transform: uppercase |
margin-top |
Measurement |
title-page: authors: margin-top: 13.125 |
margin-bottom |
Measurement |
title-page: authors: margin-bottom: 5 |
Key Prefix: title-page-revision |
||
display |
none |
title-page: revision: display: none |
delimiter |
Quoted string |
title-page: revision: delimiter: ': ' |
font-color |
Color |
title-page: revision: font-color: #181818 |
font-family |
Font family name |
title-page: revision: font-family: Noto Serif |
font-kerning |
normal | none |
title-page: revision: font-kerning: none |
font-size |
Number |
title-page: revision: font-size: $base-font-size-small |
font-style |
Font style |
title-page: revision: font-style: bold |
text-transform |
Text transform |
title-page: revision: text-transform: uppercase |
margin-top |
Measurement |
title-page: revision: margin-top: 13.125 |
margin-bottom |
Measurement |
title-page: revision: margin-bottom: 5 |
-
To disable the background color for the title page, set the value to white (i.e., FFFFFF). The color keyword
transparent
is not recognized in this context. -
By default, page background images are automatically scaled to fit the bounds of the page (i.e.,
fit=contain
) and centered (i.e.,position=center
). The size of the background image can be controlled using any of the sizing attributes on the image macro (i.e., fit, pdfwidth, scaledwidth, or width) whenfit=none
. The position of the background image can be controlled using theposition
attribute. -
Target may be an absolute path or a path relative to the value of the
pdf-themesdir
attribute. -
% unit is relative to content height; vh unit is relative to page height.
The keys in this category control the spacing around paragraphs (paragraph blocks, paragraph content of a block, and other prose content). Typically, all the margin is placed on the bottom.
Key | Value Type | Example |
---|---|---|
Key Prefix: prose |
||
margin-top |
Measurement |
prose: margin-top: 0 |
margin-bottom |
Measurement |
prose: margin-bottom: $vertical-spacing |
margin-inner[1] |
Measurement |
prose: margin-inner: 0 |
text-indent |
Measurement |
prose: text-indent: 18 |
-
Controls the margin between adjacent paragraphs. Useful when using indented paragraphs.
The keys in this category control the spacing around block elements when a more specific setting is not designated.
Key | Value Type | Example |
---|---|---|
Key Prefix: block |
||
margin-top |
Measurement |
block: margin-top: 6 |
margin-bottom |
Measurement |
block: margin-bottom: 6 |
Block styles are applied to the following block types:
|
|
|
The keys in this category control the arrangement and style of block captions. In addition to the generic caption category, each of these keys can be set on the caption key nested inside the following block categories: blockquote, code, example, footnotes, image, listing, table, and verse.
Key | Value Type | Example |
---|---|---|
Key Prefix: caption |
||
align[1] |
Text alignment |
caption: align: left |
font-color |
Color |
caption: font-color: #333333 |
font-family |
Font family name |
caption: font-family: M+ 1mn |
font-kerning |
normal | none |
caption: font-kerning: none |
font-size |
Number |
caption: font-size: 11 |
font-style |
Font style |
caption: font-style: italic |
text-transform |
Text transform |
caption: text-transform: uppercase |
margin-inside |
Measurement |
caption: margin-inside: 3 |
margin-outside |
Measurement |
caption: margin-outside: 0 |
-
When nested inside the
image
key (i.e.,image-caption-align
), the valueinherit
is also accepted. The valueinherit
resolves to the alignment of the block image.
The keys in this category are used to control the style of literal, listing and source blocks.
Key | Value Type | Example |
---|---|---|
Key Prefix: code |
||
background-color |
Color |
code: background-color: #f5f5f5 |
border-color |
Color |
code: border-color: #cccccc |
border-radius |
Number |
code: border-radius: 4 |
border-width |
Number |
code: border-width: 0.75 |
font-color |
Color |
code: font-color: #333333 |
font-family |
Font family name |
code: font-family: M+ 1mn |
font-size |
Number |
code: font-size: 11 |
font-style |
Font style |
code: font-style: italic |
line-height |
Number |
code: line-height: 1.25 |
line-gap[1] |
Number |
code: line-gap: 3.8 |
padding |
Measurement | Measurement[top,right,bottom,left] |
code: padding: 11 |
Key Prefix: code-highlight[2] |
||
background-color |
Color |
code: highlight-background-color: #ffff00 |
Key Prefix: code-linenum[3] |
||
font-color |
Color |
code: linenum-font-color: #ccc |
-
The line-gap property is used to tune the height of the background color applied to a span of block text highlighted using Rouge.
-
The code-highlight category only applies when using Rouge as the source highlighter. Otherwise, the styles are controlled by the source highlighter theme.
-
The code-linenum category only applies when using Pygments as the source highlighter. Otherwise, the styles are controlled by the source highlighter theme.
The keys in this category are used to control the style of callout numbers (i.e., conums) inside verbatim blocks and in callout lists (colists).
Key | Value Type | Example |
---|---|---|
Key Prefix: conum |
||
font-color |
Color |
conum: font-color: #b12146 |
font-family[1,2] |
Font family name |
conum: font-family: M+ 1mn |
font-kerning[2] |
normal | none |
conum: font-kerning: none |
font-size[2] |
Number |
conum: font-size: $base-font-size |
font-style[2] |
Font style |
conum: font-style: normal |
line-height[2] |
Number |
conum: line-height: 4 / 3 |
glyphs[3] |
circled | filled | Unicode String ranges |
conum: glyphs: \u0031-\u0039 |
-
Currently, the font must contain the circle numbers starting at glyph U+2460.
-
font-family, font-kerning, font-size, font-style, and line-height are only used for markers in a colist. These properties are inherited for conums inside a verbatim block.
-
The font must provide the required glyphs. The glyphs can be specified as a comma-separated list of ranges, where the range values are Unicode numbers (e.g., \u2460). Unicode escape sequences are recognized even if the value is not enclosed in double quotes.
The keys in this category apply to a button reference (generated from the inline button macro).
Key | Value Type | Example |
---|---|---|
Key Prefix: button |
||
background-color |
Color |
button: background-color: #0000ff |
border-color[1] |
Color |
button: border-color: #cccccc |
border-offset[2] |
Number |
button: border-offset: 1.5 |
border-radius |
Number |
button: border-radius: 2 |
border-width |
Number |
button: border-width: 0.5 |
content[3] |
Quoted string |
button: content: "[\u2009%s\u2009]" |
font-color |
Color |
button: font-color: #ffffff |
font-family |
Font family name |
button: font-family: M+ 1mn |
font-size |
Number |
button: font-size: 12 |
font-style |
Font style |
button: font-style: normal |
-
The border is only used if a border color is specified and the border width is not explicitly set to 0.
-
The border offset is the amount that the background and border swells around the text. It does not affect the distance between the formatted phrase and the phrases that surround it.
-
The character sequence
%s
in the content key gets replaced with the button label.
The keys in this category apply to a key reference (generated from the inline kbd macro).
Key | Value Type | Example |
---|---|---|
Key Prefix: key |
||
background-color |
Color |
key: background-color: #fafafa |
border-color[1] |
Color |
key: border-color: #cccccc |
border-offset[2] |
Number |
key: border-offset: 1.5 |
border-radius |
Number |
key: border-radius: 2 |
border-width |
Number |
key: border-width: 0.375 |
separator[3] |
Quoted string |
key: separator: "\u2009+\u2009" |
font-color |
Color |
key: font-color: #000 |
font-family |
Font family name |
key: font-family: $base-font-family |
font-size |
Number |
key: font-size: 10.5 |
font-style |
Font style |
key: font-style: normal |
-
The border is only used if a border color is specified and the border width is not explicitly set to 0.
-
The border offset is the amount that the background and border swells around the text. It does not affect the distance between the formatted phrase and the phrases that surround it.
-
The separator is only used for multi-key sequences.
The keys in this category apply to the menu label (generated from the inline menu macro).
Key | Value Type | Example |
---|---|---|
Key Prefix: menu |
||
caret-content |
Quoted string |
menu: caret-content: ' > ' |
The keys in this category control the arrangement and style of quote blocks.
Key | Value Type | Example |
---|---|---|
Key Prefix: blockquote |
||
background-color |
Color |
blockquote: background-color: #dddddd |
border-width[1] |
Number |
blockquote: border-width: 0.5 |
border-left-width[1] |
Number |
blockquote: border-left-width: 5 |
border-color[1] |
Color |
blockquote: border-color: #dddddd |
font-color |
Color |
blockquote: font-color: #333333 |
font-family |
Font family name |
blockquote: font-family: Noto Serif |
font-kerning |
normal | none |
blockquote: font-kerning: none |
font-size |
Number |
blockquote: font-size: 13 |
font-style |
Font style |
blockquote: font-style: bold |
text-transform |
Text transform |
blockquote: text-transform: uppercase |
padding |
Measurement | Measurement[top,right,bottom,left] |
blockquote: padding: [5, 10, -5, 12] |
Key Prefix: blockquote-cite |
||
font-size |
Number |
blockquote: cite: font-size: 9 |
font-color |
Color |
blockquote: cite: font-color: #999999 |
font-family |
Font family name |
blockquote: cite: font-family: Noto Serif |
font-kerning |
normal | none |
blockquote: cite: font-kerning: none |
font-style |
Font style |
blockquote: cite: font-style: bold |
text-transform |
Text transform |
blockquote: cite: text-transform: uppercase |
-
If border-left-width is non-zero, the border is only applied to the left side. Otherwise, if border-width is non-zero, the border is drawn around the whole block.
The keys in this category control the arrangement and style of verse blocks.
Key | Value Type | Example |
---|---|---|
Key Prefix: verse |
||
background-color |
Color |
verse: background-color: #dddddd |
border-width[1] |
Number |
verse: border-width: 0.5 |
border-left-width[1] |
Number |
verse: border-left-width: 5 |
border-color[1] |
Color |
verse: border-color: #dddddd |
font-color |
Color |
verse: font-color: #333333 |
font-family[2] |
Font family name |
verse: font-family: M+ 1mn |
font-kerning |
normal | none |
verse: font-kerning: none |
font-size |
Number |
verse: font-size: 10 |
font-style |
Font style |
verse: font-style: bold |
text-transform |
Text transform |
verse: text-transform: uppercase |
padding |
Measurement | Measurement[top,right,bottom,left] |
verse: padding: [5, 10, -5, 12] |
Key Prefix: verse-cite |
||
font-size |
Number |
verse: cite: font-size: 9 |
font-color |
Color |
verse: cite: font-color: #999999 |
font-family |
Font family name |
verse: cite: font-family: Noto Serif |
font-kerning |
normal | none |
verse: cite: font-kerning: none |
font-style |
Font style |
verse: cite: font-style: italic |
text-transform |
Text transform |
verse: cite: text-transform: uppercase |
-
If border-left-width is non-zero, the border is only applied to the left side. Otherwise, if border-width is non-zero, the border is drawn around the whole block.
-
The verse block does not use a fixed-width font by default, which can affect the layout if the content relies on columns. You can change verse blocks to use a fixed-width font (not necessarily a monospaced font) using this setting.
The keys in this category control the arrangement and style of sidebar blocks.
Key | Value Type | Example |
---|---|---|
Key Prefix: sidebar |
||
background-color |
Color |
sidebar: background-color: #eeeeee |
border-color |
Color |
sidebar: border-color: #ffffff |
border-radius |
Number |
sidebar: border-radius: 4 |
border-width |
Number |
sidebar: border-width: 0.5 |
font-color |
Color |
sidebar: font-color: #262626 |
font-family |
Font family name |
sidebar: font-family: M+ 1p |
font-kerning |
normal | none |
sidebar: font-kerning: none |
font-size |
Number |
sidebar: font-size: 13 |
font-style |
Font style |
sidebar: font-style: italic |
text-transform |
Text transform |
sidebar: text-transform: uppercase |
padding |
Measurement | Measurement[top,right,bottom,left] |
sidebar: padding: [12, 15, 0, 15] |
Key Prefix: sidebar-title |
||
align |
Text alignment |
sidebar: title: align: center |
font-color |
Color |
sidebar: title: font-color: #333333 |
font-family |
Font family name |
sidebar: title: font-family: Noto Serif |
font-kerning |
normal | none |
sidebar: title: font-kerning: none |
font-size |
Number |
sidebar: title: font-size: 13 |
font-style |
Font style |
sidebar: title: font-style: bold |
text-transform |
Text transform |
sidebar: title: text-transform: uppercase |
The keys in this category control the arrangement and style of example blocks.
Key | Value Type | Example |
---|---|---|
Key Prefix: example |
||
background-color |
Color |
example: background-color: #fffef7 |
border-color |
Color |
example: border-color: #eeeeee |
border-radius |
Number |
example: border-radius: 4 |
border-width |
Number |
example: border-width: 0.75 |
font-color |
Color |
example: font-color: #262626 |
font-family |
Font family name |
example: font-family: M+ 1p |
font-kerning |
normal | none |
example: font-kerning: none |
font-size |
Number |
example: font-size: 13 |
font-style |
Font style |
example: font-style: italic |
text-transform |
Text transform |
example: text-transform: uppercase |
padding |
Measurement | Measurement[top,right,bottom,left] |
example: padding: [15, 15, 0, 15] |
The keys in this category control the arrangement and style of admonition blocks and the icon used for each admonition type.
Key | Value Type | Example |
---|---|---|
Key Prefix: admonition |
||
column-rule-color |
Color |
admonition: column-rule-color: #aa0000 |
column-rule-style |
solid | double | dashed | dotted |
admonition: column-rule-style: double |
column-rule-width |
Number |
admonition: column-rule-width: 0.5 |
font-color |
Color |
admonition: font-color: #999999 |
font-family |
Font family name |
admonition: font-family: Noto Sans |
font-kerning |
normal | none |
admonition: font-kerning: none |
font-size |
Number |
admonition: font-size: $base-font-size-large |
font-style |
Font style |
admonition: font-style: italic |
text-transform |
Text transform |
admonition: text-transform: none |
padding |
Measurement | Measurement[top,right,bottom,left] |
admonition: padding: [0, 12, 0, 12] |
Key Prefix: admonition-label |
||
align |
Text alignment |
admonition: label: align: center |
min-width |
Measurement |
admonition: label: min-width: 48 |
padding[1] |
Measurement | Measurement[top,right,bottom,left] |
admonition: padding: [0, 12, 0, 12] |
vertical-align |
top | middle | bottom |
admonition: label: vertical-align: top |
Key Prefix: admonition-label, admonition-label-<name>[2] |
||
font-color |
Color |
admonition: label: font-color: #262626 |
font-family |
Font family name |
admonition: label: font-family: M+ 1p |
font-kerning |
normal | none |
admonition: label: font-kerning: none |
font-size |
Number |
admonition: label: font-size: 12 |
font-style |
Font style |
admonition: label: font-style: bold_italic |
text-transform |
Text transform |
admonition: label: text-transform: lowercase |
Key Prefix: admonition-icon-<name>[2] |
||
name |
<icon set>-<icon name>[3] |
admonition: icon: tip: name: fas-fire |
stroke-color |
Color |
admonition: icon: important: stroke-color: ff0000 |
size |
Number |
admonition: icon: note: size: 24 |
-
The top and bottom padding values are ignored on admonition-label-padding.
-
<name>
can benote
,tip
,warning
,important
, orcaution
. All icon types must be grouped under a singleicons
category. In other words, do not declare theicons
category multiple times. The subkeys in the icon category cannot be flattened (e.g.,tip-name: far-lightbulb
is not valid syntax). -
Required. See the
.yml
files in the prawn-icon repository for a list of valid icon names. The prefix (e.g.,fas-
) determines which font set to use. If the prefix is not specified,fa-
is assumed.
The keys in this category control the arrangement of block images.
Key | Value Type | Example |
---|---|---|
Key Prefix: image |
||
align |
Image alignment |
image: align: left |
width[1] |
Measurement |
image: width: 100% |
border-color[2] |
Color |
image: border-color: #cccccc |
border-radius |
Number |
image: border-radius: 2 |
border-width[2] |
Number |
image: border-width: 0.5 |
border-fit[3] |
content | auto (default: content) |
image: border-fit: auto |
Key Prefix: image-alt |
||
content[4] |
Quoted string |
image: alt: content: "%{alt} (%{target})" |
font-color |
Color |
image: alt: font-color: #ff000 |
font-family |
Font family name |
image alt: font-family: Courier |
font-kerning |
normal | none |
image: alt: font-kerning: none |
font-size |
Number |
image: alt: font-size: 9 |
font-style |
Font style |
image: alt: font-style: italic |
caption-align |
Text alignment | inherit |
image: caption: align: inherit |
caption-text-align |
Text alignment | inherit |
image: caption: text-align: left |
caption-max-width[5] |
fit-content | fit-content(percentage) | none | Measurement |
image: caption: max-width: fit-content |
-
Only applies to block images. If specified, this value takes precedence over the value of the
width
attribute on the image macro, but not over the value of thepdfwidth
attribute. -
The border is only used if a border color is specified, the border width is specified, the border width is greater than 0, and the
noborder
role is not present. The border is drawn above the image on the inside of the box reserved for the image. -
The value
auto
means the border should expand to fit the width of the container (i.e., full width) instead of the image. -
Use the placeholders
%{alt}
,%{target}
,%{link}
, and%{/link}
to insert the alt text, image target, and link open/close tags into the content template. -
In order for the image to be sized correctly when max-width is fit-content, a width should always be specified on the image.
The keys in this category control the SVG integration.
Key | Value Type | Example |
---|---|---|
Key Prefix: svg |
||
fallback_font_family[1] |
Font family name |
svg: fallback_font_family: Times-Roman |
-
The fallback font family is only used when the font family in the SVG does not map to a known font name from the font catalog.
The keys in this category control the styling of lead paragraphs.
Key | Value Type | Example |
---|---|---|
Key Prefix: lead |
||
font-color |
Color |
lead: font-color: #262626 |
font-family |
Font family name |
lead: font-family: M+ 1p |
font-kerning |
normal | none |
lead: font-kerning: none |
font-size |
Number |
lead: font-size: 13 |
font-style |
Font style |
lead: font-style: bold |
text-transform |
Text transform |
lead: text-transform: uppercase |
line-height |
Number |
lead: line-height: 1.4 |
The keys in this category control the arrangement and style of the abstract.
Key | Value Type | Example |
---|---|---|
Key Prefix: abstract |
||
font-color |
Color |
abstract: font-color: #5c6266 |
font-size |
Number |
abstract: font-size: 13 |
font-style |
Font style |
abstract: font-style: italic |
text-transform |
Text transform |
abstract: text-transform: uppercase |
line-height |
Number |
abstract: line-height: 1.4 |
padding |
Measurement | Measurement[top,right,bottom,left] |
abstract: padding: [0, 12, 0, 12] |
Key Prefix: abstract-first-line |
||
font-color |
Color |
abstract: first-line: font-color: #AA0000 |
font-style |
Font style |
abstract: first-line: font-style: bold |
Key Prefix: abstract-title |
||
align |
Text alignment |
abstract: title: align: center |
font-color |
Color |
abstract: title: font-color: #333333 |
font-family |
Font family name |
abstract: title: font-family: Noto Serif |
font-kerning |
normal | none |
abstract: title: font-kerning: none |
font-size |
Number |
abstract: title: font-size: 13 |
font-style |
Font style |
abstract: title: font-style: bold |
text-transform |
Text transform |
abstract: title: text-transform: uppercase |
The keys in this category control the style of thematic breaks (aka horizontal rules).
Key | Value Type | Example |
---|---|---|
Key Prefix: thematic-break |
||
border-color |
Color |
thematic-break: border-color: #eeeeee |
border-style |
solid | double | dashed | dotted |
thematic-break: border-style: dashed |
border-width |
Measurement |
thematic-break: border-width: 0.5 |
margin-top |
Measurement |
thematic-break: margin-top: 6 |
margin-bottom |
Measurement |
thematic-break: margin-bottom: 18 |
The keys in this category control the arrangement and style of definition list items (terms and descriptions).
💡
|
Asciidoctor PDF supports unordered and ordered description lists.
These are defined as a description list, but get displayed as an unordered or ordered description list with the term as a subject.
Only one term is supported.
The subject is shown using the term font style (bold by default).
The subject is stacked above the description if the "stack" role is present.
Otherwise, the subject is arranged as a run-in followed by a subject stop ( [unordered]
* alpha:: partially complete and unstable
* beta:: feature complete and undergoing testing |
Key | Value Type | Example |
---|---|---|
Key Prefix: description-list |
||
term-font-color |
Color |
description-list: term-font-color: #AA0000 |
term-font-family |
Font family name |
description-list: term-font-family: Noto Serif |
term-font-kerning |
normal | none |
description-list: term-font-kerning: none |
term-font-size |
Number |
description-list: term-font-size: 12 |
term-font-style |
Font style |
description-list: term-font-style: italic |
term-text-transform |
Text transform |
description-list: term-text-transform: none |
term-line-height |
Number |
description-list: term-line-height: 1.2 |
term-spacing |
Measurement |
description-list: term-spacing: 5 |
description-indent |
Number |
description-list: description-indent: 15 |
The keys in this category control the arrangement and style of outline list items.
Key | Value Type | Example |
---|---|---|
Key Prefix: outline-list |
||
indent |
Measurement |
outline-list: indent: 40 |
item-spacing |
Measurement |
outline-list: item-spacing: 4 |
marker-font-color[1] |
Color |
outline-list: marker-font-color: #3c763d |
text-align[2] |
Text alignment |
outline-list: text-align: left |
-
Controls the color of the bullet glyph that marks items in unordered lists and the number for items in ordered lists.
-
Controls the alignment of the list text only, not nested content (blocks or lists).
The keys in this category control the arrangement and style of unordered list items.
Key | Value Type | Example |
---|---|---|
Key Prefix: ulist-marker |
||
font-family |
Font family name |
ulist: marker: font-family: Noto Serif |
font-size |
Number |
ulist: marker: font-size: 9 |
font-color |
Color |
ulist: marker: font-color: #cccccc |
line-height |
Number |
ulist: marker: line-height: 1.5 |
Key | Value Type | Example |
---|---|---|
Key Prefix: ulist-marker-<type>[1] |
||
content |
ulist: marker: disc: content: "\uf140" |
|
font-family |
Font family name |
ulist: marker: disc: font-family: fas |
font-size |
Number |
ulist: marker: disc: font-size: 9 |
font-color |
Color |
ulist: marker: disc: font-color: #ff0000 |
line-height |
Number |
ulist: marker: disc: line-height: 2 |
-
<type> is one of disc, square, circle, checked, unchecked
The keys in this category control the arrangement and style of tables and table cells.
Key | Value Type | Example |
---|---|---|
Key Prefix: table |
||
background-color |
Color |
table: background-color: #ffffff |
border-color |
Color |
table: border-color: #dddddd |
border-style |
solid | dashed | dotted |
table: border-style: solid |
border-width |
Number |
table: border-width: 0.5 |
caption-align |
Text alignment | inherit |
table: caption-align: inherit |
caption-text-align |
Text alignment | inherit |
table: caption: text-align: left |
caption-side |
top | bottom |
table: caption-side: bottom |
caption-max-width |
fit-content | fit-content(percentage) | none | Measurement |
table: caption-max-width: none |
font-color |
Color |
table: font-color: #333333 |
font-family |
Font family name |
table: font-family: Helvetica |
font-kerning |
normal | none |
table: font-kerning: none |
font-size |
Number |
table: font-size: 9.5 |
font-style |
Font style |
table: font-style: italic |
grid-color |
Color |
table: grid-color: #eeeeee |
grid-style |
solid | dashed | dotted |
table: grid-style: dashed |
grid-width |
Number |
table: grid-width: 0.5 |
Key Prefix: table-head |
||
background-color |
Color |
table: head: background-color: #f0f0f0 |
border-bottom-color |
Color |
table: head: border-bottom-color: #dddddd |
border-bottom-style |
solid | dashed | dotted |
table: head: border-bottom-style: dashed |
border-bottom-width |
Number |
table: head: border-bottom-width: 1 |
font-color |
Color |
table: head: font-color: #333333 |
font-family |
Font family name |
table: head: font-family: Noto Serif |
font-kerning |
normal | none |
table: head: font-kerning: none |
font-size |
Number |
table: head: font-size: 10 |
font-style |
Font style |
table: head: font-style: normal |
text-transform |
Text transform |
table: head: text-transform: uppercase |
Key Prefix: table-body |
||
background-color |
Color |
table: body: background-color: #fdfdfd |
stripe-background-color[1] |
Color |
table: body: stripe-background-color: #efefef |
Key Prefix: table-foot |
||
background-color |
Color |
table: foot: background-color: #f0f0f0 |
font-color |
Color |
table: foot: font-color: #333333 |
font-family |
Font family name |
table: foot: font-family: Noto Serif |
font-size |
Number |
table: foot: font-size: 10 |
font-style |
Font style |
table: foot: font-style: italic |
Key Prefix: table-cell |
||
padding |
Measurement | Measurement[top,right,bottom,left] |
table: cell: padding: 3 |
Key Prefix: table-asciidoc-cell |
||
style |
inherit | initial (default: inherit) |
table: asciidoc-cell: style: initial |
Key Prefix: table-header-cell |
||
background-color |
Color |
table: header-cell: background-color: #f0f0f0 |
font-color |
Color |
table: header-cell: font-color: #1a1a1a |
font-family |
Font family name |
table: header-cell: font-family: Noto Sans |
font-size |
Number |
table: header-cell: font-size: 12 |
font-style |
Font style |
table: header-cell: font-style: italic |
text-transform |
Text transform |
table: header-cell: text-transform: uppercase |
-
This key only controls the color that is used for stripes. The appearance of stripes is controlled using the
stripes
table attribute, thetable-stripes
document attribute (since Asciidoctor 2), or thestripes
document attribute (prior to Asciidoctor 2). Permitted attribute values are even, odd, all, and none. Prior to Asciidoctor 2, even rows are shaded by default (e.g.,stripes=even
). Since Asciidoctor 2, table stripes are not enabled by default (e.g.,stripes=none
).
The keys in this category control the style of the footnotes list at the end of the chapter (book) or document (otherwise).
If the footnotes-title
attribute is specified, it is styled as a block caption.
The styling of the links is controlled by the global link styles.
Key | Value Type | Example |
---|---|---|
Key Prefix: footnotes |
||
font-color |
Color |
footnotes: font-color: #cccccc |
font-size |
Number |
footnotes: font-size: 8 |
font-style |
Font style |
footnotes: font-style: italic |
item-spacing |
Measurement |
footnotes: item-spacing: 5 |
margin-top |
Measurement |
footnotes: margin-top: 10 |
text-transform |
Text transform |
footnotes: text-transform: lowercase |
The keys in this category control the arrangement and style of the table of contents.
Key | Value Type | Example |
---|---|---|
Key Prefix: toc |
||
font-color |
Color |
toc: font-color: #333333 |
font-family |
Font family name |
toc: font-family: Noto Serif |
font-kerning |
normal | none |
toc: font-kerning: none |
font-size |
Number |
toc: font-size: 9 |
font-style |
Font style |
toc: font-style: bold |
text-decoration |
Text decoration |
toc: text-decoration: underline |
text-decoration-color |
Color |
toc text-decoration-color: #cccccc |
text-decoration-width |
Number |
toc: text-decoration-width: 0.5 |
text-transform |
Text transform |
toc: text-transform: uppercase |
line-height |
Number |
toc: line-height: 1.5 |
indent |
Measurement |
toc: indent: 20 |
hanging-indent |
Measurement |
toc: hanging-indent: 0.5in |
margin-top |
Measurement |
toc: margin-top: 0 |
Key Prefix: toc-h<n>[1] |
||
font-color |
Color |
toc: h3-font-color: #999999 |
font-family |
Font family name |
toc: h2-font-family: Noto Serif |
font-kerning |
normal | none |
toc: h3-font-kerning: none |
font-size |
Number |
toc: h3-font-size: 9 |
font-style |
Font style |
toc: h2-font-style: italic |
text-transform |
Text transform |
toc: h3-text-transform: uppercase |
Key Prefix: toc-title |
||
align |
Text alignment |
toc: title: align: right |
font-color |
Color |
toc: title: font-color: #aa0000 |
font-family |
Font family name |
toc: title: font-family: Noto Serif |
font-kerning |
normal | none |
toc: title: font-kerning: none |
font-size |
Number |
toc: title: font-size: 18 |
font-style |
Font style |
toc: title: font-style: bold_italic |
text-transform |
Text transform |
sidebar: title: text-transform: uppercase |
Key Prefix: toc-dot-leader |
||
content |
Quoted string |
toc: dot-leader: content: ". " |
font-color[2] |
Color |
toc: dot-leader: font-color: #999999 |
font-style[2] |
Font style |
toc: dot-leader: font-style: bold |
levels[3] |
all | none | Integers (space-separated) |
toc: dot-leader: levels: 2 3 |
-
<n>
is a number ranging from 1 to 6, representing each of the six heading levels. -
The dot leader inherits all font properties except
font-style
from the roottoc
category. -
0-based levels (e.g., part = 0, chapter = 1). Dot leaders are only shown for the specified levels. If value is not specified, dot leaders are shown for all levels.
The keys in this category control the arrangement and style of running header and footer content. Please note that the running content will not be used unless a) the periphery (header or footer) is configured and b) the height key for the periphery is assigned a value.
🔥
|
If the height of the running content periphery is taller than the page margin, the running content will cover the main content. To avoid this problem, reduce the height of the running content periphery or make the page margin on that side larger. |
Key | Value Type | Example |
---|---|---|
Key Prefix: header |
||
background-color[1] |
Color |
header: background-color: #eeeeee |
background-image |
image macro |
header: background-image: image:running-content.svg[fit=contain] |
border-color |
Color |
header: border-color: #dddddd |
border-style |
solid | double | dashed | dotted |
header: border-style: dashed |
border-width |
Measurement |
header: border-width: 0.25 |
font-color |
Color |
header: font-color: #333333 |
font-family |
Font family name |
header: font-family: Noto Serif |
font-kerning |
normal | none |
header: font-kerning: none |
font-size |
Number |
header: font-size: 9 |
font-style |
Font style |
header: font-style: italic |
height[2] |
Measurement |
header: height: 0.75in |
line-height |
Number |
header: line-height: 1.2 |
margin |
Measurement | Measurement[top,right,bottom (n/a),left] |
header: margin: 0 |
content-margin |
Measurement | Measurement[top,right,bottom,left] |
header: content-margin: 0 |
padding[3] |
Measurement | Measurement[top,right,bottom,left] |
header: padding: [0, 3, 0, 3] |
image-vertical-align |
top | middle | bottom | Measurement |
header: image-vertical-align: 4 |
sectlevels[4] |
Integer |
header: sectlevels: 3 |
text-transform |
Text transform |
header: text-transform: uppercase |
title-style |
document | toc | basic |
header: title-style: toc |
vertical-align |
top | middle | bottom | [top | middle | bottom, Measurement] |
header: vertical-align: middle |
<side>-columns[5] |
Column specs triple |
header: recto: columns: <25% =50% >25% |
<side>-margin[5] |
Measurement | Measurement[top,right,bottom (n/a),left] |
header: recto: margin: [0, 0, 0, inherit] |
<side>-content-margin[5] |
Measurement | Measurement[top,right,bottom,left] |
header: recto: content-margin: [0, 0, 0, inherit] |
<side>-padding[5] |
Measurement | Measurement[top,right,bottom,left] |
header: recto: padding: [0, 3, 0, 3] |
<side>-<position>-content[5,6] |
Quoted string |
header: recto: left: content: '\{page-number}' |
Key Prefix: footer |
||
background-color[1] |
Color |
footer: background-color: #eeeeee |
background-image |
image macro |
footer: background-image: image:running-content.svg[fit=contain] |
border-color |
Color |
footer: border-color: #dddddd |
border-style |
solid | double | dashed | dotted |
footer: border-style: dashed |
border-width |
Measurement |
footer: border-width: 0.25 |
font-color |
Color |
footer: font-color: #333333 |
font-family |
Font family name |
footer: font-family: Noto Serif |
font-kerning |
normal | none |
footer: font-kerning: none |
font-size |
Number |
footer: font-size: 9 |
font-style |
Font style |
footer: font-style: italic |
height[2] |
Measurement |
footer: height: 0.75in |
line-height |
Number |
footer: line-height: 1.2 |
margin |
Measurement | Measurement[top (n/a),right,bottom,left] |
footer: margin: 0 |
content-margin |
Measurement | Measurement[top,right,bottom,left] |
footer: content-margin: 0 |
padding[3] |
Measurement | Measurement[top,right,bottom,left] |
footer: padding: [0, 3, 0, 3] |
image-vertical-align |
top | middle | bottom | Measurement |
footer: image-vertical-align: 4 |
sectlevels[4] |
Integer |
footer: sectlevels: 3 |
text-transform |
Text transform |
footer: text-transform: uppercase |
title-style |
document | toc | basic |
footer: title-style: toc |
vertical-align |
top | middle | bottom | [top | middle | bottom, Measurement] |
footer: vertical-align: top |
<side>-columns[5] |
Column specs triple |
footer: verso: columns: <50% =0% <50% |
<side>-margin[5] |
Measurement | Measurement[top (n/a),right,bottom,left] |
footer: verso: margin: [0, inherit, 0, 0] |
<side>-content-margin[5] |
Measurement | Measurement[top,right,bottom,left] |
footer: verso: content-margin: [0, inherit, 0, 0] |
<side>-padding[5] |
Measurement | Measurement[top,right,bottom,left] |
footer: verso: padding: [0, 3, 0, 3] |
<side>-<position>-content[5,6] |
Quoted string |
footer: verso: center: content: '\{page-number}' |
Key Prefix: running-content |
||
start-at[7] |
title | toc | body | Integer |
running-content: start-at: toc |
-
To make the background color and border span the width of the page, set the margin to 0 (and adjust the content-margin accordingly).
-
If the height is not set, the running content at this periphery is disabled.
-
Do not use negative margins. Instead, adjust the values of the margin and content-margin keys.
-
The maximum section level considered when assigning the implicit
section-title
attribute (and related) available to the running content. -
<side>
can berecto
(right-hand, odd-numbered pages) orverso
(left-hand, even-numbered pages). Thecolumns
key can also be defined one level up (onheader
orfooter
), in which case the setting will be inherited. Where the page sides fall in relation to the physical or printed page number is controlled using thepdf-folio-placement
attribute (except whenmedia=prepress
, which impliesphysical
). -
<position>
can beleft
,center
orright
. -
The
title
andtoc
values are only recognized if the title page is enabled (i.e., doctype is book ortitle-page
attribute is set) Thetoc
value only applies if the toc is in the default location (before the first page of the body). If the toc macro is used to position the toc, the start-at behavior is the same as if the toc is not enabled. If value is an integer, the running content will start at the specified page of the body (i.e., 1 is first page, 2 is second page, etc.)
❗
|
If you don’t specify a height for either the header or footer key, it effectively disables the content at that periphery. |
💡
|
Although not listed in the table above, you can control the font settings (font-family, font-size, font-color, font-style, text-transform) that get applied to the running content in each column position for each page side (e.g., footer-<side>-<position>-font-color ).
For example, you can set the font color used for the right-hand column on recto pages by setting footer-recto-right-font-color: 6CC644 .
|
If you define running header and footer content in your theme (including the height), you can still disable this content per document by setting the noheader
and nofooter
attributes in the AsciiDoc document header, respectively.
If you extend either the base or default theme, and don’t specify content for the footer, the current page number will be added to the right side on recto pages and the left side on verso pages. To disable this behavior, you can use the following snippet:
extends: default
footer:
recto:
right:
content: ~
verso:
left:
content: ~
Instead of erasing the content (which is what the ~
does), you can specify content of your choosing.
If you want to replace the alternating page numbers with a centered page number, then you can restrict the footer to a single column and specify the content for the center position.
extends: default
footer:
columns: =100%
recto:
center:
content: '{page-number}'
verso:
center:
content: '{page-number}'
In the last two examples, the recto and verso both have the same content. In this case, you can reduce the amount of configuring using a YAML reference. For example:
extends: default
footer:
columns: =100%
recto: &shared_footer
center:
content: '{page-number}'
verso: *shared_footer
The &shared_footer
assigns an ID to the YAML subtree under the recto
key and the *shared_footer
outputs a copy of it under the verso
key.
This technique can be used throughout the theme file as it’s a core feature of YAML.
You can use any attribute defined in your AsciiDoc document (such as doctitle
) in the content of the running header and footer.
In addition, the following attributes are also available when defining the content keys in the footer:
-
page-count
-
page-number (only set if the
pagenums
attribute is set on the document, which it is by default) -
page-layout
-
document-title
-
document-subtitle
-
part-title
-
chapter-title
-
section-title
-
section-or-chapter-title
If you reference an attribute which is not defined, all the text on that same line in the running content will be dropped.
This feature allows you to have alternate lines that are selected when all the attribute references are satisfied.
One case where this is useful is when referencing the page-number
attribute.
If you unset the pagenums
attribute on the document, any line in the running content that makes reference to {page-number}
will be dropped.
You can also use built-in AsciiDoc text replacements like (C)
, numeric character references like ©
, hexadecimal character references like €
, and inline formatting (e.g., bold, italic, monospace).
Here’s an example that shows how attributes and replacements can be used in the running footer:
header:
height: 0.75in
line-height: 1
recto:
center:
content: '(C) ACME -- v{revnumber}, {docdate}'
verso:
center:
content: $header-recto-center-content
footer:
background-image: image:running-content-bg-{page-layout}.svg[]
height: 0.75in
line-height: 1
recto:
right:
content: '{section-or-chapter-title} | *{page-number}*'
verso:
left:
content: '*{page-number}* | {chapter-title}'
You can split the content value across multiple lines using YAML’s multiline string syntax.
In this case, the single quotes around the string are not necessary.
To force a hard line break in the output, add +
to the end of the line in normal AsciiDoc fashion.
footer:
height: 0.75in
line-height: 1.2
recto:
right:
content: |
Section Title - Page Number +
{section-or-chapter-title} - {page-number}
verso:
left:
content: |
Page Number - Chapter Title +
{page-number} - {chapter-title}
💡
|
You can use most AsciiDoc inline formatting in the values of these keys. For instance, to make the text bold, surround it in asterisks (as shown above). One exception to this rule are inline images, which are described in the next section. |
You can add an image to the running header or footer using the AsciiDoc inline image syntax.
The image target is resolved relative to the value of the pdf-themesdir
attribute.
If the image macro is the whole value for a column position, you can use the position
and fit
attributes to align and scale it relative to the column box.
Otherwise, the image is treated like a normal inline image, for which you can only adjust the width.
Here’s an example of how to use an image in the running header (which also applies for the footer).
header:
height: 0.75in
image-vertical-align: 2 # # (1)
recto:
center:
content: image:footer-logo.png[width=80]
verso:
center:
content: $header-recto-center-content
-
You can use the
image-vertical-align
key to slightly nudge the image up or down.
🔥
|
By default, the image must fit in the allotted space for the running header or footer.
Otherwise, you will run into layout issues.
Adjust the width attribute accordingly using the pdfwidth attribute.
Alternatively, you can set the fit attribute to scale-down (e.g., fit=scale-down ) to reduce the image size to fit in the available space or contain (i.e., fit=contain ) to scale the image (up or down) to fit the available space.
|
After creating a theme, you’ll need to tell Asciidoctor PDF where to find it. This is done using AsciiDoc attributes.
There are three AsciiDoc attributes that tell Asciidoctor PDF how to locate and apply your theme.
- pdf-theme (or pdf-style)
-
The name of the YAML theme file to load. If the name ends with
.yml
, it’s assumed to be the complete name of a file and is resolved relative topdf-themesdir
, if specified, otherwise the current directory. Otherwise,-theme.yml
is appended to the name to make the file name (i.e.,<name>-theme.yml
) and is resolved relative topdf-themesdir
, if specified, otherwise the built-in themes dir. - pdf-themesdir (or pdf-stylesdir)
-
The directory where the theme file is located. Specifying an absolute path is recommended.
If you use images in your theme, image paths are resolved relative to this directory. If
pdf-theme
ends with.yml
, andpdf-themesdir
is not specified, thenpdf-themesdir
defaults to the directory of the path specified bypdf-theme
. - pdf-fontsdir
-
The directory or directories where the fonts used by your theme, if any, are located. Multiple entries must be separated by either a comma or a semi-colon. To reference a file inside a JAR file on the classpath, prefix with the path with
uri:classloader:
(AsciidoctorJ only). Specifying an absolute path is recommended.
Let’s assume that you’ve put your theme files inside a directory named resources
with the following layout:
document.adoc resources/ themes/ basic-theme.yml fonts/ roboto-normal.ttf roboto-italic.ttf roboto-bold.ttf roboto-bold_italic.ttf
Here’s how you’d load your theme when calling Asciidoctor PDF:
$ asciidoctor-pdf -a pdf-themesdir=resources/themes -a pdf-theme=basic -a pdf-fontsdir=resources/fonts
If all goes well, Asciidoctor PDF should run without an error or warning.
📎
|
You only need to specify the pdf-fontsdir if you’re using custom fonts in your theme.
|
You can skip setting the pdf-themesdir
attribute and just pass the absolute path of your theme file to the pdf-theme
attribute.
$ asciidoctor-pdf -a pdf-theme=resources/themes/basic-theme.yml -a pdf-fontsdir=resources/fonts
However, in this case, image paths in your theme won’t be resolved properly.
Paths are resolved relative to the current directory. However, in the future, this may change so that paths are resolved relative to the base directory (typically the document’s directory). Therefore, it’s recommend that you specify absolute paths for now to future-proof your configuration.
$ asciidoctor-pdf -a pdf-themesdir=/path/to/resources/themes -a pdf-theme=basic -a pdf-fontsdir=/path/to/resources/fonts
As usual, you can also use build tools like Maven and Gradle to build a themed PDF. The only thing you need to add to an existing build is the attributes mentioned above.
Speaking of Java, you can bundle and distribute your theme and fonts in a jar file.
To reference the theme file and/or directory of fonts from inside the jar, refer to their location on the classpath using the uri:classloader:
prefix.
Here’s how you’d load both the theme and fonts from the classpath:
$ asciidoctorj -b pdf -a pdf-theme="uri:classloader:/path/to/themes/my-theme.yml" -a pdf-fontsdir="uri:classloader:/path/to/fonts" document.adoc
This only works when running Asciidoctor PDF on the JVM.
There are various settings in the theme you control using document attributes. These settings override equivalent keys defined in the theme file, where applicable.
Attribute | Value Type | Example |
---|---|---|
autofit-option |
flag (default: not set) |
:autofit-option: |
chapter-label |
string (default: Chapter) |
:chapter-label: Chapitre |
<face>-cover-image[1] |
path[2] | image macro[3] |
:front-cover-image: image:front-cover.pdf[] |
hyphens[7] |
language code | blank to default to en_us (default: not set) |
:hyphens: de |
media |
screen | print | prepress |
:media: prepress |
compress |
flag (default: not set) |
:compress: |
optimize |
screen | ebook | printer | prepress | default (default: default) |
:optimize: prepress |
outlinelevels[10] |
Integer | Integer:Integer (default: same as toclevels) |
:outlinelevels: 2 |
page-background-image[4] |
path[2] | image macro[3] |
:page-background-image: image:bg.jpg[] |
page-background-image-(recto|verso)[4] |
path[2] | image macro[3] |
:page-background-image-recto: image:bg-recto.jpg[] |
page-foreground-image |
path[2] | image macro[3] |
:page-foreground-image: image:watermark.svg[] |
pagenums[5] |
flag (default: set) |
:pagenums: |
pdf-page-layout |
portrait | landscape |
:pdf-page-layout: landscape |
pdf-page-margin |
:pdf-page-margin: [1in, 0.5in] |
|
pdf-page-mode |
outline | none | thumbs | fullscreen | fullscreen outline | fullscreen none | fullscreen thumbs (default: outline) |
:pdf-page-mode: fullscreen none |
pdf-page-size |
:pdf-page-size: [6in, 9in] |
|
pdf-folio-placement |
virtual | virtual-inverted | physical | physical-inverted |
:pdf-folio-placement: physical |
pdf-version |
1.3 | 1.4 | 1.5 | 1.6 | 1.7 (default: 1.4) |
:pdf-version: 1.7 |
pdfmark[6] |
flag (default: not set) |
:pdfmark: |
scripts[7] |
cjk (default: not set) |
:scripts: cjk |
text-align[8] |
:text-align: left |
|
title-logo-image |
path[2] | image macro[3] |
:title-logo-image: image:logo.png[top=25%, align=center, pdfwidth=0.5in] |
title-page[9] |
flag (default: not set) |
:title-page: |
title-page-background-image |
path[2] | image macro[3] |
:title-page-background-image: image:title-bg.jpg[] |
toc-max-pagenum-digits[10] |
Integer (default: 3) |
:toc-max-pagenum-digits: 4 |
-
<face>
can befront
orback
. -
The path is resolved relative to base_dir.
-
In this case, the target of the image macro is resolved relative to
imagesdir
since it’s defined in an AsciiDoc document attribute (unlike in the theme, where it is resolved relative to the value ofpdf-themesdir
). If the image macro syntax is not used, the value is resolved relative to the base directory, which defaults to the document directory. -
By default, page background images are automatically scaled to fit the bounds of the page (i.e.,
fit=contain
) and centered (i.e.,position=center
). The size of the background image can be controlled using any of the sizing attributes on the image macro (i.e., fit, pdfwidth, scaledwidth, or width) whenfit=none
. The position of the background image can be controlled using theposition
attribute. If the recto (right-hand, odd-numbered pages) or verso (left-hand, even-numbered pages) background is specified, it will be used only for that side. If a background image isn’t specified for a side, the converter will use the default page background image (page-background-image
), if specified. To disable the background image for a side, use the valuenone
. -
Controls whether the implicit
page-number
attribute is to the running header and footer content specified in the theme file. Instead of disabling page numbers, you can use thenoheader
andnofooter
attributes to disable the running header and footer, respectively. -
Enables generation of the pdfmark file, which contains metadata that is fed to Ghostscript when optimizing the PDF file.
-
Activates line break rules for CJK languages (specifically Chinese and Japanese). Chinese and Japanese are written without spaces (and may not use spaces when mixing with English words either). This setting allows a line break to be placed between any two CJK characters to accommodate wrapping. These languages also use different punctuation for pause, full stop, and dash, which are taken into account when breaking lines.
-
(Experimental) The
text-align
document attribute is intended as a simple way to toggle text justification. The value of this attribute overrides thebase-align
key set by the theme. For more fine-grained control, you should customize using the theme. -
The title page is only enabled by default for the book doctype. To force the title page to be used for other doctypes, set the
title-page
attribute in the document header. -
If the TOC overlaps the first page of content, increase this number.
-
The second number in the value of
outlinelevels
is the number of levels of the outline to expand (e.g.,3:1
). If the second number is not present, all levels are expanded.
Asciidoctor PDF provides the following behaviors to assist with printing:
-
Shows the URL for links (unless the linked text matches the URL)
-
Consolidates page ranges in the index
You activate these printing features by setting the media
attribute to print
in the header of your AsciiDoc document (e.g., :media: print
) or from the API or CLI (e.g., -a media=print
).
In addition to the printing mode behaviors, Asciidoctor PDF provides the following behaviors to assist with publishing:
-
Double-sided (mirror) page margins
-
Automatic facing pages
You activate these publishing (aka prepress) features by setting the media
attribute to prepress
in the header of your AsciiDoc document (e.g., :media: prepress
) or from the API or CLI (e.g., -a media=prepress
).
The following sections describe the behaviors that this setting activates.
The page margins for the recto (right-hand, odd-numbered) and verso (left-hand, even-numbered) pages are automatically calculated by replacing the side page margins with the values of the page-margin-inner
and page-margin-outer
keys.
For example, let’s assume you’ve defined the following settings in your theme:
page:
margin: [0.5in, 0.67in, 0.67in, 0.67in]
margin-inner: 0.75in
margin-outer: 0.59in
The page margins for the recto and verso pages will be resolved as follows:
- recto page margin
-
[0.5in, 0.59in, 0.67in, 0.75in]
- verso page margin
-
[0.5in, 0.75in, 0.67in, 0.59in]
The page margins alternate between recto and verso. The first page in the document (after the cover) is a recto page.
If no cover is specified, the recto margin is not applied to the title page.
To apply the recto margin to the title page, but not include a cover, assign the value ~
to the front-cover-image
attribute.
When converting the book doctype using the prepress media setting, a blank page will be inserted when necessary to ensure the following elements start on a recto page:
-
Title page
-
Table of contents
-
First page of body
-
Parts and chapters
Other “facing” pages may be added in the future.
It’s possible to disable the automatic facing feature for a given part or chapter. This can be done by adding the nonfacing option to the section node. When the nonfacing option is present, the part or chapter title will be placed on the next adjacent page rather than the next facing page.
[%nonfacing]
= Minor Chapter
content
For documents that use the article doctype, Asciidoctor PDF incorrectly places the document title and table of contents on their own pages. This can result in the page numbering and the page facing to be out of sync. As a workaround, Asciidoctor PDF inserts a blank page, if necessary, to ensure the first page of body content is a recto-facing page.
You can check on the status of this defect by following issue #95.
You can define and apply your own source highlighting theme to source blocks when using Rouge as the source highlighter. This section explains how.
A custom theme for Rouge is defined using a Ruby class. Start by creating a Ruby source file to define your theme. Name the file according to the name of your theme and put the file in a folder of your choice (e.g., rouge_themes/custom.rb). The name of the Ruby class doesn’t matter, though it’s customary to name it according to the name of the theme as well.
require 'rouge' unless defined? ::Rouge.version
module Rouge; module Themes
class Custom < CSSTheme
name 'custom'
style Comment, fg: '#008800', italic: true
style Error, fg: '#a61717', bg: '#e3d2d2'
style Str, fg: '#0000ff'
style Str::Char, fg: '#800080'
style Num, fg: '#0000ff'
style Keyword, fg: '#000080', bold: true
style Operator::Word, bold: true
style Name::Tag, fg: '#000080', bold: true
style Name::Attribute, fg: '#ff0000'
style Generic::Deleted, fg: '#000000', bg: '#ffdddd', inline_block: true, extend: true
style Generic::Inserted, fg: '#000000', bg: '#ddffdd', inline_block: true, extend: true
style Text, {}
end
end; end
Each style declaration accepts the following properties:
-
fg
- sets the foreground (text) color -
bg
- sets the background color -
bold
- change the font weight to bold -
italic
- change the font style to italic -
underline
- add an underline to the text -
inline_block
- fill the background color to the height of the line (Asciidoctor PDF only) -
extend
- extend the background color to the end of the line for a line-oriented match (Asciidoctor PDF only)
Colors are defined using hexadecimal format (e.g., #ff0000 for red).
Use the Text
token to set the background color of the source block and the default text color.
The complete list of tokens can be found in the token.rb file from Rouge. Refer to the bundled themes to find more examples.
Once you’ve defined your theme, you need to enable it use it using the rouge-style
document attribute, which you specify in the document header or via the Asciidoctor CLI or API.
:source-highlighter: rouge
:rouge-style: custom
Finally, you need to active your theme by requiring the theme file when you invoke Asciidoctor.
$ asciidoctor -r ./rouge_themes/custom.rb sample.adoc
You should now see that the source code is highlighted to your liking. For more information about source highlighting with Rouge, refer to the Rouge project page.
This converter uses Prawn under the covers to generate the PDF. Prawn is a low-level PDF writer that can load fonts, ink text, embed images, add graphics, and draw lines. With those operations alone, this converter manages to produce a PDF from an AsciiDoc document. This section explains the role of theming in this process and how to extend the converter to take it further.
While creating the PDF document, there are thousands of small decisions the converter must make about how to instruct Prawn to layout the content elements on the page (so-called “hackable typesetting”). But once these elements are written, they can’t be moved or styled (as is the case with HTML and CSS). To help influence those decisions—and thus prevent the converter from becoming too opinionated, a theming system was introduced. That theming system is described in this document.
The theme support is there to provide basic customizations (fonts, colors, borders, spacing, etc.). But it can only go so far. At some point, it becomes necessary to extend the converter to meet advanced design requirements.
Before you dive into extending this converter, you’ll need to understand how to use Prawn. The article Hackable PDF Typesetting in Ruby with Prawn gives a crash course in how to create your first PDF document containing text, graphics, and images with Prawn. That article is essential reading for working with Asciidoctor PDF, which uses many of the same operations (as well as many helpful add-ons). Once you feel comfortable with Prawn, you’re ready to extend the converter.
The methods on a converter class that handle conversion follow the pattern convert_<name>
for block elements (e.g., convert_example
) and convert_inline_<name>
for inline elements (e.g., convert_inline_anchor
), where <name>
is the name of the element.
When you override a block element, you write PDF objects directly to the Prawn Document (the current context). When you override an inline element, you return pseudo-HTML, which is then parsed and converted into PDF objects.
The pseudo-HTML in Asciidoctor PDF evolved from the inline formatting in Prawn, now supporting the following elements: a, br, button, code, color, del, em, font, img, key, mark, span, strong, sub, sup.
All decimal and hexadecimal character references are supported, as well as the named entities amp, apos, gt, lt, nbsp, and quot (e.g., '
).
You can change the font color using the rgb
attribute on the color
element (e.g., <color rgb="#ff0000">
) and the font family and size using the name
and size
attributes on the font
element, respectively (e.g., <font name="sans" size="12">
).
You can also use the style
attribute on span
to control the font color, weight, and style using the relevant CSS property names.
The pseudo-HTML in Asciidoctor PDF also supports the class
attribute on any element for applying roles from the theme.
(Though not recommended, you can pass this pseudo-HTML straight through to Prawn using an inline passthrough in AsciiDoc).
Starting with Asciidoctor 2, defining an extending converter and registering it in place of the original is very straightforward.
class CustomPDFConverter < (Asciidoctor::Converter.for 'pdf')
register_for 'pdf'
# overrides go here
end
As it stands, the converter doesn’t do anything differently than the primary converter because we haven’t yet overridden any of its methods. Let’s do that now, starting by overriding the thematic break (aka horizontal rule) to make it render like a ribbon:
def convert_thematic_break node
theme_margin :thematic_break, :top
stroke_horizontal_rule 'FF0000', line_width: 0.5, line_style: :solid
move_down 1
stroke_horizontal_rule 'FF0000', line_width: 1, line_style: :solid
move_down 1
stroke_horizontal_rule 'FF0000', line_width: 0.5, line_style: :solid
theme_margin :thematic_break, :bottom
end
This converter will replace the thematic break with a red ribbon.
Another way to override the converter is to modify the node, then delegate back to the primary converter.
Let’s put a page break before all paragraphs unless the cursor is at the top of the page.
We’ll call super
to let the primary converter handle the work of rendering the paragraph.
def convert_paragraph node
bounds.move_past_bottom unless at_page_top?
super
end
Now let’s look at how to modify an inline element. Let’s say we want to override the kbd element.
def convert_inline_kbd node
%(<strong><color rgb="AA0000">#{(node.attr 'keys').join ' + '}</color></strong>)
end
Refer to the primary converter to discover the pseudo-HTML you can use for inline elements.
So far we’ve just been biting around the edges.
A more realistic use case is to customize the part title page in a multi-part book.
Since this is a specialized section element, there’s a dedicated method named layout_part_title
that you’ll need to override.
Let’s customize the part title page by making the background orange, making the font white, centering the title on the page, and disabling the running content. (You don’t need to start a new page before and after the part title since that’s already done for you).
def layout_part_title node, title, opts = {}
fill_absolute_bounds 'E64C3D'
move_down 20
typeset_text title, (calc_line_metrics 1.5), color: 'FFFFFF', inline_format: true, align: :center, size: 42
page.instance_variable_set :@imported_page, true
end
The method typeset_text
and calc_line_metrics
are provided by Asciidoctor PDF to make writing text easier.
If you wanted, you could just use the low-level text
method provided by Prawn.
To find all the available methods to override, consult the API docs. For deeper examples of how to override the behavior of the converter, refer to the extended converter in the InfoQ Mini-Book template.
Now that you’ve seen some examples of how to extend the converter, let’s look at how to use it.
Any TTF font can be used with Prawn—and hence Asciidoctor PDF—without modifications (unless, of course, it’s corrupt or contains errors). However, you may discover that kerning is disabled and certain required glyphs are missing (or replaced with boxes). To address these problems, you need to prepare the font using a font program such as FontForge.
Before using the font, you may want to check that the font is valid. To do so, create the following script, which will verify that the TTF font is free from errors.
require 'ttfunk'
require 'ttfunk/subset_collection'
ttf_subsets = TTFunk::SubsetCollection.new TTFunk::File.open ARGV[0]
(0...(ttf_subsets.instance_variable_get :@subsets).size).each {|idx| ttf_subsets[idx].encode }
Run the script on your font as follows:
$ ruby validate-font.rb path/to/font.ttf
If this script fails, the font will not work with Asciidoctor PDF. To repair it, open the font in FontForge and resave it using File › Generate Fonts… › Generate. Dismiss any warning dialogs.
Resaving the font in FontForge will usually resolve any errors in the font. (If not, you may need to find another font, or at least another copy of it).
To ready your font for use with Asciidoctor PDF, you’ll need to modify it using a font program. We recommend using FontForge. But don’t let this scare you off. FontForge essentially works like a vector-drawing tool, in which each character is a separate canvas. You can find a crash course in how to use the program on the FontForge project site.
Here are the modifications you need to apply to a custom font for it to work best with Asciidoctor PDF:
-
Convert the font to TTF (only required if the font is not already a TTF, such as an OTF or TTC).
-
Add the glyphs for the required characters if missing from the font (optional if using a fallback font).
-
Subset the font to exclude unused characters to reduce the file size (optional).
-
Save the file using the old-style kern table to activate kerning.
📎
|
Technically, subsetting the font (i.e., removing glyphs) is not required since Prawn only embeds the characters from the font used in the document (i.e., it automatically subsets the font). However, if you plan to commit the font to a repository, subsetting helps keep the file size down. |
Most fonts do not provide glyphs for all the Unicode character ranges (i.e., scripts). (A glyph is the corresponding vector image for a Unicode character). In fact, many fonts only include glyphs for Latin (Basic, Supplement, and Extended) and a few other scripts (e.g., Cyrillic, Greek). That means certain glyphs Asciidoctor PDF relies on may be missing from the font.
Below are the non-Latin characters (identified by Unicode code point) on which Asciidoctor PDF relies that are often missing from fonts. Unless you’re using a fallback font that fills in the missing glyphs, you need to ensure these glyphs are present in your font (and add them if not).
-
\u00a0 - no-break space
-
\ufeff - zero width no-break space
-
\u200b - zero width space (used for line break hints)
-
\u000a - line feed character (zero width)
-
\u2009 - thin spaced (used in the button UI element)
-
\u202f - narrow no-break space (used in the keybinding UI element)
-
\u2011 - non-breaking hyphen
-
\u2022 - disc (used for first-level unordered list level)
-
\u25e6 - circle (used for second-level unordered list level)
-
\u25aa - square (used for third-level unordered list level)
-
\u2611 - ballot box checked (used for checked list item)
-
\u2610 - ballot box unchecked (used for unchecked list item)
-
\u2014 - em-dash (used in quote attribute)
-
\u203a - single right-pointing quotation mark (used in the menu UI element)
-
\u25ba - right pointer (used for media play icon when icon fonts are disabled)
-
.notdef - used as the default glyph when a requested character is missing from the font (usually a box)
📎
|
If the .notdef glyph is non-empty (i.e., contains splines), it will be used as the default glyph when the document requests a character that is missing from the font. Unlike other glyphs, the .notdef glyph is referenced by name only. It does not have a designated Unicode code point. |
If you’re preparing a font for use in verbatim blocks (e.g., a listing block), you’ll also need this range of characters:
-
\u2460 to \u2468 - circled numbers
One way to get these glyphs is to steal them from another font (or from another character in the same font). To do so, open the other font in FontForge, select the character, press Ctrl+c, switch back to your font, select the character again, and press Ctrl+v. You may need to scale the glyph so it fits properly in the art box.
❗
|
If you’re copying a non-visible character, be sure to set the width to 0 using Metrics › Set Width…, enter 0 into Set Width To, then click OK. |
When you’re done, save the font with the old-style kern table enabled. To do so, select File › Generate Fonts…, click Options, and make sure only the following options are selected (equivalent to the flags 0x90 + 0x08):
-
✓ OpenType
-
✓ Old style 'kern'
-
Then click Generate to generate and save the font.
Your font file is now ready to be used with Asciidoctor PDF.
Performing all this font modification manually can be tedious (not to mention hard to reproduce). Fortunately, FontForge provides a scripting interface, which you can use to automate the process.
In fact, that’s what we use to prepare the fonts that are bundled with Asciidoctor PDF. You can find that FontForge script, the Bash script that calls it, and the Docker image in which it is run in the scripts directory of this project. You can use that script as a starting point or reference for your own font preparation / modification script.