Modifications rapides

Changer le caractère typographique

Modifier le fichier css/style.css du thème pour déclarer le (ou les) nouveau(x) catactère(s), et modifier la valeur de --fontfamily dans les propriétés personnalisées.

@font-face {
  font-family: "Superserif";
  src: url("fonts/superserif.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
:root {
  /* typographie */
  --fontfamily: "Superserif", serif;
  …
}

Modifier le format

Format et marges

@page {
  size: 148mm 210mm;

  @bottom-left-corner {
    content: element(folioRunning);
    text-align: left;
  }
  @bottom-left{
    content: element(titleRunning);
    text-align: left;
  }
  @footnote {
    float: bottom;
  }
}  
@page:right{
  margin: 1cm 2cm 2.5cm 1cm;
}
@page:left{
  margin: 1cm 1cm 2.5cm 2cm;
}
@page cover {
  margin: 1cm 1cm 2.5cm 1cm;    
  @bottom-left-corner {
    display: none;
  }
  @bottom-left{
    display: none;
  }
}
@page:blank{
  @bottom-left-corner {
    display: none;
  }
  @bottom-left{
    display: none;
  }
}