Browse Source

fix spaces in figure numbering

main
Nicolas Massé 3 years ago
parent
commit
5617cbc647
  1. 5
      assets/css/itix.css

5
assets/css/itix.css

@ -143,6 +143,11 @@ h3::before, #TableOfContents > ul > li > ul > li::before {
} }
figcaption::before { figcaption::before {
/*
* When the numbering is done in CSS, we cannot honor typographical
* conventions of the user language. So, here I chose the english convention
* with no space before the colon and a space after.
*/
content: "Figure " counter(figcaption) ": "; content: "Figure " counter(figcaption) ": ";
counter-increment: figcaption; counter-increment: figcaption;

Loading…
Cancel
Save