-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.tex
53 lines (45 loc) · 1.02 KB
/
layout.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
% Code taken from Tobi on LaTeX Stack Exchange, licensed under cc by-sa 3.0
% http://tex.stackexchange.com/a/30396
\documentclass[%
a5paper,
fontsize=6pt,
]{scrbook}
\usepackage[T1]{tipa}
\usepackage[utf8]{inputenc}
% narrow font
\usepackage{times}
\usepackage[scaled=0.85]{helvet}
% layout
\usepackage{geometry}
\geometry{%
margin=1cm,
includehead,
includefoot
}
\usepackage{multicol}
\setlength{\parindent}{0pt}
\setlength{\columnseprule}{0.4pt}
\usepackage{scrpage2}
\usepackage{graphicx}
\clearscrheadings
\pagestyle{scrheadings}
\setheadsepline{0.8pt}
\setfootsepline{0.8pt}
%\lehead{word}% first word on page
%\rohead{word}% last word on page
\ofoot{\pagemark}
\setkomafont{pagehead}{\sffamily\bfseries}
\setkomafont{pagination}{\sffamily}
% entry command
% \dict{<word>}{<gender>}{<text>}
\newcommand{\dict}[3]{%
\par\vspace{0.25\baselineskip}
\textbf{\textsf{#1}} \textit{#2} \textipa{#3}
}
% testing
\usepackage{pgffor}
\begin{document}
\begin{multicols}{3}
%REPLACE_ME%
\end{multicols}
\end{document}