first commit
fenris

fenris commited on 2016-03-10 12:17:52
Zeige 8 geänderte Dateien mit 73 Einfügungen und 0 Löschungen.

... ...
@@ -0,0 +1,2 @@
1
+temp
2
+build
... ...
@@ -0,0 +1,16 @@
1
+default: build/folksprak.pdf
2
+.PHONY: default
3
+
4
+temp/media/folksprak.pdf: source/media/folksprak.svg
5
+	mkdir --parents temp/media
6
+	convert source/media/folksprak.svg temp/media/folksprak.pdf
7
+
8
+temp/folksprak.pdf: source/tex/folksprak.tex temp/media/folksprak.pdf
9
+	mkdir --parents temp
10
+	xelatex -output-directory=temp source/tex/folksprak.tex
11
+
12
+build/folksprak.pdf: temp/folksprak.pdf
13
+	mkdir --parents build
14
+	cp --recursive temp/folksprak.pdf build/folksprak.pdf
15
+	
16
+
... ...
@@ -0,0 +1,9 @@
1
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="220" height="160">
2
+	<g transform="scale(10,10)">
3
+		<path d="M 0,7 H 7 V 0 H 9 V 7 H 22 V 9 H 9 V 16 H 7 V 9 H 0 Z" style="fill: #484;" />
4
+		<rect x="0" y="0" width="6" height="6" style="fill: #844;" />
5
+		<rect x="10" y="0" width="12" height="6" style="fill: #448;" />
6
+		<rect x="0" y="10" width="6" height="6" style="fill: #448;" />
7
+		<rect x="10" y="10" width="12" height="6" style="fill: #844;" />
8
+	</g>
9
+</svg>
... ...
@@ -0,0 +1,17 @@
1
+\documentclass{article}
2
+
3
+\input{source/tex/packages}
4
+\input{source/tex/settings}
5
+\input{source/tex/meta}
6
+
7
+\begin{document}
8
+	
9
+	\newpage \maketitle
10
+	\includegraphics[width=1.0\textwidth]{temp/media/folksprak}
11
+	
12
+	\newpage \tableofcontents
13
+	
14
+	\newpage \input{source/tex/phonology_and_orthography}
15
+	
16
+\end{document}
17
+
... ...
@@ -0,0 +1,3 @@
1
+\title{Folksprak}
2
+\author{Christian Fraß}
3
+
... ...
@@ -0,0 +1,4 @@
1
+\usepackage{polyglossia}
2
+\usepackage{fontspec}
3
+\usepackage{graphicx}
4
+
... ...
@@ -0,0 +1,17 @@
1
+\begin{section}{Phonology and Orthography}
2
+	
3
+	Folksprak uses the following characters as letters:
4
+	
5
+	\begin{tabular}{|l|l|l|}
6
+		\hline
7
+		Latin letter & Rune & Canonic Sound Mapping \\
8
+		\hline
9
+		\hline
10
+		L/l & \- & [l] \\
11
+		\hline
12
+		M/m & \- & [m] \\
13
+		N/n & \- & [n] \\
14
+		\hline
15
+	\end{tabular}
16
+	
17
+\end{section}
... ...
@@ -0,0 +1,5 @@
1
+\setmainlanguage{english}
2
+
3
+\setmainfont{Linux Biolinum O}
4
+\setmonofont{FreeMono}
5
+
0 6