moved Grenzland1 to own folder issue01
BIN
issue01/Coverimage.png
Normal file
|
After Width: | Height: | Size: 214 KiB |
2394
issue01/Grenzland-Startarea.gen.svg
Normal file
|
After Width: | Height: | Size: 312 KiB |
944
issue01/Grenzland-postapo.gen.svg
Normal file
|
After Width: | Height: | Size: 3.3 MiB |
366
issue01/Grenzland-praeapo.gen.svg
Normal file
|
After Width: | Height: | Size: 3.2 MiB |
1475
issue01/Grenzland1.tex
Normal file
7184
issue01/Inseln-Startarea.gen.svg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
15
issue01/License.md
Normal file
@@ -0,0 +1,15 @@
|
||||
Alle Artikel dieses Fan-Zines stehen unter Creative Commons Lizenz
|
||||
CC BY-NC 4.0, https://creativecommons.org/licenses/by-nc/4.0/
|
||||
|
||||
Bei Titelbild und Illustrationen handelt es sich um Kritzeleien und
|
||||
Skizzen, die während der ersten beiden Spielzeiten von verschiedenen
|
||||
Spielerinnen und Spielern auf das Flipchart-Papier gezeichnet wurden,
|
||||
welches wir als *Battlemap* benutzten. Sie seien hiermit der *public
|
||||
domain* gewidmet.
|
||||
|
||||
Redaktion und Layout sowie Kartografie und alle Texte ohne
|
||||
Autorenangabe: Laurens Kils-Hütten, a.k.a *Wanderer Bill*,
|
||||
E-Mail: wandererbill@betola.de
|
||||
|
||||
Das Grenzland Zine ist ein Open Source Projekt. Die Quelldateien
|
||||
finden sich unter https://github.com/lskh/Grenzland-Zine
|
||||
40
issue01/Makefile
Normal file
@@ -0,0 +1,40 @@
|
||||
PDF=Grenzland1.pdf
|
||||
|
||||
GENPNG=Grenzland-postapo.gen.png Grenzland-praeapo.gen.png\
|
||||
Grenzland-Startarea.gen.png Inseln-Startarea.gen.png
|
||||
|
||||
.PRECIOUS: $(GENPNG)
|
||||
|
||||
all: $(PDF)
|
||||
|
||||
%.pdf: %.tex License.tex $(GENPNG) Coverimage.png wbzine.cls Makefile
|
||||
pdflatex $<
|
||||
|
||||
%.gen.png: %.gen.svg Makefile
|
||||
inkscape -D -o $@ $<
|
||||
|
||||
coverart.png: coverart.cfdg Makefile
|
||||
cfdg $< > $@
|
||||
|
||||
License.tex: License.md Makefile
|
||||
pandoc -o $@ $<
|
||||
|
||||
Frontcover.png: Makefile
|
||||
pdftoppm -f 1 -l 1 $(PDF) > tmp.png
|
||||
convert +level-colors "#000000","#ff44bb" \
|
||||
tmp.png $@
|
||||
|
||||
Backcover.png: Makefile
|
||||
pdftoppm -f 1 -l 1 $(PDF) > tmp.png
|
||||
convert +level-colors "#ff44bb","#ff44bb" \
|
||||
-fuzz 100% tmp.png $@
|
||||
rm -f tmp.png
|
||||
|
||||
view: all
|
||||
zathura *.pdf &
|
||||
|
||||
clean:
|
||||
rm -f *~ *.log *.aux *.toc
|
||||
|
||||
realclean: clean
|
||||
rm -f *.pdf *.gen.png coverart.png License.tex
|
||||
BIN
issue01/Worldmap.png
Normal file
|
After Width: | Height: | Size: 544 KiB |
BIN
issue01/demon.png
Normal file
|
After Width: | Height: | Size: 191 KiB |
BIN
issue01/dryad.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
issue01/grenzlandinvite.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
issue01/mapandbook.png
Normal file
|
After Width: | Height: | Size: 476 KiB |
BIN
issue01/mapdragon.png
Normal file
|
After Width: | Height: | Size: 440 KiB |
BIN
issue01/mapscape.png
Normal file
|
After Width: | Height: | Size: 202 KiB |
BIN
issue01/mushroom.png
Normal file
|
After Width: | Height: | Size: 93 KiB |
BIN
issue01/sword.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
issue01/tower.png
Normal file
|
After Width: | Height: | Size: 910 KiB |
BIN
issue01/treasure.png
Normal file
|
After Width: | Height: | Size: 286 KiB |
BIN
issue01/warrior.png
Normal file
|
After Width: | Height: | Size: 176 KiB |
99
issue01/wbzine.cls
Normal file
@@ -0,0 +1,99 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesClass{wbzine}[2020/07/03 simple class for old school gaming zines]
|
||||
|
||||
\DeclareOption{onecolumn}{\OptionNotUsed}
|
||||
\DeclareOption{twocolumn}{\OptionNotUsed}
|
||||
|
||||
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
|
||||
\ProcessOptions\relax
|
||||
|
||||
\LoadClass{article}
|
||||
|
||||
\RequirePackage[a5paper]{geometry}
|
||||
\geometry{inner=10mm, outer=10mm, top=10mm, bottom=16mm}
|
||||
\geometry{footskip=6mm}
|
||||
\setlength{\parindent}{0mm}
|
||||
\setlength{\parskip}{3mm}
|
||||
\RequirePackage{multicol}
|
||||
\RequirePackage{graphicx}
|
||||
\RequirePackage{tabularx}
|
||||
\newcolumntype{Z}{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}X}
|
||||
\newcolumntype{Y}{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}X}
|
||||
\RequirePackage[table]{xcolor} % loads also »colortbl«
|
||||
\rowcolors{2}{gray!25}{white}
|
||||
\RequirePackage{tcolorbox}
|
||||
|
||||
\setcounter{secnumdepth}{1}
|
||||
\setcounter{tocdepth}{1}
|
||||
|
||||
\newcommand{\volume}[1]{
|
||||
|
||||
}
|
||||
|
||||
\newcommand{\issue}[1]{
|
||||
|
||||
}
|
||||
|
||||
\newcommand{\by}[1]{
|
||||
\hfill\textit{#1}}
|
||||
|
||||
|
||||
% Do I really need this?
|
||||
%\setlength{\textwidth}{17.5cm}
|
||||
%\setlength{\textheight}{25cm}
|
||||
|
||||
|
||||
|
||||
\def\@maketitle{%
|
||||
\null
|
||||
{\bfseries\fontsize{60}{55}
|
||||
\selectfont \@title \par}%
|
||||
\hrulefill
|
||||
{\large \@date}
|
||||
\includegraphics[width=\textwidth]{coverart.png}
|
||||
}
|
||||
|
||||
\def\@contentstitle{%
|
||||
\null
|
||||
{\bfseries\fontsize{70}{55}
|
||||
\selectfont \@title \par}%
|
||||
\hrulefill
|
||||
{\large
|
||||
\@author}
|
||||
\tableofcontents
|
||||
}
|
||||
|
||||
\newcommand{\smallmap}[1]{
|
||||
%\begin{figure*}[htb]
|
||||
\includegraphics[width=\columnwidth]{#1}
|
||||
%\end{figure*}
|
||||
}
|
||||
|
||||
\newcommand{\bigmap}[1]{
|
||||
\end{multicols}
|
||||
%\begin{figure*}
|
||||
\noindent
|
||||
\vfill
|
||||
\includegraphics[width=\textwidth]{#1}
|
||||
%\end{figure*}
|
||||
\vfill
|
||||
\begin{multicols}{2}}
|
||||
|
||||
\newcommand{\landscapemap}[1]{
|
||||
\end{multicols}
|
||||
%\begin{figure*}
|
||||
\noindent
|
||||
\includegraphics[width=\textheight,angle=90,origin=c]{#1}
|
||||
%\end{figure*}
|
||||
\begin{multicols}{2}}
|
||||
|
||||
%\renewcommand*\sfdefault{ugq}
|
||||
|
||||
\RequirePackage{titlesec}
|
||||
\titlespacing{\section}{0pt}{*4}{*0.2}
|
||||
\titleformat{\section}[frame]
|
||||
{\normalfont}
|
||||
{\filright\enspace\thesection\enspace}
|
||||
{2pt}
|
||||
{\Large\bfseries\filcenter}
|
||||
|
||||