From 42d7ba22d3b3b2eeddb4d31a4796afba02713592 Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Fri, 27 Dec 2013 15:15:41 +0100 Subject: [PATCH] added dictionary --- documents/german-english-mathematics/Makefile | 7 +++++ .../german-english-mathematics/Readme.md | 3 +++ .../german-english-mathematics.tex | 27 +++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 documents/german-english-mathematics/Makefile create mode 100644 documents/german-english-mathematics/Readme.md create mode 100644 documents/german-english-mathematics/german-english-mathematics.tex diff --git a/documents/german-english-mathematics/Makefile b/documents/german-english-mathematics/Makefile new file mode 100644 index 0000000..3d9e49c --- /dev/null +++ b/documents/german-english-mathematics/Makefile @@ -0,0 +1,7 @@ +SOURCE = german-english-mathematics +make: + pdflatex $(SOURCE).tex -output-format=pdf + make clean + +clean: + rm -rf $(TARGET) *.class *.html *.log *.aux *.out diff --git a/documents/german-english-mathematics/Readme.md b/documents/german-english-mathematics/Readme.md new file mode 100644 index 0000000..88f958d --- /dev/null +++ b/documents/german-english-mathematics/Readme.md @@ -0,0 +1,3 @@ +I had the idea to create a math dictionary for German <-> English. + +More about this on StackExchange: [Is there an environment / document class for dictionaries?](http://tex.stackexchange.com/q/149754/5645) diff --git a/documents/german-english-mathematics/german-english-mathematics.tex b/documents/german-english-mathematics/german-english-mathematics.tex new file mode 100644 index 0000000..8c40e1f --- /dev/null +++ b/documents/german-english-mathematics/german-english-mathematics.tex @@ -0,0 +1,27 @@ +\documentclass[a4paper,8pt,twocolumn]{extbook} +\usepackage{amssymb, amsmath} % needed for math +\usepackage[utf8]{inputenc} % this is needed for umlauts +\usepackage[ngerman]{babel} % this is needed for umlauts +\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf +\usepackage[margin=2.5cm]{geometry} %layout +\usepackage{hyperref} % links im text +\usepackage{color} +\usepackage{framed} +\usepackage{enumerate} % for advanced numbering of lists +\clubpenalty = 10000 % Schusterjungen verhindern +\widowpenalty = 10000 % Hurenkinder verhindern + +\hypersetup{ + pdfauthor = {Martin Thoma}, + pdfkeywords = {German-English mathematics dictionary}, + pdftitle = {German-English mathematics dictionary} +} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Begin document % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{document} +\section{A} +\underline{abgeschlossen} closed + +\end{document}