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
|
%% example2-nl.tex
%% Copyright 2024 E. Nijenhuis
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status ‘maintained’.
%
% The Current Maintainer of this work is E. Nijenhuis.
%
% This work consists of the files regulatory.tex,
% regulatory-preamble.tex, regulatory-nl.tex, regulatory-en.tex,
% example1.bib, example2.bib,
% example1-nl.tex, example2-nl.tex,
% example1-en.tex, example2-en.tex,
% md-example.tex, example.md,
% regulatory.sty
\documentclass[12pt,dutch]{article}
\usepackage{babel}
\usepackage{regulatory}
\usepackage{lipsum}
\newcounter{lip}
\setcounter{lip}{1}
\newcommand\textfill{\lipsum[\arabic{lip}]\stepcounter{lip}}
\newcommand\translation[2]{#2}
\newcommand\definitionlabel[1]{~(zie #1)}
\masterdocument[ex1-]{example1-nl}{%
defs=example1,%
author=E. Nijenhuis,%
subject= Voorbeeld Één,%
description = Het éérste voorbeeld document,
footnote label = Bijlage:~,
ref label=van Voorbeeld Één,
def label=\definitionlabel
}
\loadglsdefs{example2}
\begin{document}
\input{example2}
\end{document}
|