Skip to content
Scott Wilton edited this page Jun 10, 2013 · 13 revisions

Welcome to the rulebook wiki! Please notice there is a second page about technology.

Roadmap

  1. Port the old 2012-Rulebook to the branch 2012 on GitHub
  2. Make all the changes by the passed proposals from the Rulebook commitee

Writing Guidelines

Linebreak Conventions

  • Use one sentence per line, as git is a line-based version control system
  • Add a new line before every new section or subsection
  • Use a blank line for a new paragraph within a section. Do not use \\

Referencing and Label Conventions

When referencing a section, it should be labeled as follows:

\part{Racing \label{chap:racing}}

\section{Age Groups \label{sec:racing_age-groups}}
There are age groups. See \ref{subsec:racing_age-groups_little-kids} if you are a little kid.

\subsection{Little Kids \label{subsec:racing_age-groups_little-kids}}
If you are a little kid you should still race unicycles.

Make sure that the label is contained within the section title and brackets.

Lists

\begin and \end{itemize} should be on their own line.

When using nested lists, tab the second level in.

For example:

\begin{itemize}
\item Item 1
\item Item 2
    \begin{itemize}
    \item Subitem 1
    \item Subitem 2
    \end{itemize}
\item Item 3
\end{itemize}
Clone this wiki locally