From 3f4bea9c5e36490661624ff0bb30cbf4fda9591b Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Sat, 24 Jan 2026 08:39:00 +0100 Subject: Create basic ruleset The ruleset contains basics, character creation, combat, magic. Implement example one-shot campain. --- main.tex | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 main.tex (limited to 'main.tex') diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..385710e --- /dev/null +++ b/main.tex @@ -0,0 +1,44 @@ +\documentclass{report} +\usepackage[a4paper, margin=0.75in]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[english]{babel} +\usepackage{longtable, etoolbox, tabularx, amsmath, booktabs, titlesec, makeidx, enumitem} + +\makeindex + +\newcommand{\attr}[1]{#1\index{Attributes!#1}} % Attributes +\newcommand{\wpn}[1]{#1\index{Weapons!#1}} % Weapons +\newcommand{\monster}[1]{#1\index{Monsters!#1}} % Monsters +\newcommand{\spell}[1]{#1\index{Spells/Abilities!#1}} % Spells/Abilities +\newcommand{\eq}[1]{#1\index{Equipment!#1}} % Equipment +\newcommand{\kw}[1]{#1\index{#1}} + +\AtBeginEnvironment{tabularx}{\footnotesize} +\AtBeginEnvironment{longtable}{\footnotesize} + +% Preventing default chapters and making them look like 1: XYZ +\titleformat{\chapter}[hang] + {\normalfont\huge\bfseries} + {\thechapter:}{1em}{} +\titlespacing*{\chapter}{0pt}{-10pt}{*3} + +\begin{document} +\input{components/front} + +\twocolumn + +\include{chapters/intro} +\include{chapters/combat} +\include{chapters/exploration} +\include{chapters/magic} +\include{campains/greyhaven} +\chapter{Character Sheet} +\input{components/sheet} + + +\clearpage +\renewcommand{\indexname}{Keyword List} +\printindex + +\end{document} -- cgit v1.2.3