= Asciidoctor PDF Theming Guide Dan Allen // Settings: :idprefix: :idseparator: - :toc: macro :experimental: ifndef::env-github[:icons: font] ifdef::env-github[] :!toc-title: :caution-caption: :fire: :important-caption: :exclamation: :note-caption: :paperclip: :tip-caption: :bulb: :warning-caption: :warning: endif::[] :window: _blank // Aliases: :conum-guard-yaml: # ifdef::backend-pdf[:conum-guard-yaml: # #] :url-repo-root: https://github.com/asciidoctor/asciidoctor-pdf/tree/main :url-fontforge: https://fontforge.github.io/en-US/ :url-fontforge-scripting: https://fontforge.github.io/en-US/documentation/scripting/ :url-prawn: http://prawnpdf.org //// Topics remaining to document: * line height and line height length (and what that all means) * title page layout / title page images (logo & background) //// [.lead] The theming system is used to control the style of a PDF file generated by Asciidoctor PDF 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. TIP: The quickest way to create your own theme is to <>. This gives you a set of foundation styles to build on and provides a collection of <> (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 <>. If you want to combine your own fonts with the bundled fonts, you can either extend the font catalog (by setting `merge: true`) or <> alongside your own. WARNING: 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 <> section to learn more about these limitations. toc::[] == Language Overview The Asciidoctor PDF theme language is described using the http://en.wikipedia.org/wiki/YAML[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 can generally influence PDF settings, page numbering, font properties, background and borders, character selections, spacings, and running content. It has limited influence over the layout of elements on the page. If your theming requirements demand more than what this theming system can accomodate, you can <> to gain more control over the layout and style. The theme file must be named _-theme.yml_, where `` 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._ === Selectors and Properties 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`). [NOTE] ==== 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. * An underscore (`_`) may be used in place of a hyphen (`-`) in all property names (so you may use `font_family` or `font-family`). * An underscore (`_`) may be used in place of a hyphen (`-`) in all variable names (so you may use `$base_font_family` or `$base-font-family`). * Instead of separate properties for font weight and font style, the theme language combines these settings in the `font-style` property (allowed values: `normal`, `bold`, `italic`, and `bold_italic`). * The `align` property in the theme language is roughly equivalent to the `text-align` property in CSS. * The `font-color` property in the theme language is equivalent to the `color` property 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. === Basic Theme Here's an example of a basic theme file that extends the base theme: .basic-theme.yml [source,yaml] ---- 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 heading: font-color: #262626 font-size: 17 font-style: bold line-height: 1.2 link: font-color: #002FA7 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 <>. The converter uses the information from the theme map to help construct the PDF. === Basic Extended Theme Instead of designing a theme from scratch, you can extend the default theme using the `extends` key as follows: [source,yaml] ---- 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 the same theme appears multiple times in the theme hierarchy, it will only be loaded once by default. You can force the theme to be loaded, even if it has already been loaded, by adding the `!important` keyword at the end of the value offset by a space. WARNING: If you start a new theme from scratch, we strongly recommend defining TrueType fonts and specifying them in the `base` and `codespan` categories. Otherwise, Asciidoctor PDF will use built-in AFM fonts, which can result in missing functionality and warnings. [TIP] ==== Instead of creating a theme from scratch, another option is to download the {url-repo-root}/data/themes/default-theme.yml[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 ==== === Key Nesting 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: [source,yaml] ---- 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: [source,yaml] ---- base: font-color: #333333 font-family: Times-Roman font-size: 12 ---- Or even: [source,yaml] ---- 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. == Values 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 <>. === Inheritance 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 .Heading Inheritance **** 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. **** === Variables 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). IMPORTANT: 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, [source,yaml] ---- 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`. [source,yaml] ---- 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. [source,yaml] ---- 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. ==== Custom Variables 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: [source,yaml,subs=attributes+] ---- brand: primary-color: #E0162B {conum-guard-yaml} <1> secondary-color: '#FFFFFF' {conum-guard-yaml} <2> alert-color: '0052A5' {conum-guard-yaml} <3> ---- <1> 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. <2> You may put quotes around the CSS-style hex value to make it friendly to a YAML editor or validation tool. <3> 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: [source,yaml] ---- base: font-color: $brand-primary-color ---- === Math Expressions & Functions The theme language supports basic math operations to support calculated values. Like programming languages, the multiply and divide operators take precedence over the add and subtract operators. The following table lists the supported operations and the corresponding operator for each. [width=25%] |=== |Operation |Operator |multiply |* |divide |/ |add |+ |subtract |- |=== IMPORTANT: 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. [source,yaml] ---- conum: line-height: 4 / 3 ---- Variables may be used in place of numbers anywhere in the expression: [source,yaml] ---- 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. IMPORTANT: 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. [source,yaml] ---- base: font-size: 12.5 font-size-large: ceil($base-font-size * 1.25) ---- === Measurement Units 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: [width=25%] |=== |Unit |Suffix |Centimeter |cm |Inches |in |Millimeter |mm |Percentage^[1]^ |%, vw, or vh |Points |pt (default) |=== 1. 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: [source,yaml] ---- 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 === Alignments The align subkey is used to align text and images within the parent container. ==== Text Alignments Text can be aligned as follows: * left * center * right * justify (stretched to each edge) ==== Text Decorations The following decorations can be applied to text: * none (no decoration) * underline * line-through ==== Image Alignments Images can be aligned as follows: * left * center * right === Font Styles 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 === Text Transforms 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) [CAUTION#transform-unicode-letters] ==== Ruby 2.5 and better has built-in support for transforming the case of any letter defined by Unicode. You no longer need the `activesupport` or `unicode` gem to transform characters beyond the Basic Latin character set (e.g., accented characters). ==== === Colors 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. ==== Hex 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: [cols="8*m"] |=== |#ff0000 |#FF0000 |'ff0000' |'FF0000' |#f00 |#F00 |'f00' |'F00' |=== Here's how a hex color value appears in the theme file: [source,yaml] ---- base: font-color: #ff0000 ---- ==== RGB 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. NOTE: 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: [source,yaml] ---- base: font-color: [255, 0, 0] ---- ==== CMYK 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: [source,yaml] ---- base: font-color: [0, 0.99, 1, 0] ---- ==== Transparent It's possible to specify no color by assigning the special value `transparent`, as shown here: [source,yaml] ---- table: background-color: transparent ---- The `transparent` keyword can be used for the background or border color, but not the font color. === Images 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 `\{docdir}` attribute reference. The following image types (and corresponding file extensions) are supported: * PNG (.png) * JPEG (.jpg) * SVG (.svg) CAUTION: The GIF format (.gif) and BMP format (.bmp) are not supported unless you're using prawn-gmagick. See {url-repo-root}/README.adoc#supporting-additional-image-file-formats[support for additional image file formats] for details. Here's how an image is specified in the theme file as a bare image path: [source,yaml] ---- title-page: background-image: title-cover.png ---- Here's how the image is specified using the inline image macro: [source,yaml] ---- 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 `\{docdir}` attribute reference. [source,yaml] ---- 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: [source,yaml] ---- title-page: logo-image: image:logo.png[pdfwidth=2.5in,align=center] ---- === Quoted String 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 http://symfony.com/doc/current/components/yaml/yaml_format.html#strings[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 ``, ``, ``, ``, ``, ``, ``, and ``. The `` 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 `` element to change the color or the `name` and `size` attributes on the `` 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: [source,yaml] ---- menu-caret-content: " \u203a " ---- NOTE: 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 <>, so you can use most AsciiDoc inline formatting (e.g., `+*strong*+` or `+{attribute-name}+`) in the values of those keys. == Fonts You can select from <>, <> or <> loaded from TrueType (TTF) or OpenType (OTF) font files. If you want to use custom fonts, you must first declare them in your theme file. IMPORTANT: 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. === Built-In (AFM) Fonts The names of the built-in fonts (for general-purpose text) are as follows: [width=33.33%] |=== |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: [source,yaml] ---- 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 (http://en.wikipedia.org/wiki/Windows-1252[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. WARNING: Built-in (AFM) fonts do not use the <>. 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). .WINANSI Encoding Behavior **** 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: | 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 https://github.com/prawnpdf/prawn/blob/master/CHANGELOG.md#vastly-improved-handling-of-encodings-for-pdf-built-in-afm-fonts[this note in the Prawn CHANGELOG]. **** === Bundled Fonts 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: http://www.google.com/get/noto/#/family/noto-serif[Noto Serif]:: A serif font that can be styled as normal, italic, bold or bold_italic. http://mplus-fonts.osdn.jp/mplus-outline-fonts/design/index-en.html#mplus_1mn[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. http://mplus-fonts.osdn.jp/mplus-outline-fonts/design/index-en.html#mplus_1p[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. TIP: The default themes refer to the bundled fonts using the `GEM_FONTS_DIR` prefix. That means you can extend a default theme and not have to worry about how the bundled fonts get resolved. If you redeclare the bundled fonts in your custom theme, be sure to prefix the path with the `GEM_FONTS_DIR` token. An alternative approach is to 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`). === Custom Fonts 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. IMPORTANT: In order for a third-party font to work properly with Prawn (and hence Asciidoctor PDF), several modifications are required. See <> to learn how to prepare your font for use with Asciidoctor PDF. ==== Selecting Your Font 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. WARNING: 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 (or OTF) 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 https://github.com/googlefonts/roboto/releases[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_) ==== Declaring Your Font 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. [source,yaml,subs=attributes+] ---- font: catalog: merge: false {conum-guard-yaml} <1> Roboto: normal: roboto-normal.ttf italic: roboto-italic.ttf bold: roboto-bold.ttf bold_italic: roboto-bold_italic.ttf ---- <1> Set value to true to merge catalog with theme you're extending. 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. [source,yaml,subs=attributes+] ---- font: catalog: merge: false {conum-guard-yaml} <1> VLGothic: vlgothic.ttf ---- <1> Set value to true to merge catalog with theme you're extending. Font paths can be absolute or relative. Absolute paths are used as is. Relative font paths are resolved from the <>. 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: [source,yaml,subs=attributes+] ---- font: catalog: merge: false {conum-guard-yaml} <1> 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 ---- <1> Set value to true to merge catalog with theme you're extending. 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: [source,yaml] ---- heading: font-family: Roboto font-style: bold ---- The font name and font style are used to locate an entry in the font catalog. .About Fonts in SVGs **** 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. **** ==== Configuring the Font Search Path 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 ==== Subsetting Your Font 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 {url-fontforge}[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. === Fallback Fonts 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. IMPORTANT: 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. IMPORTANT: The fallback font only gets used when the primary font is a TrueType or OpenType font (i.e., TTF, DFont, TTC, OTF). Any glyph missing from an AFM font is simply replaced with the "`not`" glyph (`¬`). CAUTION: 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 https://github.com/android/platform_frameworks_base/blob/master/data/fonts/DroidSansFallback.ttf[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). [source,yaml] ---- 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: [source,yaml] ---- 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: [source,yaml] ---- 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 ---- TIP: 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: [source,yaml] ---- base: font-family: Roboto ---- That's it! Now you're covered. If your custom 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): [source,yaml] ---- 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. == Keys 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. TIP: 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 {url-repo-root}/data/themes/base-theme.yml[base theme]. IMPORTANT: The {url-repo-root}/data/themes/default-theme.yml[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. [#keys-extends] === Extends A theme can extend another theme using the `extends` key. For example: [source,yaml] ---- 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. [cols="3,4,5l"] |=== |Key |Value Type |Example |extends |String or Array + (default: []) |extends: - default - ./brand-theme.yml |=== === Font The font key is where you declare custom fonts (`catalog` key) and configure the fallback fonts (`fallbacks` key). The data format of the `catalog` key is a map. Each key is the name of the font that you can use to refer to the font elsewhere in the theme. The value is either a font path (which is used for all font styles) or another map that specifies a font path to each of the four font styles. You can also configure the `catalog` to merge entries from an inherited font catalog. See <>. The data format of the `fallbacks` key is an array. The values of the array are the font names declared in the `catalog` (or a name inherited from another theme). These fallbacks are used, in the order listed, when a glyph cannot be found in the primary font for a given element. [cols="1,2,5l"] |=== |Key |Value Type |Example |catalog |Map |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 |fallbacks |Array |font: fallbacks: - M+ 1p Fallback - Noto Emoji |=== ==== Extending the Font Catalog If you define a <> 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: .Redeclaring the bundle fonts in a custom theme [source,yaml] ---- 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: .Merging with the inherited font catalog [source,yaml] ---- 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. [#keys-role] === Role 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. IMPORTANT: Custom roles only apply to paragraphs and inline phrases. Here's an example of a role for making text red: [source,yaml] ---- role: red: font-color: #ff0000 ---- This role can be used as follows: [source,asciidoc] ---- Error text is shown in [.red]#red#. ---- You can also use a role to unset a font color (to make it inherit): [source,yaml] ---- role: heading-code: font-color: ~ ---- This role can be used as follows: [source,asciidoc] ---- == [.heading-code]`SELECT` clause ---- The converter provides several predefined roles, which can can all be redefined. The `lead` defines the font properties for a lead paragraph, whether the role is assign implicitly or explicitly. 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 `unresolved` role is applied to the text of an unresolved reference (currently footnotes only). 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. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-role]*Key Prefix:* <{zwsp}>> |background-color |<> + (default: _not set_) |role: highlight: background-color: #ffff00 |border-color |<> + (default: _not set_) |role: found: border-color: #cccccc |border-offset |<> + (default: 0) |role: found: border-offset: 2 |border-radius |<> + (default: _not set_) |role: found: border-radius: 3 |border-width |<> + (default: _not set_) |role: found: border-width: 0.5 |font-color |<> + (default: _inherit_) |role: red: font-color: #ff0000 |font-family |<> + (default: Courier) |role: label: font-family: M+ 1mn |font-size |<> + (default: _inherit_) |role: large: font-size: 12 |font-style |<> + (default: _inherit_) |role: heavy: font-style: bold |text-decoration |<> + (default: none) |role: deleted: text-decoration: line-through |text-decoration-color |<> + (default: $role--font-color) |role: deleted: text-decoration-color: #ff0000 |text-decoration-width |<> + (default: $base-text-decoration-width) |role: underline: text-decoration-width: 0.5 |=== [#keys-cover] === Cover The keys in this category control the front and back cover images. Currently, the only supported feature is setting the image per side. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-cover]*Key Prefix:* <> |-image^[1]^ |path, image macro^[2]^ + (default: _not set_) |cover: front: image: image:cover.pdf[page=2] |=== 1. `` can be `front` or `back`. 2. 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 the `page` attribute. The page from the PDF file will be imported as is. [#keys-page] === Page 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. NOTE: The background of the title page can be styled independently of other pages. See <> for details. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-page]*Key Prefix:* <<key-prefix-page,page>> |background-color^[1]^ |<<colors,Color>> + (default: #ffffff) |page: background-color: #fefefe |background-image^[2]^ |image macro^[3]^ + (default: _not set_) |page: background-image: image:page-bg.png[] |background-image-(recto{vbar}verso)^[2]^ |image macro^[3]^ + (default: _not set_) |page: background-image: recto: image:page-bg-recto.png[] verso: image:page-bg-verso.png[] |foreground-image^[2]^ |image macro^[3]^ + (default: _not set_) |page foreground-image: image:watermark.svg[] |initial-zoom |Fit {vbar} FitH {vbar} FitV + (default: FitH) |page: initial-zoom: Fit |layout |portrait {vbar} landscape + (default: portrait) |page: layout: landscape |margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 36) |page: margin: [0.5in, 0.67in, 1in, 0.67in] |margin-inner^[4]^ |<<measurement-units,Measurement>> + (default: 48) |page: margin-inner: 0.75in |margin-outer^[4]^ |<<measurement-units,Measurement>> + (default: 24) |page: margin-outer: 0.59in |mode |outline {vbar} none {vbar} thumbs {vbar} fullscreen {vbar} fullscreen outline {vbar} fullscreen none {vbar} fullscreen thumbs + (default: outline) |page: mode: fullscreen none |size |https://github.com/prawnpdf/pdf-core/blob/0.6.0/lib/pdf/core/page_geometry.rb#L16-L68[Named size^] {vbar} <<measurement-units,Measurement[width,height]>> + (default: A4) |page: size: Letter 3+|[#key-prefix-page-numbering]*Key Prefix:* <<key-prefix-page-numbering,numbering>> |start-at^[5]^ |cover {vbar} title {vbar} toc {vbar} after-toc {vbar} body {vbar} Integer + (default: body) |page: numbering: start-at: toc |=== 1. 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. 2. 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) when `fit=none`. The position of the image can be controlled using the `position` 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 value `none`. 3. Target may be an absolute path or a path relative to the value of the `pdf-themesdir` attribute. 4. The margins for `recto` (right-hand, odd-numbered) and `verso` (left-hand, even-numbered) pages are calculated automatically from the margin-inner and margin-outer values. These margins and used when the value `prepress` is assigned to the `media` 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 the `front-cover-image` and `back-cover-image` attributes. 5. The `cover` value is only recognized if the documet has a front cover page (i.e., `front-cover-image`). The `title`, `toc`, and `after-toc` values are only recognized if the title page is enabled (i.e., doctype is book or `title-page` attribute is set) The `toc` value only applies if the toc is in the default location (before the first page of the body). If value is `toc`, and 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.) If value is `after-toc`, the page numbering will start after the toc, no matter where it's placed in the document. [#keys-base] === Base 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. NOTE: 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,custom variables>> instead. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-base]*Key Prefix:* <<key-prefix-base,base>> |align |<<text-alignments,Text alignment>> + (default: left) |base: align: justify |border-color |<<colors,Color>> + (default: #eeeeee) |base: border-color: #eeeeee // border-radius is variable, not an official key //|border-radius //|<<values,Number>> //|base: // border-radius: 4 |border-width |<<values,Number>> + (default: 0.5) |base: border-width: 0.5 |font-color |<<colors,Color>> + (default: #000000) |base: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: Helvetica) |base: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: normal) |base: font-kerning: none |font-size |<<values,Number>> + (default: 12) |base: font-size: 10.5 // font-size-large is a variable, not an official key //|font-size-large //|<<values,Number>> //|base: // font-size-large: 13 |font-size-min |<<values,Number>> + (default: 6) |base: font-size-min: $base-font-size * 0.75 // font-size-small is a variable, not an official key //|font-size-small //|<<values,Number>> //|base: // font-size-small: 9 |font-style |<<font-styles,Font style>> + (default: normal) |base: font-style: normal |text-transform^[1]^ |none + (default: none) |base: text-transform: none |line-height-length^[2]^ |<<values,Number>> + (default: _not set_) |base: line-height-length: 12 |line-height^[2]^ |<<values,Number>> + (default: 1.15) |base: line-height: > $base-line-height-length / $base-font-size |text-decoration-width |<<values,Number>> + (default: 1) |base: text-decoration-width: 0.5 |=== 1. The `text-transform` key cannot be set globally. Therefore, this key should not be used. The value of `none` is implicit and is documented here for completeness. 2. `line-height-length` is a utility property that's internal to the theme. It's used as an intermediate property for computing the `base-line-height` from the base font size and the desired line height size. For instance, if you set `base-line-height-length`, you can use `$base-line-height-length / $base-font-size` to set the value of `base-line-height`. You don't have to go about it this way in your own theme. [#keys-quotes] === Quotes The keys in this category define the characters to use for typographic quotation marks (i.e., quotes). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-quotes]*Key Prefix:* <<key-prefix-quotes,quotes>> |quotes |<<quoted-string,Quoted string[double-open, double-close, single-open, single-close]>> + (default: ['\“', '\”', '\‘', '\’']) |quotes: - '«' - '»' - '‹' - '›' |=== [#keys-link] === Link The keys in this category are used to style hyperlink text. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-link]*Key Prefix:* <<key-prefix-link,link>> |background-color |<<colors,Color>> + (default: _not set_) |link: background-color: #efefef |border-offset |<<values,Number>> + (default: 0) |link: border-offset: 2 |font-color |<<colors,Color>> + (default: #0000ee) |link: font-color: #428bca |font-family |<<fonts,Font family name>> + (default: _inherit_) |link: font-family: Roboto |font-size |<<values,Number>> + (default: _inherit_) |link: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |link: font-style: italic |text-decoration |<<text-decorations,Text decoration>> + (default: none) |link: text-decoration: underline |text-decoration-color |<<colors,Color>> + (default: $link-font-color) |link: text-decoration-color: #0000ff |text-decoration-width |<<values,Number>> + (default: $base-text-decoration-width) |link: text-decoration-width: 0.5 |=== [#keys-codespan] === Codespan The keys in this category are used for inline monospaced text in prose and table cells. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-codespan]*Key Prefix:* <<key-prefix-codespan,codespan>> |background-color |<<colors,Color>> + (default: _not set_) |codespan: background-color: #f5f5f5 |border-color^[1]^ |<<colors,Color>> + (default: _not set_) |codespan: border-color: #cccccc |border-offset^[2]^ |<<values,Number>> + (default: 0) |codespan: border-offset: 2 |border-radius |<<values,Number>> + (default: _not set_) |codespan: border-radius: 3 |border-width |<<values,Number>> + (default: $base-border-width) |codespan: border-width: 0.5 |font-color |<<colors,Color>> + (default: _inherit_) |codespan: font-color: #b12146 |font-family |<<fonts,Font family name>> + (default: Courier) |codespan: font-family: M+ 1mn |font-size^[3]^ |<<values,Number>> + (default: _inherit_) |codespan: font-size: 1.15em |font-style |<<font-styles,Font style>> + (default: _inherit_) |codespan: font-style: bold |=== 1. 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 code phrase does not have nested formatting. Otherwise, the border will be inherited, producing a less than desirable result. 2. 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. 3. You're strongly encouraged to set the value of the font-size property to a relative font size using the `em` units (e.g., `0.9em`). A code span with a fixed font size will not be scaled when the font size of the parent element (e.g., table, caption, etc) is specified. However, by using a relative value, the font size will be computed relative to the size of the text that surrounds it, giving you effectively the same result. [#keys-heading] === Heading 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. The <<key-prefix-heading-level,heading-h1 key>> controls the font properties of the document title (aka doctitle) when the doctype is article and the title page is not enabled (i.e., the title-page document attribute is not set). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-heading]*Key Prefix:* <<key-prefix-heading,heading>> |align |<<text-alignments,Text alignment>> + (default: $base-align) |heading: align: center |font-color |<<colors,Color>> + (default: _inherit_) |heading: font-color: #222222 |font-family |<<fonts,Font family name>> + (default: _inherit_) |heading: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |heading: font-kerning: none // NOTE: heading-font-size is overridden by h<n>-font-size in base theme //|font-size //|<<values,Number>> + //(default: $base-font-size) //|heading: // font-size: 18 |font-style |<<font-styles,Font style>> + (default: bold) |heading: font-style: bold |text-decoration |<<text-decorations,Text decoration>> + (default: none) |heading: text-decoration: underline |text-decoration-color |<<colors,Color>> + (default: $heading-font-color) |heading: text-decoration-color: #cccccc |text-decoration-width |<<values,Number>> + (default: $base-text-decoration-width) |heading: text-decoration-width: 0.5 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |heading: text-transform: capitalize |line-height |<<values,Number>> + (default: 1.15) |heading: line-height: 1.2 |margin-top |<<measurement-units,Measurement>> + (default: 4) |heading: margin-top: 6 |margin-page-top |<<measurement-units,Measurement>> + (default: 0) |heading: margin-page-top: 12 |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |heading: margin-bottom: 6 |min-height-after |<<measurement-units,Measurement>> + (default: $base-font-size * $base-line-height * 1.5) |heading: min-height-after: 0.5in |chapter-break-before |always {vbar} auto + (default: always) |heading: chapter: break-before: auto |part-break-before |always {vbar} auto + (default: always) |heading: part: break-before: auto |part-break-after |always {vbar} auto + (default: auto) |heading: part: break-after: always 3+|[#key-prefix-heading-level]*Key Prefix:* <<key-prefix-heading-level,heading-h<n>{zwsp}>>^[1]^ |align |<<text-alignments,Text alignment>> + (default: $heading-align) |heading: h2-align: center |font-color |<<colors,Color>> + (default: $heading-font-color) |heading: h2-font-color: [0, 99%, 100%, 0] |font-family |<<fonts,Font family name>> + (default: $heading-font-family) |heading: h4-font-family: Roboto |font-kerning |normal {vbar} none + (default: $heading-font-kerning) |heading: h3-font-kerning: none |font-size^[1]^ |<<values,Number>> + (default: <1>=24; <2>=18; <3>=16; <4>=14; <5>=12; <6>=10) |heading: h6-font-size: $base-font-size * 1.7 |font-style |<<font-styles,Font style>> + (default: $heading-font-style) |heading: h3-font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: $heading-text-transform) |heading: h3-text-transform: uppercase |margin-top |<<measurement-units,Measurement>> + (default: $heading-margin-top) |heading: h2-margin-top: 6 |margin-page-top |<<measurement-units,Measurement>> + (default: $heading-margin-page-top) |heading: h2-margin-page-top: 12 |margin-bottom |<<measurement-units,Measurement>> + (default: $heading-margin-bottom) |heading: h2-margin-bottom: 10 |=== 1. `<n>` is a number ranging from 1 to 6, representing each of the six heading levels. h1 is used for part titles (book doctype) or the doctitle (article doctype when the title-page document attribute is not set). h2 is used for chapter titles (book doctype only). 2. 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). [#keys-section] === Section The keys in this category control the style of a section body. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-section]*Key Prefix:* <<key-prefix-section,section>> |indent |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[left,right]>>^[1]^ + (default: 0) |section: indent: [0.5in, 0] |=== 1. 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]`). [#keys-title-page] === Title Page The keys in this category control the style of the title page as well as the arrangement and style of the elements on it. IMPORTANT: 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:`). NOTE: Subtitle partitioning of the doctitle is only enabled when the title page is also enabled. TIP: For documents that declare the book doctype, the title page can be omitted by setting the `notitle` attribute in the AsciiDoc document header (i.e., `:notitle:`) or by setting the value of the `title_page` category key in the theme to `false`. (It's counterpart, `:!showtitle:`, does not work with this converter). For all other doctypes, the title page is not added by default. In that case, setting the `:notitle:` attribute only removes the document title from the first page of content. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-title-page]*Key Prefix:* <<key-prefix-title-page,title-page>> |align |<<text-alignments,Text alignment>> + (default: center) |title-page: align: right |background-color^[1]^ |<<colors,Color>> + (default: _inherit_) |title-page: background-color: #eaeaea |background-image^[2]^ |image macro^[3]^ + (default: _not set_) |title-page: background-image: image:title.png[] |font-color |<<colors,Color>> + (default: _inherit_) |title-page: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |title-page: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.15) |title-page: line-height: 1 3+|[#key-prefix-title-page-logo]*Key Prefix:* <<key-prefix-title-page-logo,title-page-logo>> |align |<<image-alignments,Image alignment>> + (default: _inherit_) |title-page: logo: align: right |image |image macro^[3]^ + (default: _not set_) |title-page: logo: image: image:logo.png[pdfwidth=25%] |top |<<measurement-units,Measurement>>^[4]^ + (default: 10%) |title-page: logo: top: 25% 3+|[#key-prefix-title-page-title]*Key Prefix:* <<key-prefix-title-page-title,title-page-title>> |display |none + (default: _not set_) |title-page: title: display: none |font-color |<<colors,Color>> + (default: _inherit_) |title-page: title: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: title: font-kerning: none |font-size |<<values,Number>> + (default: 18) |title-page: title: font-size: $heading-h1-font-size |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: title: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: title: text-transform: uppercase |line-height |<<values,Number>> + (default: $heading-line-height) |title-page: title: line-height: 0.9 |top |<<measurement-units,Measurement>>^[4]^ + (default: 40%) |title-page: title: top: 55% |margin-top |<<measurement-units,Measurement>> + (default: 0) |title-page: title: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: title: margin-bottom: 5 3+|[#key-prefix-title-page-subtitle]*Key Prefix:* <<key-prefix-title-page-subtitle,title-page-subtitle>> |display |none + (default: _not set_) |title-page: subtitle: display: none |font-color |<<colors,Color>> + (default: _inherit_) |title-page: subtitle: font-color: #181818 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: subtitle: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: subtitle: font-kerning: none |font-size |<<values,Number>> + (default: 14) |title-page: subtitle: font-size: $heading-h3-font-size |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: subtitle: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: subtitle: text-transform: uppercase |line-height |<<values,Number>> + (default: $heading-line-height) |title-page: subtitle: line-height: 1 |margin-top |<<measurement-units,Measurement>> + (default: 0) |title-page: subtitle: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: subtitle: margin-bottom: 5 3+|[#key-prefix-authors]*Key Prefix:* <<key-prefix-authors,title-page-authors>> |content |<<quoted-string,Quoted AsciiDoc string>> + (optional subkeys: name_only, with_email, with_url) + (default: "\{author}") |title-page: authors: content: name_only: "{author}" with_email: "{author} <{email}>" with_url: "{url}[{author}]" |display |none + (default: _not set_) |title-page: authors: display: none |delimiter |<<quoted-string,Quoted string>> + (default: ', ') |title-page: authors: delimiter: '; ' |font-color |<<colors,Color>> + (default: _inherit_) |title-page: authors: font-color: #181818 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: authors: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: authors: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |title-page: authors: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: authors: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: authors: text-transform: uppercase |margin-top |<<measurement-units,Measurement>> + (default: 12) |title-page: authors: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: authors: margin-bottom: 5 3+|[#key-prefix-revision]*Key Prefix:* <<key-prefix-revision,title-page-revision>> |display |none + (default: _not set_) |title-page: revision: display: none |delimiter |<<quoted-string,Quoted string>> + (default: ', ') |title-page: revision: delimiter: ': ' |font-color |<<colors,Color>> + (default: _inherit_) |title-page: revision: font-color: #181818 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: revision: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: revision: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |title-page: revision: font-size: $base-font-size-small |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: revision: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: revision: text-transform: uppercase |margin-top |<<measurement-units,Measurement>> + (default: 0) |title-page: revision: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: revision: margin-bottom: 5 |=== 1. 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. 2. 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) when `fit=none`. The position of the background image can be controlled using the `position` attribute. 3. Target may be an absolute path or a path relative to the value of the `pdf-themesdir` attribute. 4. % unit is relative to content height; vh unit is relative to page height. [#keys-prose] === Prose The keys in this category control the spacing below paragraphs, lists, and index categories. The bottom margin is only added if the block is followed by an adjacent block within the same enclosure (e.g., a sidebar, a table cell, or the area outside of any blocks). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-prose]*Key Prefix:* <<key-prefix-prose,prose>> //|margin-top //|<<measurement-units,Measurement>> + //(default: 0) //|prose: // margin-top: 0 |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |prose: margin-bottom: 6 |margin-inner^[1]^ |<<measurement-units,Measurement>> + (default: $prose-margin-bottom) |prose: margin-inner: 0 |text-indent |<<measurement-units,Measurement>> + (default: _not set_) |prose: text-indent: 18 |text-indent-inner^[2]^ |<<measurement-units,Measurement>> + (default: _not set_) |prose: text-indent-inner: 18 |=== 1. Controls the margin between adjacent paragraphs. Useful when using indented paragraphs. 2. Only applied to inner paragraphs (paragraphs that follow an adjacent paragraph). [#keys-block] === Block The keys in this category control the spacing below block elements when a more specific setting is not designated. See the second table in this section for a list of blocks to which these keys apply. The bottom margin is only added if the block is followed by an adjacent block within the same enclosure (e.g., a sidebar, a table cell, or the area outside of any blocks). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-block]*Key Prefix:* <<key-prefix-block,block>> |anchor-top |<<measurement-units,Measurement>> + (default: 0) |block: anchor-top: -12 //|padding //|<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> //|block: // padding: [12, 15, 12, 15] //|margin-top //|<<measurement-units,Measurement>> + //(default: 0) //|block: // margin-top: 6 |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |block: margin-bottom: 6 |=== Block styles are applied to the following block types: [cols="3*a",grid=none,frame=none] |=== | * admonition * example * quote | * verse * sidebar * image | * listing * literal * table |=== [#keys-caption] === Caption The keys in this category control the arrangement and style of block captions. In addition to the generic caption category, each of these keys (except for text decoration) can be set on the caption key nested inside the following block categories: blockquote, code (applies to literal, listing, and source blocks), example, footnotes, image, table, and verse. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-caption]*Key Prefix:* <<key-prefix-caption,caption>> |align^[1]^ |<<text-alignments,Text alignment>> + (default: left) |caption: align: left |font-color |<<colors,Color>> + (default: _inherit_) |caption: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |caption: font-family: M+ 1mn |font-kerning |normal {vbar} none + (default: _inherit_) |caption: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |caption: font-size: 11 |font-style |<<font-styles,Font style>> + (default: italic) |caption: font-style: italic |text-decoration |<<text-decorations,Text decoration>> + (default: none) |caption: text-decoration: line-through |text-decoration-color |<<colors,Color>> + (default: $caption-font-color) |caption: text-decoration-color: #ff0000 |text-decoration-width |<<values,Number>> + (default: $base-text-decoration-width) |caption: text-decoration-width: 0.5 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |caption: text-transform: uppercase |margin-inside |<<measurement-units,Measurement>> + (default: 4) |caption: margin-inside: 3 |margin-outside |<<measurement-units,Measurement>> + (default: 0) |caption: margin-outside: 0 |=== 1. When nested inside the `image` key (i.e., `image-caption-align`), the value `inherit` is also accepted. The value `inherit` resolves to the alignment of the block image. [#keys-code] === Code Block The keys in this category are used to control the style of literal, listing, and source blocks and literal table cells. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-code]*Key Prefix:* <<key-prefix-code,code>> |background-color |<<colors,Color>> + (default: _not set_) |code: background-color: #f5f5f5 |border-color |<<colors,Color>> + (default: #eeeeee) |code: border-color: #cccccc |border-radius |<<values,Number>> + (default: _not set_) |code: border-radius: 4 |border-width |<<values,Number>> + (default: 0.5) |code: border-width: 0.75 |font-color |<<colors,Color>> + (default: _inherit_) |code: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: Courier) |code: font-family: M+ 1mn |font-size |<<values,Number>> + (default: 10.8) |code: font-size: 11 |font-style |<<font-styles,Font style>> + (default: _inherit_) |code: font-style: italic |line-height |<<values,Number>> + (default: 1.2) |code: line-height: 1.25 |line-gap^[1]^ |<<values,Number>> + (default: 0) |code: line-gap: 3.8 |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 9) |code: padding: 11 3+|[#key-prefix-code-highlight]*Key Prefix:* <<key-prefix-code-highlight,code-highlight>>^[2]^ |background-color |<<colors,Color>> + (default: #FFFFCC) |code: highlight-background-color: #ffff00 3+|[#key-prefix-code-linenum]*Key Prefix:* <<key-prefix-code-linenum,code-linenum>>^[3]^ |font-color |<<colors,Color>> + (default: #999999) |code: linenum-font-color: #ccc |=== 1. The line-gap property is used to tune the height of the background color applied to a span of block text highlighted using Rouge. 2. The code-highlight category only applies when using Rouge as the source highlighter. Otherwise, the styles are controlled by the source highlighter theme. 3. The code-linenum category only applies when using Pygments as the source highlighter. Otherwise, the styles are controlled by the source highlighter theme. [#keys-callout-numbers] === Callout Numbers 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). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-conum]*Key Prefix:* <<key-prefix-conum,conum>> |font-color |<<colors,Color>> + (default: _inherit_) |conum: font-color: #b12146 |font-family^[1,2]^ |<<fonts,Font family name>> + (default: _inherit_) |conum: font-family: M+ 1mn |font-kerning^[2]^ |normal {vbar} none + (default: _inherit_) |conum: font-kerning: none |font-size^[2]^ |<<values,Number>> + (default: _inherit_) |conum: font-size: $base-font-size |font-style^[2]^ |<<font-styles,Font style>> + (default: _inherit_) |conum: font-style: normal |line-height^[2]^ |<<values,Number>> + (default: 1.15) |conum: line-height: 4 / 3 |glyphs^[3]^ |circled {vbar} filled {vbar} Unicode String ranges + (default: circled) |conum: glyphs: \u0031-\u0039 |=== 1. Currently, the font must contain the circle numbers starting at glyph U+2460. 2. 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. 3. 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. [#keys-button] === Button The keys in this category apply to a button reference (generated from the inline button macro). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-button]*Key Prefix:* <<key-prefix-button,button>> |background-color |<<colors,Color>> + (default: _not set_) |button: background-color: #0000ff |border-color^[1]^ |<<colors,Color>> + (default: _not set_) |button: border-color: #cccccc |border-offset^[2]^ |<<values,Number>> + (default: 0) |button: border-offset: 1.5 |border-radius |<<values,Number>> + (default: 0) |button: border-radius: 2 |border-width |<<values,Number>> + (default: $base-border-width) |button: border-width: 0.5 |content^[3]^ |<<quoted-string,Quoted string>> + (default: "%s") |button: content: "[\u2009%s\u2009]" |font-color |<<colors,Color>> + (default: _inherit_) |button: font-color: #ffffff |font-family |<<fonts,Font family name>> + (default: Courier) |button: font-family: M+ 1mn |font-size |<<values,Number>> + (default: _inherit_) |button: font-size: 12 |font-style |<<font-styles,Font style>> + (default: bold) |button: font-style: normal |=== 1. The border is only used if a border color is specified and the border width is not explicitly set to 0. 2. 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. 3. The character sequence `%s` in the content key gets replaced with the button label. [#keys-kbd] === Kbd (Keyboard Input) The keys in this category apply to a kbd reference (generated from the inline kbd macro). The kbd reference is a span of text denoting textual user input from a keyboard, voice input, or other text entry device. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-kbd]*Key Prefix:* <<key-prefix-kbd,kbd>> |background-color |<<colors,Color>> + (default: _not set_) |kbd: background-color: #fafafa |border-color^[1]^ |<<colors,Color>> + (default: _not set_) |kbd: border-color: #cccccc |border-offset^[2]^ |<<values,Number>> + (default: 0) |kbd: border-offset: 1.5 |border-radius |<<values,Number>> + (default: 0) |kbd: border-radius: 2 |border-width |<<values,Number>> + (default: $base-border-width) |kbd: border-width: 0.375 |separator^[3]^ |<<quoted-string,Quoted string>> + (default: "+") |kbd: separator: "\u2009+\u2009" |font-color |<<colors,Color>> + (default: _inherit_) |kbd: font-color: #000 |font-family |<<fonts,Font family name>> + (default: Courier) |kbd: font-family: $base-font-family |font-size |<<values,Number>> + (default: _inherit_) |kbd: font-size: 10.5 |font-style |<<font-styles,Font style>> + (default: italic) |kbd: font-style: normal |=== 1. The border is only used if a border color is specified and the border width is not explicitly set to 0. 2. 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. 3. The separator is only used for multi-key input sequences. [#keys-menu] === Menu The keys in this category apply to the menu label (generated from the inline menu macro). Keep in mind that the styles for the caret can be controlled independently using the `<font>` tag. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-menu]*Key Prefix:* <<key-prefix-menu,menu>> |caret-content |<<quoted-string,Quoted string>> + (default: " \u203a ") |menu: caret-content: ' > ' |font-color |<<colors,Color>> + (default: _inherit_) |menu: font-color: #AA0000 |font-family |<<fonts,Font family name>> + (default: _inherit_) |menu: font-family: M+ 1mn |font-size |<<values,Number>> + (default: _inherit_) |menu: font-size: 8 |font-style |<<font-styles,Font style>> + (default: bold) |menu: font-style: bold_italic |=== [#keys-mark] === Mark The keys in this category apply to a mark phrase. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-mark]*Key Prefix:* <<key-prefix-mark,mark>> |font-color |<<colors,Color>> + (default: _inherit_) |mark: font-color: #333333 |font-style |<<font-styles,Font style>> + (default: _inherit_) |mark: font-style: bold |background-color |<<colors,Color>> + (default: #ff0000) |mark: background-color: #fcf8e3 |border-offset |<<values,Number>> + (default: 1) |mark: border-offset: 2 |=== [#keys-blockquote] === Blockquote The keys in this category control the arrangement and style of quote blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-blockquote]*Key Prefix:* <<key-prefix-blockquote,blockquote>> |background-color |<<colors,Color>> + (default: _not set_) |blockquote: background-color: #dddddd |border-width^[1]^ |<<values,Number>> + (default: 0) |blockquote: border-width: 0.5 |border-left-width^[1]^ |<<values,Number>> + (default: 4) |blockquote: border-left-width: 5 |border-color^[1]^ |<<colors,Color>> + (default: #eeeeee) |blockquote: border-color: #dddddd |font-color |<<colors,Color>> + (default: _inherit_) |blockquote: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |blockquote: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |blockquote: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |blockquote: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |blockquote: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |blockquote: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [6, 12, -6, 14]) |blockquote: padding: [5, 10, -5, 12] 3+|[#key-prefix-blockquote-cite]*Key Prefix:* <<key-prefix-blockquote-cite,blockquote-cite>> |font-size |<<values,Number>> + (default: _inherit_) |blockquote: cite: font-size: 9 |font-color |<<colors,Color>> + (default: _inherit_) |blockquote: cite: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |blockquote: cite: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |blockquote: cite: font-kerning: none |font-style |<<font-styles,Font style>> + (default: _inherit_) |blockquote: cite: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |blockquote: cite: text-transform: uppercase |=== 1. 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. [#keys-verse] === Verse The keys in this category control the arrangement and style of verse blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-verse]*Key Prefix:* <<key-prefix-verse,verse>> |background-color |<<colors,Color>> + (default: _not set_) |verse: background-color: #dddddd |border-width^[1]^ |<<values,Number>> + (default: 0) |verse: border-width: 0.5 |border-left-width^[1]^ |<<values,Number>> + (default: 4) |verse: border-left-width: 5 |border-color^[1]^ |<<colors,Color>> + (default: #eeeeee) |verse: border-color: #dddddd |font-color |<<colors,Color>> + (default: _inherit_) |verse: font-color: #333333 |font-family^[2]^ |<<fonts,Font family name>> + (default: _inherit_) |verse: font-family: M+ 1mn |font-kerning |normal {vbar} none + (default: _inherit_) |verse: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |verse: font-size: 10 |font-style |<<font-styles,Font style>> + (default: _inherit_) |verse: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |verse: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [6, 12, -6, 14]) |verse: padding: [5, 10, -5, 12] 3+|[#key-prefix-verse-cite]*Key Prefix:* <<key-prefix-verse-cite,verse-cite>> |font-size |<<values,Number>> + (default: _inherit_) |verse: cite: font-size: 9 |font-color |<<colors,Color>> + (default: _inherit_) |verse: cite: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |verse: cite: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |verse: cite: font-kerning: none |font-style |<<font-styles,Font style>> + (default: _inherit_) |verse: cite: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |verse: cite: text-transform: uppercase |=== 1. 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. 2. 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. [#keys-sidebar] === Sidebar The keys in this category control the arrangement and style of sidebar blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-sidebar]*Key Prefix:* <<key-prefix-sidebar,sidebar>> |background-color |<<colors,Color>> + (default: #eeeeee) |sidebar: background-color: #eeeeee |border-color |<<colors,Color>> + (default: _not set_) |sidebar: border-color: #ffffff |border-radius |<<values,Number>> + (default: _not set_) |sidebar: border-radius: 4 |border-width |<<values,Number>> + (default: _not set_) |sidebar: border-width: 0.5 |font-color |<<colors,Color>> + (default: _inherit_) |sidebar: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |sidebar: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |sidebar: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |sidebar: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |sidebar: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |sidebar: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [12, 12, 0, 12]) |sidebar: padding: [12, 15, 0, 15] 3+|[#key-prefix-sidebar-title]*Key Prefix:* <<key-prefix-sidebar-title,sidebar-title>> |align |<<text-alignments,Text alignment>> + (default: center) |sidebar: title: align: center |font-color |<<colors,Color>> + (default: _inherit_) |sidebar: title: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |sidebar: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |sidebar: title: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |sidebar: title: font-size: 13 |font-style |<<font-styles,Font style>> + (default: bold) |sidebar: title: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |sidebar: title: text-transform: uppercase |=== [#keys-example] === Example The keys in this category control the arrangement and style of example blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-example]*Key Prefix:* <<key-prefix-example,example>> |background-color |<<colors,Color>> + (default: #ffffff) |example: background-color: #fffef7 |border-color |<<colors,Color>> + (default: #eeeeee) |example: border-color: #eeeeee |border-radius |<<values,Number>> + (default: _not set_) |example: border-radius: 4 |border-width |<<values,Number>> + (default: 0.5) |example: border-width: 0.75 |font-color |<<colors,Color>> + (default: _inherit_) |example: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |example: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |example: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |example: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |example: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |example: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [12, 12, 0, 12]) |example: padding: [15, 15, 0, 15] |=== [#keys-admonition] === Admonition The keys in this category control the arrangement and style of admonition blocks and the icon used for each admonition type. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-admonition]*Key Prefix:* <<key-prefix-admonition,admonition>> |column-rule-color |<<colors,Color>> + (default: #eeeeee) |admonition: column-rule-color: #aa0000 |column-rule-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |admonition: column-rule-style: double |column-rule-width |<<values,Number>> + (default: 0.5) |admonition: column-rule-width: 0.5 |font-color |<<colors,Color>> + (default: _inherit_) |admonition: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |admonition: font-family: Noto Sans |font-kerning |normal {vbar} none + (default: _inherit_) |admonition: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |admonition: font-size: $base-font-size-large |font-style |<<font-styles,Font style>> + (default: _inherit_) |admonition: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |admonition: text-transform: none |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [0, 12, 0, 12]) |admonition: padding: [0, 12, 0, 12] 3+|[#key-prefix-admonition-label]*Key Prefix:* <<key-prefix-admonition-label,admonition-label>> |align |<<text-alignments,Text alignment>> + (default: center) |admonition: label: align: center |min-width |<<measurement-units,Measurement>> + (default: _not set_) |admonition: label: min-width: 48 |padding^[1]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: $admonition-padding) |admonition: label: padding: [0, 12, 0, 12] |vertical-align |top {vbar} middle {vbar} bottom + (default: middle) |admonition: label: vertical-align: top 3+|*Key Prefix:* admonition-label, admonition-label-<name>^[2]^ |font-color |<<colors,Color>> + (default: _inherit_) |admonition: label: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |admonition: label: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |admonition: label: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |admonition: label: font-size: 12 |font-style |<<font-styles,Font style>> + (default: bold) |admonition: label: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: uppercase) |admonition: label: text-transform: lowercase 3+|[#key-prefix-admonition-icon]*Key Prefix:* <<key-prefix-admonition-icon,admonition-icon-<name>{zwsp}>>^[2]^ |name |<icon set>-<icon name>^[3]^ + (default: _not set_) |admonition: icon: tip: name: fas-fire |stroke-color |<<colors,Color>> + (default: caution=#bf3400; important=#bf0000; note=#19407c; tip=#111111; warning=#bf6900) |admonition: icon: important: stroke-color: ff0000 |size |<<values,Number>> + (default: 24) |admonition: icon: note: size: 24 |=== 1. The top and bottom padding values are ignored on admonition-label-padding. 2. `<name>` can be `note`, `tip`, `warning`, `important`, or `caution`. All icon types must be grouped under a single `icons` category. In other words, _do not_ declare the `icons` category multiple times. The subkeys in the icon category cannot be flattened (e.g., `tip-name: far-lightbulb` is not valid syntax). 3. Required. See the `.yml` files in the https://github.com/jessedoyle/prawn-icon/tree/master/data/fonts[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. [#keys-image] === Image The keys in this category control the arrangement of block images. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-image]*Key Prefix:* <<key-prefix-image,image>> |align |<<image-alignments,Image alignment>> + (default: left) |image: align: left |width^[1]^ |<<measurement-units,Measurement>> + (default: _not set_) |image: width: 100% |border-color^[2]^ |<<colors,Color>> + (default: _not set_) |image: border-color: #cccccc |border-radius |<<values,Number>> + (default: _not set_) |image: border-radius: 2 |border-width^[2]^ |<<values,Number>> + (default: _not set_) |image: border-width: 0.5 |border-fit^[3]^ |content {vbar} auto (default: content) |image: border-fit: auto 3+|[#key-prefix-image-alt]*Key Prefix:* <<key-prefix-image-alt,image-alt>> |content^[4]^ |<<quoted-string,Quoted string>> + (default: "%\{link}[%\{alt}]%{/link} {vbar} %\{target}") |image: alt: content: "%{alt} (%{target})" |font-color |<<colors,Color>> + (default: _inherit_) |image: alt: font-color: #ff000 |font-family |<<fonts,Font family name>> + (default: _inherit_) |image alt: font-family: Courier |font-kerning |normal {vbar} none + (default: _inherit_) |image: alt: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |image: alt: font-size: 9 |font-style |<<font-styles,Font style>> + (default: normal) |image: alt: font-style: italic 3+|[#key-prefix-image-caption]*Key Prefix:* <<key-prefix-image-caption,image-caption>> |caption-align |<<text-alignments,Text alignment>> {vbar} inherit + (default: $caption-align) |image: caption: align: inherit |caption-text-align |<<text-alignments,Text alignment>> {vbar} inherit + (default: $image-caption-align) |image: caption: text-align: left |caption-max-width^[5]^ |fit-content {vbar} fit-content(percentage) {vbar} none {vbar} <<measurement-units,Measurement>> + (default: none) |image: caption: max-width: fit-content |=== 1. Only applies to block images that don't have either a `pdfwidth` or `scaledwidth` attribute on the image macro. If specified, this value takes precedence over the value of the `width` attribute on the image macro, but not over the value of the `pdfwidth` or `scaledwidth` attributes. This key accepts the same values as the `pdfwidth` attribute. 2. 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. 3. The value `auto` means the border should expand to fit the width of the container (i.e., full width) instead of the image. 4. Use the placeholders `%\{alt}`, `%\{target}`, `%\{link}`, and `%{/link}` to insert the alt text, image target, and link open/close tags into the content template. 5. In order for the image to be sized correctly when max-width is fit-content, a width should always be specified on the image. [#keys-svg] === SVG The keys in this category control the SVG integration. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-image]*Key Prefix:* <<key-prefix-svg,svg>> |fallback_font_family^[1]^ |<<fonts,Font family name>> + (default: $base-font-family) |svg: fallback_font_family: Times-Roman |=== 1. 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. [#keys-abstract] === Abstract The keys in this category control the arrangement and style of the abstract. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-abstract]*Key Prefix:* <<key-prefix-abstract,abstract>> |font-color |<<colors,Color>> + (default: $base-font-color) |abstract: font-color: #5c6266 |font-size |<<values,Number>> + (default: 13.5) |abstract: font-size: 13 |font-style |<<font-styles,Font style>> + (default: $base-font-style) |abstract: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: $base-text-transform) |abstract: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.4) |abstract: line-height: 1.4 |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 0) |abstract: padding: [0, 12, 0, 12] 3+|[#key-prefix-abstract-first-line]*Key Prefix:* <<key-prefix-abstract-first-line,abstract-first-line>> |font-color |<<colors,Color>> + (default: _not set_) |abstract: first-line: font-color: #AA0000 |font-style |<<font-styles,Font style>> + (default: _not set_) |abstract: first-line: font-style: bold 3+|[#key-prefix-abstract-title]*Key Prefix:* <<key-prefix-abstract-title,abstract-title>> |align |<<text-alignments,Text alignment>> + (default: center) |abstract: title: align: center |font-color |<<colors,Color>> + (default: $base-font-color) |abstract: title: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: $base-font-family) |abstract: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |abstract: title: font-kerning: none |font-size |<<values,Number>> + (default: $base-font-size) |abstract: title: font-size: 13 |font-style |<<font-styles,Font style>> + (default: bold) |abstract: title: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: $base-text-transform) |abstract: title: text-transform: uppercase |=== [#keys-thematic-break] === Thematic Break The keys in this category control the style of thematic breaks (aka horizontal rules). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-thematic-break]*Key Prefix:* <<key-prefix-thematic-break,thematic-break>> |border-color |<<colors,Color>> + (default: #eeeeee) |thematic-break: border-color: #eeeeee |border-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |thematic-break: border-style: dashed |border-width |<<measurement-units,Measurement>> + (default: 0.5) |thematic-break: border-width: 0.5 |margin-top |<<measurement-units,Measurement>> + (default: 0) |thematic-break: margin-top: 6 |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |thematic-break: margin-bottom: 18 |=== [#keys-description-list] === Description List The keys in this category control the arrangement and style of definition list items (terms and descriptions). [TIP] ==== 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). By default, the subject is arranged as a run-in followed by a subject stop (`:` by default). [source,asciidoc] ---- [unordered] alpha:: partially complete and unstable beta:: feature complete and undergoing testing ---- The subject stop can be customized using the `subject-stop` attribute. [source,asciidoc] ---- [unordered,subject-stop=)] alpha:: partially complete and unstable beta:: feature complete and undergoing testing ---- If the `stack` role is present, the subject is stacked above the description. In this case, the subject stop is only used if specified explicitly. [source,asciidoc] ---- [unordered.stack] alpha:: partially complete and unstable beta:: feature complete and undergoing testing ---- ==== [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-description-list]*Key Prefix:* <<key-prefix-description-list,description-list>> |term-font-color |<<colors,Color>> + (default: _inherit_) |description-list: term-font-color: #AA0000 |term-font-family |<<fonts,Font family name>> + (default: _inherit_) |description-list: term-font-family: Noto Serif |term-font-kerning |normal {vbar} none + (default: _inherit_) |description-list: term-font-kerning: none |term-font-size |<<values,Number>> + (default: _inherit_) |description-list: term-font-size: 12 |term-font-style |<<font-styles,Font style>> + (default: bold) |description-list: term-font-style: italic |term-text-transform |<<text-transforms,Text transform>> + (default: none) |description-list: term-text-transform: none |term-line-height |<<values,Number>> + (default: $base-line-height) |description-list: term-line-height: 1.2 |term-spacing |<<measurement-units,Measurement>> + (default: 4) |description-list: term-spacing: 5 |description-indent |<<values,Number>> + (default: 30) |description-list: description-indent: 15 |=== [#keys-list] === List The keys in this category control the arrangement and style of regular (ordered and unordered) lists. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-list]*Key Prefix:* <<key-prefix-list,list>> |indent |<<measurement-units,Measurement>> + (default: 30) |list: indent: 40 |item-spacing |<<measurement-units,Measurement>> + (default: 6) |list: item-spacing: 4 |marker-font-color^[1]^ |<<colors,Color>> + (default: _inherit_) |list: marker-font-color: #3c763d |text-align^[2]^ |<<text-alignments,Text alignment>> + (default: $base-align) |list: text-align: left |=== 1. Controls the color of the bullet glyph that marks items in unordered lists and the number for items in ordered lists. 2. Controls the alignment of the list text only, not nested content (blocks or lists). [#keys-ulist] === Unordered List The keys in this category control the arrangement and style of unordered list items. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-ulist-marker]*Key Prefix:* <<key-prefix-ulist-marker,ulist-marker>> |font-family |<<fonts,Font family name>> + (default: _inherit_) |ulist: marker: font-family: Noto Serif |font-size |<<values,Number>> + (default: _inherit_) |ulist: marker: font-size: 9 |font-color |<<colors,Color>> + (default: $list-marker-font-color) |ulist: marker: font-color: #cccccc |line-height |<<values,Number>> + (default: $base-line-height) |ulist: marker: line-height: 1.5 |=== [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-ulist-marker-type]*Key Prefix:* <<key-prefix-ulist-marker-type,ulist-marker-<type>{zwsp}>>^[1]^ |content |<<quoted-string,Quoted string>> |ulist: marker: disc: content: "\uf140" |font-family |<<fonts,Font family name>> + (default: _inherit_) |ulist: marker: disc: font-family: fas |font-size |<<values,Number>> + (default: _inherit_) |ulist: marker: disc: font-size: 9 |font-color |<<colors,Color>> + (default: _inherit_) |ulist: marker: disc: font-color: #ff0000 |line-height |<<values,Number>> + (default: _inherit_) |ulist: marker: disc: line-height: 2 |=== 1. <type> is one of disc, square, circle, checked, unchecked [#keys-callout-list] === Callout List The keys in this category control the arrangement and style of callout lists (i.e., colists). NOTE: The <<keys-callout-numbers>> category controls the appearance of the list markers (i.e., conums) in a callout list. If you change the font-size setting on the callout list, then you likely need to change the font-size setting on the conum category as well. [cols="3,4,5a"] |=== |Key |Value Type |Example 3+|[#key-prefix-callout-list]*Key Prefix:* <<key-prefix-callout-list,callout-list>> |item-spacing |<<measurement-units,Measurement>> + (default: $list-item-spacing) |[source,yaml] callout-list: item-spacing: 3 |font-color |<<colors,Color>> + (default: _inherit_) |[source,yaml] callout-list: font-color: #555555 |font-family |<<fonts,Font family name>> + (default: _inherit_) |[source,yaml] callout-list: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |[source,yaml] callout-list: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |[source,yaml] callout-list: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |[source,yaml] callout-list: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |[source,yaml] callout-list: text-transform: lowercase |line-height |<<values,Number>> + (default: _inherit_) |[source,yaml] callout-list: line-height: 1 |text-align |<<text-alignments,Text alignment>> + (default: $list-text-align) |callout-list: text-align: left |margin-top-after-code |<<measurement-units,Measurement>> + (default: -$block-margin-bottom) |callout-list: margin-top-after-code: 0 |=== [#keys-table] === Table The keys in this category control the arrangement and style of tables and table cells. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-table]*Key Prefix:* <<key-prefix-table,table>> |background-color |<<colors,Color>> + (default: transparent) |table: background-color: #ffffff |border-color |<<colors,Color>> + (default: #000000) |table: border-color: #dddddd |border-style |solid {vbar} dashed {vbar} dotted + (default: solid) |table: border-style: solid |border-width |<<values,Number>> + (default: 0.5) |table: border-width: 0.5 |caption-align |<<text-alignments,Text alignment>> {vbar} inherit + (default: $caption-align) |table: caption-align: inherit |caption-text-align |<<text-alignments,Text alignment>> {vbar} inherit + (default: $table-caption-align) |table: caption: text-align: left |caption-end |top {vbar} bottom + (default: top) |table: caption: end: bottom |caption-max-width |fit-content {vbar} fit-content(percentage) {vbar} none {vbar} <<measurement-units,Measurement>> + (default: fit-content) |table: caption-max-width: none |font-color |<<colors,Color>> + (default: _inherit_) |table: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |table: font-family: Helvetica |font-kerning |normal {vbar} none + (default: _inherit_) |table: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |table: font-size: 9.5 |font-style |<<font-styles,Font style>> + (default: _inherit_) |table: font-style: italic |grid-color |<<colors,Color>> {vbar} <<colors,Color[x,y]>> + (default: $table-border-color) |table: grid-color: #eeeeee |grid-style |solid {vbar} dashed {vbar} dotted {vbar} Style[x,y] + (default: solid) |table: grid-style: dashed |grid-width |<<values,Number>> {vbar} <<values,Number[x,y]>> + (default: $table-border-width) |table: grid-width: 0.5 3+|[#key-prefix-table-head]*Key Prefix:* <<key-prefix-table-head,table-head>> //|align //|<<text-alignments,Text alignment>> + //(default: _inherit_) //|table: // head: // align: center |background-color |<<colors,Color>> + (default: $table-background-color) |table: head: background-color: #f0f0f0 |border-bottom-color |<<colors,Color>> + (default: $table-border-color) |table: head: border-bottom-color: #dddddd |border-bottom-style |solid {vbar} dashed {vbar} dotted + (default: solid) |table: head: border-bottom-style: dashed |border-bottom-width |<<values,Number>> + (default: 1.25) |table: head: border-bottom-width: 1 |font-color |<<colors,Color>> + (default: $table-font-color) |table: head: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: $table-font-family) |table: head: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |table: head: font-kerning: none |font-size |<<values,Number>> + (default: $table-font-size) |table: head: font-size: 10 |font-style |<<font-styles,Font style>> + (default: bold) |table: head: font-style: normal |line-height |<<values,Number>> + (default: _inherit_) |table: head: line-height: 1.15 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |table: head: text-transform: uppercase 3+|[#key-prefix-table-body]*Key Prefix:* <<key-prefix-table-body,table-body>> |background-color |<<colors,Color>> + (default: $table-background-color) |table: body: background-color: #fdfdfd |stripe-background-color^[1]^ |<<colors,Color>> + (default: #eeeeee) |table: body: stripe-background-color: #efefef 3+|[#key-prefix-table-foot]*Key Prefix:* <<key-prefix-table-foot,table-foot>> |background-color |<<colors,Color>> + (default: $table-background-color) |table: foot: background-color: #f0f0f0 |font-color |<<colors,Color>> + (default: $table-font-color) |table: foot: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: $table-font-family) |table: foot: font-family: Noto Serif |font-size |<<values,Number>> + (default: $table-font-size) |table: foot: font-size: 10 |font-style |<<font-styles,Font style>> + (default: normal) |table: foot: font-style: italic 3+|[#key-prefix-table-cell]*Key Prefix:* <<key-prefix-table-cell,table-cell>> |line-height |<<values,Number>> + (default: _inherit_) |table: cell: line-height: 1.5 |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 2) |table: cell: padding: 3 3+|[#key-prefix-table-asciidoc-cell]*Key Prefix:* <<key-prefix-table-asciidoc-cell,table-asciidoc-cell>> |style |inherit {vbar} initial (default: inherit) |table: asciidoc-cell: style: initial 3+|[#key-prefix-table-header-cell]*Key Prefix:* <<key-prefix-table-header-cell,table-header-cell>> //|align //|<<text-alignments,Text alignment>> + //(default: $table-head-align) //|table: // header-cell: // align: center |background-color |<<colors,Color>> + (default: $table-head-background-color) |table: header-cell: background-color: #f0f0f0 |font-color |<<colors,Color>> + (default: $table-head-font-color) |table: header-cell: font-color: #1a1a1a |font-family |<<fonts,Font family name>> + (default: $table-head-font-family) |table: header-cell: font-family: Noto Sans |font-size |<<values,Number>> + (default: $table-head-font-size) |table: header-cell: font-size: 12 |font-style |<<font-styles,Font style>> + (default: $table-head-font-style) |table: header-cell: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: $table-head-text-transform) |table: header-cell: text-transform: uppercase |=== 1. This key only controls the color that is used for stripes. The appearance of stripes is controlled using the `stripes` table attribute, the `table-stripes` document attribute (since Asciidoctor 2), or the `stripes` 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`). [#keys-index] === Index The keys in this category control the style of the autogenerated index section. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-index]*Key Prefix:* <<key-prefix-index,index>> |columns |Integer + (default: 2) |index: columns: 2 |=== [#keys-footnotes] === Footnotes 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. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-footnotes]*Key Prefix:* <<key-prefix-footnotes,footnotes>> |font-color |<<colors,Color>> + (default: $base-font-color) |footnotes: font-color: #cccccc |font-size |<<values,Number>> + (default: 9) |footnotes: font-size: 8 |font-style |<<font-styles,Font style>> + (default: $base-font-style) |footnotes: font-style: italic |item-spacing |<<measurement-units,Measurement>> + (default: 3) |footnotes: item-spacing: 5 |margin-top |<<measurement-units,Measurement>> + (default: 0) |footnotes: margin-top: 10 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |footnotes: text-transform: lowercase |=== [#keys-table-of-contents] === Table of Contents (TOC) The keys in this category control the arrangement and style of the table of contents. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-toc]*Key Prefix:* <<key-prefix-toc,toc>> |font-color |<<colors,Color>> + (default: _inherit_) |toc: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |toc: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |toc: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |toc: font-size: 9 |font-style |<<font-styles,Font style>> + // QUESTION why is the default not inherited? (default: normal) |toc: font-style: bold |text-decoration |<<text-decorations,Text decoration>> + (default: none) |toc: text-decoration: underline |text-decoration-color |<<colors,Color>> + (default: $toc-font-color) |toc text-decoration-color: #cccccc |text-decoration-width |<<values,Number>> + (default: $base-text-decoration-width) |toc: text-decoration-width: 0.5 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |toc: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.4) |toc: line-height: 1.5 |indent |<<measurement-units,Measurement>> + (default: 15) |toc: indent: 20 |hanging-indent |<<measurement-units,Measurement>> + (default: _not set_) |toc: hanging-indent: 0.5in |margin-top |<<measurement-units,Measurement>> + (default: 0) |toc: margin-top: 0 3+|[#key-prefix-toc-level]*Key Prefix:* <<key-prefix-toc-level,toc-h<n>{zwsp}>>^[1]^ |font-color |<<colors,Color>> + (default: _inherit_) |toc: h3-font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |toc: h2-font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |toc: h3-font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |toc: h3-font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |toc: h2-font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |toc: h3-text-transform: uppercase 3+|[#key-prefix-toc-title]*Key Prefix:* <<key-prefix-toc-title,toc-title>> |align |<<text-alignments,Text alignment>> + (default: $heading-h2-align) |toc: title: align: right |font-color |<<colors,Color>> + (default: $heading-h2-font-color) |toc: title: font-color: #aa0000 |font-family |<<fonts,Font family name>> + (default: $heading-h2-font-family) |toc: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |toc: title: font-kerning: none |font-size |<<values,Number>> + (default: $heading-h2-font-size) |toc: title: font-size: 18 |font-style |<<font-styles,Font style>> + (default: $heading-h2-font-style) |toc: title: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: $heading-h2-text-transform) |sidebar: title: text-transform: uppercase 3+|[#key-prefix-toc-dot-leader]*Key Prefix:* <<key-prefix-toc-dot-leader,toc-dot-leader>> |content |<<quoted-string,Quoted string>> + (default: '. ') |toc: dot-leader: content: ". " |font-color^[2]^ |<<colors,Color>> + (default: _inherit_) |toc: dot-leader: font-color: #999999 |font-style^[2]^ |<<font-styles,Font style>> + (default: normal) |toc: dot-leader: font-style: bold |levels^[3]^ |all {vbar} none {vbar} Integers (space-separated) + (default: all) |toc: dot-leader: levels: 2 3 |=== 1. `<n>` is a number ranging from 1 to 6, representing each of the six heading levels. 2. The dot leader inherits all font properties except `font-style` from the root `toc` category. 3. 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. [#keys-running-content] === Running Content (Header & Footer) 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. CAUTION: 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. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-header]*Key Prefix:* <<key-prefix-header,header>> |background-color^[1]^ |<<colors,Color>> + (default: _not set_) |header: background-color: #eeeeee |background-image |image macro + (default: _not set_) |header: background-image: image:running-content.svg[fit=contain] |border-color |<<colors,Color>> + (default: _not set_) |header: border-color: #dddddd |border-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |header: border-style: dashed |border-width |<<measurement-units,Measurement>> + (default: $base-border-width) |header: border-width: 0.25 |column-rule-color |<<colors,Color>> + (default: _not set_) |header: column-rule-color: #CCCCCC |column-rule-spacing |<<measurement-units,Measurement>> + (default: 0) |header: column-rule-spacing: 5 |column-rule-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |header: column-rule-style: dashed |column-rule-width |<<measurement-units,Measurement>> + (default: _not set_) |header: column-rule-width: 0.25 |font-color |<<colors,Color>> + (default: _inherit_) |header: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |header: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |header: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |header: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |header: font-style: italic |height^[2]^ |<<measurement-units,Measurement>> + (default: _not set_) |header: height: 0.75in |line-height |<<values,Number>> + (default: $base-line-height) |header: line-height: 1.2 |margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom (n/a),left]>> + (default: [0, inherit]) |header: margin: 0 |content-margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [0, inherit]) |header: content-margin: 0 |padding^[3]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 0) |header: padding: [0, 3, 0, 3] |image-vertical-align |top {vbar} middle {vbar} bottom {vbar} <<measurement-units,Measurement>> + (default: _not set_) |header: image-vertical-align: 4 |sectlevels^[4]^ |Integer + (default: 2) |header: sectlevels: 3 |text-transform |<<text-transforms,Text transform>> + (default: none) |header: text-transform: uppercase |title-style |document {vbar} toc {vbar} basic + (default: document) |header: title-style: toc |vertical-align |top {vbar} middle {vbar} bottom {vbar} [top {vbar} middle {vbar} bottom, <<measurement-units,Measurement>>] + (default: middle) |header: vertical-align: middle |<side>-columns^[5]^ |Column specs triple + (default: _not set_) |header: recto: columns: <25% =50% >25% |<side>-margin^[5]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom (n/a),left]>> + (default: _inherit_) |header: recto: margin: [0, 0, 0, inherit] |<side>-content-margin^[5]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: _inherit_) |header: recto: content-margin: [0, 0, 0, inherit] |<side>-padding^[5]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: _inherit_) |header: recto: padding: [0, 3, 0, 3] |<side>-<position>-content^[5,6]^ |<<quoted-string,Quoted string>> + (default: '\{page-number}') |header: recto: left: content: '\{page-number}' 3+|[#key-prefix-footer]*Key Prefix:* <<key-prefix-footer,footer>> |background-color^[1]^ |<<colors,Color>> + (default: _not set_) |footer: background-color: #eeeeee |background-image |image macro + (default: _not set_) |footer: background-image: image:running-content.svg[fit=contain] |border-color |<<colors,Color>> + (default: _not set_) |footer: border-color: #dddddd |border-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |footer: border-style: dashed |border-width |<<measurement-units,Measurement>> + (default: $base-border-width) |footer: border-width: 0.25 |column-rule-color |<<colors,Color>> + (default: _not set_) |footer: column-rule-color: #CCCCCC |column-rule-spacing |<<measurement-units,Measurement>> + (default: 0) |footer: column-rule-spacing: 5 |column-rule-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |footer: column-rule-style: dashed |column-rule-width |<<measurement-units,Measurement>> + (default: _not set_) |footer: column-rule-width: 0.25 |font-color |<<colors,Color>> + (default: _inherit_) |footer: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |footer: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |footer: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |footer: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |footer: font-style: italic |height^[2]^ |<<measurement-units,Measurement>> + (default: _not set_) |footer: height: 0.75in |line-height |<<values,Number>> + (default: $base-line-height) |footer: line-height: 1.2 |margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top (n/a),right,bottom,left]>> + (default: [0, inherit]) |footer: margin: 0 |content-margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [0, inherit]) |footer: content-margin: 0 |padding^[3]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 0) |footer: padding: [0, 3, 0, 3] |image-vertical-align |top {vbar} middle {vbar} bottom {vbar} <<measurement-units,Measurement>> + (default: _not set_) |footer: image-vertical-align: 4 |sectlevels^[4]^ |Integer + (default: 2) |footer: sectlevels: 3 |text-transform |<<text-transforms,Text transform>> + (default: none) |footer: text-transform: uppercase |title-style |document {vbar} toc {vbar} basic + (default: document) |footer: title-style: toc |vertical-align |top {vbar} middle {vbar} bottom {vbar} [top {vbar} middle {vbar} bottom, <<measurement-units,Measurement>>] + (default: middle) |footer: vertical-align: top |<side>-columns^[5]^ |Column specs triple + (default: _not set_) |footer: verso: columns: <50% =0% <50% |<side>-margin^[5]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top (n/a),right,bottom,left]>> + (default: [0, inherit]) |footer: verso: margin: [0, inherit, 0, 0] |<side>-content-margin^[5]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: _inherit_) |footer: verso: content-margin: [0, inherit, 0, 0] |<side>-padding^[5]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: _inherit_) |footer: verso: padding: [0, 3, 0, 3] |<side>-<position>-content^[5,6]^ |<<quoted-string,Quoted string>> + (default: '\{page-number}') |footer: verso: center: content: '\{page-number}' 3+|[#key-prefix-running-content]*Key Prefix:* <<key-prefix-running-content,running-content>> |start-at^[7]^ |title {vbar} toc {vbar} after-toc {vbar} body {vbar} Integer + (default: body) |running-content: start-at: toc |=== 1. To make the background color and border span the width of the page, set the margin to 0 (and adjust the content-margin accordingly). 2. *If the height is not set, the running content at this periphery is disabled.* 3. Do not use negative margins. Instead, adjust the values of the margin and content-margin keys. 4. The maximum section level considered when assigning the implicit `section-title` attribute (and related) available to the running content. 5. `<side>` can be `recto` (right-hand, odd-numbered pages) or `verso` (left-hand, even-numbered pages). The `columns` key can also be defined one level up (on `header` or `footer`), 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 the `pdf-folio-placement` attribute (except when `media=prepress`, which implies `physical`). The column rules are only added if the `columns` key is specified. 6. `<position>` can be `left`, `center` or `right`. 7. The `title`, `toc`, and `after-toc` values are only recognized if the title page is enabled (i.e., doctype is book or `title-page` attribute is set) The `toc` value only applies if the toc is in the default location (before the first page of the body). If value is `toc`, and 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 `after-toc`, the running content will start after the toc, no matter where it's placed in the document. To disable the running content on toc pages inserted by the toc macro, set the noheader and/or nofooter options on the macro (e.g., `toc::[opts=nofooter]`). 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.) IMPORTANT: If you don't specify a height for either the header or footer key, it effectively disables the content at that periphery. TIP: 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`. ==== Disabling 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: [source,yaml] ---- 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. ==== Replacing 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. [source,yaml] ---- 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: [source,yaml] ---- 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. ==== Attribute References 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: [source,yaml] ---- 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}' ---- ==== Multiple Lines 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 `{sp}+` to the end of the line in normal AsciiDoc fashion. [source,yaml] ---- 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} ---- TIP: 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. ==== Images 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). [source,yaml,subs=attributes+] ---- header: height: 0.75in image-vertical-align: 2 {conum-guard-yaml} <1> recto: center: content: image:footer-logo.png[pdfwidth=15pt] verso: center: content: $header-recto-center-content ---- <1> You can use the `image-vertical-align` key to slightly nudge the image up or down. CAUTION: The image must fit in the allotted space for the running header or footer. Otherwise, you'll run into layout issues or the image may not display. You can adjust the width of the image to a fixed value using the `pdfwidth` attribute. Alternatively, you can use the `fit` attribute to set the size of the image dynamically based on the available space. 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. You should not rely on the `width` attribute to set the image width when converting to PDF. == Applying Your Theme 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:: 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 to `pdf-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 to `pdf-themesdir`, if specified, otherwise the built-in themes dir. pdf-themesdir:: 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`, and `pdf-themesdir` is not specified, then `pdf-themesdir` defaults to the directory of the path specified by `pdf-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. NOTE: 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. * https://github.com/asciidoctor/asciidoctor-maven-examples/tree/master/asciidoctor-pdf-with-theme-example[Maven Example] * https://github.com/asciidoctor/asciidoctor-gradle-examples/tree/master/asciidoc-to-pdf-with-theme-example[Gradle Example] 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. == Theme-Related Document Attributes There are various settings in the theme you control using document attributes. If an attribute is marked as "Header Only", it only takes effect if defined in the AsciiDoc document header or via the API. If an attribute matches a key in the theme file, the attribute takes precedence. [cols="2,3,^1,6l"] |=== |Attribute |Value Type | Header Only |Example |autofit-option |flag (default: _not set_) |No |:autofit-option: |<face>-cover-image^[1]^ |path^[2]^ {vbar} image macro^[3]^ + (format can be image or PDF) |Yes |:front-cover-image: image:front-cover.pdf[] |hyphens^[7]^ |language code {vbar} _blank_ to default to en_us (default: _not set_) |Yes |:hyphens: de |icons^[13]^ |font {vbar} image (default: _not set_) |No |:icons: font |media |screen {vbar} print {vbar} prepress |Yes |:media: prepress |compress |flag (default: _not set_) |Yes |:compress: |optimize |screen {vbar} ebook {vbar} printer {vbar} prepress {vbar} default (default: default) |Yes |:optimize: prepress |outlinelevels^[12]^ |Integer {vbar} Integer:Integer (default: same as _toclevels_) |Yes |:outlinelevels: 2 |page-background-image^[4]^ |path^[2]^ {vbar} image macro^[3]^ |Yes |:page-background-image: image:bg.jpg[] |page-background-image-(recto{vbar}verso)^[4]^ |path^[2]^ {vbar} image macro^[3]^ |Yes |:page-background-image-recto: image:bg-recto.jpg[] |page-foreground-image |path^[2]^ {vbar} image macro^[3]^ |Yes |:page-foreground-image: image:watermark.svg[] |pagenums^[5]^ |flag (default: _set_) |Yes |:pagenums: |pdf-page-layout |portrait {vbar} landscape |Yes |:pdf-page-layout: landscape |pdf-page-margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> |Yes |:pdf-page-margin: [1in, 0.5in] |pdf-page-mode |outline {vbar} none {vbar} thumbs {vbar} fullscreen {vbar} fullscreen outline {vbar} fullscreen none {vbar} fullscreen thumbs (default: outline) |Yes |:pdf-page-mode: fullscreen none |pdf-page-size |https://github.com/prawnpdf/pdf-core/blob/0.6.0/lib/pdf/core/page_geometry.rb#L16-L68[Named size^] {vbar} <<measurement-units,Measurement[width, height]>> |Yes |:pdf-page-size: [6in, 9in] |pdf-folio-placement |virtual {vbar} virtual-inverted {vbar} physical {vbar} physical-inverted |Yes |:pdf-folio-placement: physical |pdf-version |1.3 {vbar} 1.4 {vbar} 1.5 {vbar} 1.6 {vbar} 1.7 (default: 1.4) |Yes |:pdf-version: 1.7 |pdfmark^[6]^ |flag (default: _not set_) |Yes |:pdfmark: |scripts^[8]^ |cjk (default: _not set_) |Yes |:scripts: cjk |text-align^[9]^ |<<text-alignments,Text alignment>> |Yes |:text-align: left |title-logo-image |path^[2]^ {vbar} image macro^[3]^ |Yes |:title-logo-image: image:logo.png[top=25%, align=center, pdfwidth=0.5in] |title-page^[10]^ |flag (default: _not set_) |Yes |:title-page: |title-page-background-image |path^[2]^ {vbar} image macro^[3]^ |Yes |:title-page-background-image: image:title-bg.jpg[] |toc-max-pagenum-digits^[11]^ |Integer (default: 3) |Yes |:toc-max-pagenum-digits: 4 |=== 1. `<face>` can be `front` or `back`. 2. A bare path is resolved relative to base_dir, which defaults to the document directory. 3. The target of the image macro is resolved relative to `imagesdir` since it's defined in the AsciiDoc document (unlike in the theme, where it is resolved relative to the value of `pdf-themesdir`). 4. 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) when `fit=none`. The position of the background image can be controlled using the `position` 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 value `none`. 5. 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 the `noheader` and `nofooter` attributes to disable the running header and footer, respectively. 6. Enables generation of the http://milan.kupcevic.net/ghostscript-ps-pdf/#marks[pdfmark] file, which contains metadata that can be fed to Ghostscript when optimizing the PDF file. If you're using Ghostscript >= 8.54, this feature is not needed. 7. Activates hyphenation for the language code specified (defaults to en_us). 8. 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. 9. _(Experimental)_ The `text-align` document attribute is intended as a simple way to toggle text justification. The value of this attribute overrides the `base-align` key set by the theme. For more fine-grained control, you should customize using the theme. 10. 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. 11. If the TOC overlaps the first page of content, increase this number. 12. 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. 13. By default, admonitions have a text-based label that matches the admonition type. To use icons instead, set the `icons` attribute to `font`. This setting allows the theme to control the icon used for each type (see the <<key-prefix-admonition-icon,admonition-icon key>>). It also enables the `icon` macro (covered in the README). To use local image filees, set the `icons` attribute to `image`. Note that if the value of the `icons` attribute is `image`, the `icon` macro will produce text-based output. == Page Numbering The converter automatically keeps track of page numbers. These page numbers are available as metadata and determine folio placement (recto/verso pages). By default, the converter assigns the page number 1 to the first body page of the document. It then increments the page number for each page thereafter. All front matter pages that precede the first body page in the book doctype (or when the `title-page` attribute is set) (e.g., cover page, title page, and toc pages) are numbered using roman numerals (e.g., i, ii, iii, etc). Since these computed page numbers can differ from the physical page numbers, we refer to them as [.term]_virtual page numbers_. By default, the folio placement is derived from the virtual page number. Odd page numbers (e.g., 1, 3, 5, ...) designate recto pages and even page numbers (e.g., 2, 4, 6, ...) designate verso pages. It's possible to influence the virtual page numbering using a combination of the theme and document attributes. One such customization is to control where the transition from roman numerals to integers occurs. The theme can specify the page where the integer (1-based) page numbering should begin using the `page-numbering-start-at` key. For instance, the theme can specify `page-numbering-start-at: title`, which will make the integer page numbering start at the title page when enabled (i.e., the title page will be assigned the virtual page number 1). Alternately, the theme can specify an offset from the first body page where the page numbering should begin (all doctypes). For instance, `page-numbering-start-at: 2` tells the converter to assign the virtual page number 1 to the second page of the body. Any page that precedes that page will be numbered using roman numerals. Changing the page on which the integer page numbering begins can alter to folio placement. To correct for this, or to change the folio placement in general, you can use the `pdf-folio-placement` document attribute. For instance, to base the folio placement on physical page numbers, set the value of this attribute to `physical` (e.g., `pdf-folio-placement=physical`). To invert the recto and verso pages, add the `-inverted` qualifier to the value (e.g., `pdf-folio-placement=physical-inverted`). The default theme shows the virtual page number in the footer of all body pages. If you're starting with a blank theme, you can add the page number by using the `\{page-number}` attribute reference in the `content` key of the running content (header or footer). For example: [source,yaml] ---- footer: recto: right: content: '\{page-number}' ---- If you want the running content to also appear on front matter pages, you can use the theme to change the page on which the running content starts with the `running-content-start-at` key. For instance, to start the running content on the title page, assuming the title page is enabled, set `running-content-start-at: title` in your theme file. Aside from the configurability mentioned, the page numbering logic is computed automatically. [#print] == Printing Mode (print) 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 * Disables links from page numbers in index to location of term in document 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`). You may also want to consider using the print-optimized theme, which uses darker, grayscale colors for text and borders (e.g., `-a pdf-theme=default-for-print`). [#prepress] == Publishing Mode (prepress) In addition to the <<print,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. You may also want to consider using the print-optimized theme, which uses darker, grayscale colors for text and borders (e.g., `-a pdf-theme=default-for-print`). === Double-Sided Page Margins 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: [source,yaml] ---- 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` and `back-cover-image` attributes. === Automatic Facing Pages 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. [source,asciidoc] ---- [%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 https://github.com/asciidoctor/asciidoctor-pdf/issues/95[issue #95]. == Source Highlighting Theme When using Rouge as the source highlighter, you can apply a bundled theme (aka style) to your source blocks or define and apply your own. === Using a Highlighting Theme Rouge bundles several themes you can use to colorize your source blocks. To use one of these themes, first set the value of the `source-highlighter` document attribute to `rouge`. Then, specify the desired theme using the `rouge-style` document attribute. The following example demonstrates how to apply the monokai theme from Rouge to source blocks. [source,asciidoc] ---- :source-highlighter: rouge :rouge-style: monokai ---- You can generate a list of all available themes by running the following command: $ ruby -e 'require :rouge.to_s; puts Rouge::Theme.registry.keys.sort.join ?\n' You can also find the list of themes in the Rouge source repository at https://github.com/rouge-ruby/rouge/tree/master/lib/rouge/themes. If the bundled themes don't suit your needs, you can define one of your own. === Custom Highlighting Theme 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., [.path]_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. .rouge_themes/custom.rb [source,ruby] ---- 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 https://github.com/jneen/rouge/blob/master/lib/rouge/token.rb[token.rb] file from Rouge. Refer to the https://github.com/jneen/rouge/tree/master/lib/rouge/themes[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,asciidoc] ---- :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 http://rouge.jneen.net/[Rouge project page]. //// == Resources for Extending Asciidoctor PDF * http://www.sitepoint.com/hackable-pdf-typesetting-in-ruby-with-prawn[Hackable PDF typesetting in Ruby with Prawn] //// == Extending the Converter This converter uses {url-prawn}[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. === Going Beyond Theming 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 https://www.sitepoint.com/hackable-pdf-typesetting-in-ruby-with-prawn/[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. === Tailoring Conversion 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). === Defining the Extended Converter Starting with Asciidoctor 2, defining an extending converter and registering it in place of the original is very straightforward. .custom-pdf-converter.rb [source,ruby] ---- 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: [source,ruby] ---- 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. [source,ruby] ---- 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. [source,ruby] ---- 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 `ink_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). [source,ruby] ---- def ink_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.imported 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 https://www.rubydoc.info/github/asciidoctor/asciidoctor-pdf/Asciidoctor/PDF/Converter[API docs]. For deeper examples of how to override the behavior of the converter, refer to the extended converter in the https://github.com/mraible/infoq-mini-book/blob/main/src/main/ruby/asciidoctor-pdf-extensions.rb[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. === Using the Extended Converter To use this converter, register it by passing the path to the `-r` flag when calling the `asciidoctor-pdf` command: $ asciidoctor-pdf -r ./custom-pdf-converter.rb document.adoc That's all there is too it. Now you're hacking the typesetting! [appendix] == Preparing a Custom Font Any TTF or OTF 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 {url-fontforge}[FontForge]. These instructions will cover how to prepare a TTF font, but the same applies for an OTF font. === Validate the Font 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 font is free from errors. .validate-font.rb [source,ruby] ---- 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 menu: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). === Modifying the Font To ready your font for use with Asciidoctor PDF, you'll need to modify it using a font program. We recommend using {url-fontforge}[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 or OTF (only required if the font is a TTC or other format not supported by Prawn). * 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. NOTE: 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) NOTE: 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 kbd:[Ctrl,c], switch back to your font, select the character again, and press kbd:[Ctrl,v]. You may need to scale the glyph so it fits properly in the art box. IMPORTANT: If you're copying a non-visible character, be sure to set the width to 0 using menu:Metrics[Set Width...], enter 0 into *Set Width To*, then click btn:[OK]. When you're done, save the font with the old-style kern table enabled. To do so, select menu:File[Generate Fonts...], select *TrueType*, click btn:[Options], make sure _only_ the following options are checked (equivalent to the flags 0x90 + 0x08): * [x] OpenType ** [x] Old style 'kern' Then click btn:[OK], then uncheck *Validate Before Saving*, and finally click btn:[Generate] to generate and save the font. Your font file is now ready to be used with Asciidoctor PDF. === Scripting the Font Modifications Performing all this font modification manually can be tedious (not to mention hard to reproduce). Fortunately, FontForge provides a {url-fontforge-scripting}[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 {url-repo-root}/scripts[scripts directory] of this project. You can use that script as a starting point or reference for your own font preparation / modification script.