changeset 0:fd91829df761

initial commit
author meillo@marmaro.de
date Sun, 02 Sep 2007 13:46:18 +0200
parents
children c66979d2f6cd
files .hgignore Makefile Reisebericht-Ukraine07.tex
diffstat 3 files changed, 251 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Sun Sep 02 13:46:18 2007 +0200
@@ -0,0 +1,11 @@
+syntax: glob
+*.aux
+*.log
+*.nav
+*.out
+*.snm
+*.toc
+push.sh
+*.swp
+*~
+*.pdf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Sun Sep 02 13:46:18 2007 +0200
@@ -0,0 +1,36 @@
+# Makefile for latex docs
+
+SRC = Reisebericht-Ukraine07.tex
+OBJ = ${SRC:.tex=.pdf}
+
+
+all:
+	pdflatex Reisebericht-Ukraine07.tex
+
+#merge:
+#	rm -f all.pdf
+#	pdftk A=00_vorstellung.pdf cat A1-2 output 00_vorstellung-mod.pdf && rm 00_vorstellung.pdf
+#	pdftk *.pdf cat output all.pdf
+
+
+#all: ${OBJ}
+
+#.tex.pdf:
+#	@echo pdflatex $<
+#	@pdflatex $<
+
+${OBJ}: ${SRC}
+	@echo pdflatex $@
+	@pdflatex ${SRC}
+	@pdflatex ${SRC}
+
+xpdf: ${OBJ}
+	@echo xpdf $@
+	@xpdf -fullscreen -z page ${OBJ}
+	#@rm ${OBJ}
+
+clean:
+	echo 'cleaning ...'
+	rm *.{aux,lof,log,lot,nav,out,snm,toc} 2> /dev/null
+
+.PHONY: all xpdf clean
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Reisebericht-Ukraine07.tex	Sun Sep 02 13:46:18 2007 +0200
@@ -0,0 +1,204 @@
+% @file
+% @brief   Reisebericht Ukraine07
+% @author  markus schnalke <meillo@marmaro.de>
+% @since   2007-09-02
+
+
+\documentclass[a4paper]{scrartcl}
+
+  \usepackage[utf8]{inputenc}
+  \usepackage{ngerman}
+  \usepackage{graphicx}
+  \usepackage{listings}
+  \usepackage[automark]{scrpage2}
+
+  \setkomafont{sectioning}{\normalfont\normalcolor\bfseries}
+  \setlength{\parindent}{0em}
+  \setlength{\parskip}{1.0ex plus 1.0ex minus 0.5ex}
+  \pagestyle{scrheadings}
+  \setcounter{tocdepth}{3}
+
+\begin{document}
+
+
+
+
+
+%%%%  Titlepage  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{titlepage}
+  \title{Reisebericht Ukraine 2007}
+  \author{Markus Schnalke}
+  \date{2007-09-02}
+
+
+  \thispagestyle{empty}
+
+
+  \begin{flushright}
+
+  \rule[8cm]{0cm}{0cm}
+  {\Huge Reisebericht\\ \textbf{Ukraine '07}}
+
+  \rule[2cm]{0cm}{0cm}
+  \textsc{Markus Schnalke}
+
+  \end{flushright}
+
+
+
+  \rule[7cm]{0cm}{0cm}
+
+  \textit{Dies ist mein Reisetagebuch meines Sommerurlaubs im Jahr 2007.}
+
+  {\tiny Dieses Dokument darf gerne zitiert, kopiert und weitergegeben werden. Ich bitte nur darum meinen Namen und einen Verweis auf meine Website (http://marmaro.de) zu erwähnen --- danke! }
+
+
+\end{titlepage}
+
+
+
+
+\tableofcontents
+
+
+
+%%%%  Tagebuch  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\newpage
+
+
+
+
+\section{So, 2007-08-12}
+
+
+
+
+
+\section{Mo, 2007-08-13}
+
+
+
+
+
+\section{Di, 2007-08-14}
+
+
+
+
+
+\section{Mi, 2007-08-15}
+
+
+
+
+
+\section{Do, 2007-08-16}
+
+
+
+
+
+\section{Fr, 2007-08-17}
+
+
+
+
+
+\section{Sa, 2007-08-18}
+
+
+
+
+
+\section{So, 2007-08-19}
+
+
+
+
+
+\section{Mo, 2007-08-20}
+
+
+
+
+
+\section{Di, 2007-08-21}
+
+
+
+
+
+\section{Mi, 2007-08-22}
+
+
+
+
+
+\section{Do, 2007-08-23}
+
+
+
+
+
+\section{Fr, 2007-08-24}
+
+
+
+
+
+\section{Sa, 2007-08-25}
+
+
+
+
+
+\section{So, 2007-08-26}
+
+
+
+
+
+\section{Mo, 2007-08-27}
+
+
+
+
+
+\section{Di, 2007-08-28}
+
+
+
+
+
+\section{Mi, 2007-08-29}
+
+
+
+
+
+\section{Do, 2007-08-30}
+
+
+
+
+
+\section{Fr, 2007-08-31}
+
+
+
+
+
+  \begin{flushright}
+    markus schnalke
+  \end{flushright}
+
+
+
+
+
+
+
+
+
+
+\end{document}