2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00

added dictionary

This commit is contained in:
Martin Thoma 2013-12-27 15:15:41 +01:00
parent 8eecb411f0
commit 42d7ba22d3
3 changed files with 37 additions and 0 deletions

View file

@ -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

View file

@ -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)

View file

@ -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}