0f2851ef9f
As announced, this will be our new bylaws. Members did not have objections, so the proposed changes will be accepted. The changes themselves were discussed here: https://mail.gnome.org/archives/foundation-list/2012-August/msg00041.html and a bug report was opened here: https://bugzilla.gnome.org/show_bug.cgi?id=683980 (cf. https://mail.gnome.org/archives/foundation-announce/2012-October/msg00001.html) The HTML and LaTeX versions were generated using Python's docutils, i.e. rst2latex and rst2html. The attached default.tex and bylaws.css help to theme the resulting documents.
23 lines
516 B
CSS
23 lines
516 B
CSS
body {
|
|
counter-reset: mySectionCounter, mySubSectionCounter;
|
|
}
|
|
h1 {
|
|
counter-increment: mySectionCounter;
|
|
counter-reset: mySubSectionCounter;
|
|
}
|
|
h1:after {
|
|
}
|
|
h1:before {
|
|
content: 'ARTICLE ' counter(mySectionCounter, upper-roman) ' - ';
|
|
}
|
|
|
|
h5:after {
|
|
}
|
|
|
|
h2 {
|
|
counter-increment: mySubSectionCounter;
|
|
}
|
|
|
|
h2:before {
|
|
content: 'Section ' counter(mySectionCounter, decimal) '.' counter(mySubSectionCounter, decimal) ': ';
|
|
}
|