diff --git a/Characters/000-header.tex b/Characters/000-header.tex new file mode 100644 index 0000000..b682b25 --- /dev/null +++ b/Characters/000-header.tex @@ -0,0 +1,19 @@ +\documentclass[letterpaper,twocolumn,twoside,12pt]{book} + +\usepackage{graphicx} +\usepackage{enumitem} + +\AddToHook{shipout/background}[background]{% + \put (0in,-\paperheight){\includegraphics[width=\paperwidth,height=\paperheight]{img/paper}} +} + +\def\midrule{\vskip3pt\rule{\columnwidth}{0.3pt}\vskip3pt} +\def\botrule{\vskip3pt\rule{\columnwidth}{0.3pt}} +\def\toprule{\vskip10pt\rule{\columnwidth}{0.3pt}\vskip3pt} +\def\myref#1{(Table: \ref{#1} Page: \pageref{#1})} + +\begin{document} + +\tableofcontents +\listoffigures +\listoftables \ No newline at end of file diff --git a/Characters/090-footer.tex b/Characters/090-footer.tex new file mode 100644 index 0000000..815ab68 --- /dev/null +++ b/Characters/090-footer.tex @@ -0,0 +1 @@ +\end{document} \ No newline at end of file diff --git a/Characters/Append-Characters.tex b/Characters/Append-Characters.tex new file mode 100644 index 0000000..daac2dc --- /dev/null +++ b/Characters/Append-Characters.tex @@ -0,0 +1,15 @@ +\chapter{Characters --- Notes} + +\section{2023-10-06} + +Created This\ldots Already had a good portion of the chapter written. + +The first character was getting close to having been created, and that +was working well, but I can't work on it further at this time, but +wanted to put some info here to make the whole document work a little +better. + +At this point I need to do more away from the computer to get an idea of +the next steps for the character creation. It looks to be at the Step +4. Skills section. + diff --git a/Characters/Append-Intro.tex b/Characters/Append-Intro.tex new file mode 100644 index 0000000..fe30deb --- /dev/null +++ b/Characters/Append-Intro.tex @@ -0,0 +1,11 @@ +\chapter{Introduction --- Notes} + +\section {2023-10-06} + +Created the Introduction chapter. This was already starting to look +like I was going to need an introduction before too long, so there is a +brief introduction and some about each of the parts that we have there. + +It will likely need to be expanded and made more a way to get a fairly +quick idea as to where something might be. All of this will take time. + diff --git a/Characters/Append-Only.tex b/Characters/Append-Only.tex new file mode 100644 index 0000000..9c3e1b4 --- /dev/null +++ b/Characters/Append-Only.tex @@ -0,0 +1,7 @@ +% This is for printing just the appendix, but feels useful as I have broken the appendix into multiple chapter files. + +\input{000-header.tex} + +\include{Append} + +\input{090-footer.tex} \ No newline at end of file diff --git a/Characters/Append.tex b/Characters/Append.tex new file mode 100644 index 0000000..76073dc --- /dev/null +++ b/Characters/Append.tex @@ -0,0 +1,5 @@ +\appendix + +\include{Append-Intro} +\include{Append-Characters} +\include{Append-Append} \ No newline at end of file diff --git a/Characters/Book.tex b/Characters/Book.tex new file mode 100644 index 0000000..90c4eb0 --- /dev/null +++ b/Characters/Book.tex @@ -0,0 +1,12 @@ +\input{000-header.tex} + +\include{Introduction-content} +\include{Hero-content} + +\appendix + +\include{Append-Intro} +\include{Append-Characters} +\include{Append-Append} + +\input{090-footer.tex} diff --git a/Characters/Introduction-content.tex b/Characters/Introduction-content.tex new file mode 100644 index 0000000..8b3a5b9 --- /dev/null +++ b/Characters/Introduction-content.tex @@ -0,0 +1,23 @@ +\chapter{Introduction} + +This book is made based on the {\it 7\/$^{th}$ Sea Core Rulebook: 2\/$^{nd}$ Edition}, and is mainly meant as something for putting content that I am wanting to run together. + +That said, this may become something that parts or the entirety of it will get in the hands of my players, or people who find it some other way. I may at some point decide to publish it. + +As I am writing this very brief introduction I have something written about Characters, specifically the start of a single Character. I don't really know where it will go beyond that. + +\section{Characters} + +This is where the characters I create will go. Some of these may be characters which I'm creating for myself, and some may have been just created for fun, and some might even be created for a specific player. + +\subsection{???? Tr\"age} + +This is the first character I am creating, and as of now it has a good amount about actually creating the character in the sections labeled "Step ..." + +There is also room for additional notes. + +\section{Appendix} + +This is where my notes about the process of this goes, as well as possibly some stuff which might make it easier to find your (my) way through this. Each chapter will have a separate appendix, in part just for making it easier to edit. + +This also is including stuff about the whole process of making the book itself. \ No newline at end of file diff --git a/Characters/Introduction.tex b/Characters/Introduction.tex new file mode 100644 index 0000000..e23932d --- /dev/null +++ b/Characters/Introduction.tex @@ -0,0 +1,5 @@ +\input{000-header.tex} + +\include{Introduction-content} + +\input{090-footer.tex} \ No newline at end of file diff --git a/Characters/Makefile b/Characters/Makefile new file mode 100644 index 0000000..b0aa915 --- /dev/null +++ b/Characters/Makefile @@ -0,0 +1,31 @@ +clean: + rm *.aux *.dvi *.fdb_latexmk *.fls *.log *.ps *.synctex.gz *.toc + +Hero.dvi: Hero.tex Hero-content.tex 000-header.tex 090-footer.tex + latex Hero.tex + latex Hero.tex + +Hero.pdf: Hero.dvi + dvipdf.sh Hero + +Introduction.dvi: Introduction.tex Introduction-content.tex 000-header.tex 090-footer.tex + latex Introduction.tex + latex Introduction.tex + +Introduction.pdf: Introduction.dvi + dvipdf.sh Introduction + +Append-Only.dvi: Append-Only.tex Append.tex Append-Intro.tex Append-Characters.tex 000-header.tex 090-footer.tex + latex Append-Only.tex + latex Append-Only.tex + +Append-Only.pdf: Append-Only.dvi + dvipdf.sh Append-Only + +Book.dvi: Book.tex Introduction-content.tex Hero-content.tex Append-Append.tex Append-Intro.tex Append-Characters.tex 000-header.tex 090-footer.tex + latex Book.tex + latex Book.tex + +Book.pdf: Book.dvi + dvipdf.sh Book +