Re: Running Header for PDF

Posted by mojavelinux on
URL: https://discuss.asciidoctor.org/Running-Header-for-PDF-tp3505p3533.html

Aha! You are hitting the following issue.

https://github.com/asciidoctor/asciidoctor-pdf/issues/229

This is fixed in the upcoming 1.5.0 alpha 9 release. The quick fix is to add at least one section to your document.

Cheers,

-Dan

On Tue, Jul 21, 2015 at 12:51 AM, karfunkel [via Asciidoctor :: Discussion] <[hidden email]> wrote:
Here it is:

footer:
  font_size: $base_font_size_small
  font_color: $base_font_color
  # NOTE if background_color is set, background and border will span width of page
  border_color: dddddd
  border_width: 0.25
  height: $base_line_height_length * 2.5
  padding: [$base_line_height_length / 2, 1, 0, 1]
  valign: top
  #image_valign: <alignment> or <number>
  # additional attributes for content:
  # * {page-count}
  # * {page-number}
  # * {document-title}
  # * {document-subtitle}
  # * {chapter-title}
  # * {section-title}
  # * {section-or-chapter-title}
  recto_content:
    #right: '{section-or-chapter-title} | {page-number}'
    #right: '{document-title} | {page-number}'
    right: '{page-number}'
    #center: '{page-number}'
  verso_content:
    #left: '{page-number} | {chapter-title}'
    left: '{page-number}'
    #center: '{page-number}'
header:
  font_size: $base_font_size_small
  font_color: $base_font_color
  # NOTE if background_color is set, background and border will span width of page
  border_color: dddddd
  border_width: 0.25
  border_style: solid
  height: $base_line_height_length * 2.5 * 4
  padding: [$base_line_height_length / 2, 1, 0, 1]
  valign: top
  recto_content:
    right: 'Seite {page-number} | {document-title}'
    #right: 'Seite {page-number} | Stand {now} | {document-title}'
  verso_content:
    right: 'Seite {page-number} | {document-title}'
    #right: 'Seite {page-number} | Stand {now} | {document-title}'

Sascha


If you reply to this email, your message will be added to the discussion below:
http://discuss.asciidoctor.org/Running-Header-for-PDF-tp3505p3532.html
To start a new topic under Asciidoctor :: Discussion, email [hidden email]
To unsubscribe from Asciidoctor :: Discussion, click here.
NAML



--