wip praktika

This commit is contained in:
Motiejus Jakštys 2020-06-02 10:54:32 +03:00
parent f758b1053e
commit 01255303be
2 changed files with 84 additions and 0 deletions

10
III/Praktika/Makefile Normal file
View File

@ -0,0 +1,10 @@
mj-praktika.pdf: mj-praktika.tex version.tex
latexmk -g -pdf $<
REF = $(shell git describe --tags --dirty)
GIT_DIR = $(shell git rev-parse --show-toplevel)/.git
version.tex: $(shell git ls-files .) $(GIT_DIR)
( \
date '+\gdef\GeneratedAt{%F %T %Z}%'; \
printf '\gdef\VCDescribe{%s}%%\n' $(REF); \
) > $@

View File

@ -0,0 +1,74 @@
\documentclass[a4paper]{article}
\iftrue
\usepackage[L7x,T1]{fontenc}
\usepackage[lithuanian]{babel}
\else
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\fi
\usepackage[utf8]{inputenc}
\usepackage{a4wide}
\usepackage{csquotes}
\usepackage[maxbibnames=99,style=authoryear]{biblatex}
\usepackage[pdfusetitle]{hyperref}
\usepackage{enumitem}
\usepackage[toc,page,title]{appendix}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{gensymb}
\usepackage{varwidth}
\usepackage{tabularx}
\usepackage{float}
\usepackage{tikz}
\usetikzlibrary{er,positioning}
\input{version}
\newcommand{\DP}{Douglas \& Peucker}
\newcommand{\VW}{Visvalingam--Whyatt}
\newcommand{\WM}{Wang--M{\"u}ller}
\title{
Cartografic Generalization of Lines using free software \\
(example of rivers) \\ \vspace{4mm}
}
\author{Motiejus Jakštys}
\date{
\vspace{10mm}
Version: \VCDescribe \\ \vspace{4mm}
Generated At: \GeneratedAt
}
\begin{document}
\maketitle
\begin{abstract}
\label{sec:abstract}
\end{abstract}
\newpage
\tableofcontents
\listoffigures
\newpage
\section{Introduction}
\label{sec:introduction}
\section{Conclusions}
\label{sec:conclusions}
\printbibliography
\begin{appendices}
\section{Code listings}
\end{appendices}
\end{document}