Login  Register

Re: AsciiDoctor PDF & slide-show presentations

Posted by mcp292 on Sep 02, 2020; 2:44pm
URL: https://discuss.asciidoctor.org/AsciiDoctor-PDF-slide-show-presentations-tp6053p8206.html

I found out that the variables in the theme you extend are not updated when you change values they reference. Meaning it might be better to copy over the entire theme and change what you need. For my purposes I'd rather only change what I have to and keep the file small and readable.

I added a line to increase the page number size and got rid of the margin top stuff:

```
extends: default
base:
  font_size: 15
heading:
  h1-font-size: 30  
  h2-font-size: 25    
  h3-font-size: 20
  h4-font-size: 15
title_page:
  authors:
    font_size: $heading_h3_font_size
code:
  font-size: 15
footer:
  font-size: 12
```