blob: 115d4f24d8d10c862d9d7dbf98f662540ffa6e3b (
plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
% preamble for dtx documentations of the luatexbase package/bundle.
% packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{lmodern}
\usepackage{booktabs}
\usepackage{enumitem}
\usepackage{xspace}
\usepackage[a4paper]{geometry}
\usepackage[english]{babel}
\usepackage[colorlinks]{hyperref}
\usepackage{bookmark}
% logos
\makeatletter
\newcommand \eTeX {$\m@th\varepsilon$-\TeX}
\newcommand \LuaTeX {Lua\TeX}
\renewcommand \PlainTeX {Plain\thinspace\TeX}
\newcommand \TeXe {\TeX\thinspace82}
\newcommand \TeXLive {\TeX\thinspace Live}
\makeatother
% logos for the lazy me (mpg)
\newcommand \tex {\TeX\xspace}
\newcommand \latex {\LaTeX\xspace}
\newcommand \etex {\eTeX\xspace}
\newcommand \luatex {\LuaTeX\xspace}
\newcommand \texe {\TeXe\xspace}
\newcommand \texlive {\TeXLive\xspace}
\newcommand \plaintex {\PlainTeX\xspace}
% special elements of text
\newcommand*\email [1] {\href{mailto:#1}{#1}}
\newcommand \file {\nolinkurl}
\newcommand \pk {\textsf}
\newcommand \cmdname {\texttt}
% compact lists
\setitemize{itemsep=0pt, parsep=0pt}
\setdescription{itemsep=0pt, parsep=0pt}
% no so nice, but anyway...
\newenvironment{qcode}{%
\quote \ttfamily \catcode`\_=12\relax \obeylines
}{%
\endquote
}
% for hyperref
\pdfstringdefDisableCommands{%
\def\cs#1{\@backslashchar #1}%
}
% constant metadata
\newif\ifluatexbase
\author{%
Heiko Oberdiek (primary author of \pk{luatex}) \\
\'Elie Roux (primary author of \pk{luatextra}) \\
Manuel P\'egouri\'e-Gonnard (current developper)\thanks{%
See ``History''
\ifluatexbase\else in \href{luatexbase.pdf}{\file{luatexbase.pdf}} \fi
for details.}%
\\[1ex]
\url{https://github.com/mpg/luatexbase} \\
\email{lualatex-dev@tug.org}%
}
\hypersetup{%
pdfsubject = {Basic resource management for LuaTeX},
pdfauthor = {Manuel P\'egouri\'e-Gonnard, \'Elie Roux, Heiko Oberdiek},
}
% other metadata
\newcommand*\pkdate [2] {%
\title{The \pk{#1} package}
\date{#2}
\hypersetup{pdftitle={The #1 package}}
}
% ltxdoc setup
\DisableCrossrefs
|