Create Book Structure...

This creates the book structure, getting to be a more fully realised.
This commit is contained in:
Jigme Datse Yli-Rasku 2023-10-06 11:25:17 -07:00
parent 5f51849cc0
commit 1a40f518ae
10 changed files with 129 additions and 0 deletions

19
Characters/000-header.tex Normal file
View File

@ -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

View File

@ -0,0 +1 @@
\end{document}

View File

@ -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.

View File

@ -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.

View File

@ -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}

5
Characters/Append.tex Normal file
View File

@ -0,0 +1,5 @@
\appendix
\include{Append-Intro}
\include{Append-Characters}
\include{Append-Append}

12
Characters/Book.tex Normal file
View File

@ -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}

View File

@ -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.

View File

@ -0,0 +1,5 @@
\input{000-header.tex}
\include{Introduction-content}
\input{090-footer.tex}

31
Characters/Makefile Normal file
View File

@ -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