summary refs log tree commit diff stats
path: root/reference/simple
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-09-16 18:41:09 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-09-16 18:41:09 +0200
commitfc3ec276bc47d208beaf2d7602258e13de1385a1 (patch)
tree8c93831117f54c6c93831a2a0a055aeca7d7d95d /reference/simple
parentbuild(treewide): Update (diff)
downloadlpm-fc3ec276bc47d208beaf2d7602258e13de1385a1.tar.gz
lpm-fc3ec276bc47d208beaf2d7602258e13de1385a1.zip
chore(references): Add testing data
Diffstat (limited to 'reference/simple')
-rw-r--r--reference/simple/content/01_zusammenfassung/chapter.tex3
-rw-r--r--reference/simple/content/static/bibliography.tex3
-rw-r--r--reference/simple/content/static/title.tex3
-rw-r--r--reference/simple/headers/preamble_local.tex3
-rw-r--r--reference/simple/lpm.toml16
-rw-r--r--reference/simple/simple.tex18
6 files changed, 46 insertions, 0 deletions
diff --git a/reference/simple/content/01_zusammenfassung/chapter.tex b/reference/simple/content/01_zusammenfassung/chapter.tex
new file mode 100644
index 0000000..05d7bb0
--- /dev/null
+++ b/reference/simple/content/01_zusammenfassung/chapter.tex
@@ -0,0 +1,3 @@
+% SUMMERY BEGIN
+Hi! I'm a summary.
+% SUMMERY END
diff --git a/reference/simple/content/static/bibliography.tex b/reference/simple/content/static/bibliography.tex
new file mode 100644
index 0000000..4fdf3fb
--- /dev/null
+++ b/reference/simple/content/static/bibliography.tex
@@ -0,0 +1,3 @@
+% BIBLIOGRAPHY BEGIN
+Hi! I'm a bibliography.
+% BIBLIOGRAPHY END
diff --git a/reference/simple/content/static/title.tex b/reference/simple/content/static/title.tex
new file mode 100644
index 0000000..ade68fd
--- /dev/null
+++ b/reference/simple/content/static/title.tex
@@ -0,0 +1,3 @@
+% TITLE BEGIN
+Hi! I'm a title.
+% TITLE END
diff --git a/reference/simple/headers/preamble_local.tex b/reference/simple/headers/preamble_local.tex
new file mode 100644
index 0000000..d0711df
--- /dev/null
+++ b/reference/simple/headers/preamble_local.tex
@@ -0,0 +1,3 @@
+% PREAMBLE BEGIN
+preamble
+% PREAMBLE END
diff --git a/reference/simple/lpm.toml b/reference/simple/lpm.toml
new file mode 100644
index 0000000..f23abd5
--- /dev/null
+++ b/reference/simple/lpm.toml
@@ -0,0 +1,16 @@
+main_file = "./simple.tex"
+
+[templates]
+section = '''
+%! TEX root = ../../../facharbeit.tex
+% LTeX: language=de-DE
+
+\section{REPLACMENT_SECTION_TITLE} % DATE
+Dies ist etwas text
+'''
+chapter = '''
+%! TEX root = ../../facharbeit.tex
+% LTeX: language=de-DE
+
+\chapter{REPLACEMENT_CHAPTER}
+'''
diff --git a/reference/simple/simple.tex b/reference/simple/simple.tex
new file mode 100644
index 0000000..ffb17ed
--- /dev/null
+++ b/reference/simple/simple.tex
@@ -0,0 +1,18 @@
+% LTeX: language=de-DE
+\documentclass[oneside, twocolumn]{book}
+
+\input{headers/preamble_local.tex}
+
+\title{Hi!}
+\date{\DTMToday}
+
+\begin{document}
+\input{content/static/title.tex}
+
+\include{content/01_zusammenfassung/chapter.tex}
+% NEXT_CHAPTER
+
+\appendix
+
+\input{content/static/bibliography.tex}
+\end{document}