-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathltx-talk-code.tex
More file actions
109 lines (83 loc) · 2.43 KB
/
ltx-talk-code.tex
File metadata and controls
109 lines (83 loc) · 2.43 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
\iffalse meta-comment
File: ltx-talk-code.tex Copyright (C) 2025,2026 Joseph Wright
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
license or (at your option) any later version. The latest version
of this license is in the file
https://www.latex-project.org/lppl.txt
This file is part of the "ltx-talk bundle" (The Work in LPPL)
and all files in that bundle must be distributed together.
The released version of this bundle is available from CTAN.
-----------------------------------------------------------------------
The development version of the bundle can be found at
https://github.com/josephwright/ltx-talk
for those people who are interested.
-----------------------------------------------------------------------
\fi
\documentclass{l3doc}
% As we are dealing with a class, this has to be done manually
\def\filedate{2026-04-14}
\def\fileversion{v0.4.11}
% Commands for this document
\ExplSyntaxOn
\makeatletter
\NewDocumentCommand \acro { m }
{
\textsc
{
\exp_args:NV \tl_if_head_eq_charcode:nNTF \f@series { m }
{ \text_lowercase:n }
{ \use:n }
{#1}
}
}
\makeatother
\ExplSyntaxOff
\NewDocumentCommand\email{m}{\href{mailto:#1}{\nolinkurl{#1}}}
\NewDocumentCommand\foreign{m}{\textit{#1}}
% Standard settings
\EnableDocumentation
\EnableImplementation
\begin{document}
\title{%
\pkg{ltx-talk} -- A class for typesetting presentations%
\thanks{This file describes \fileversion,
last revised \filedate.}%
}
\author{%
Joseph Wright%
\thanks{%
E-mail: \email{joseph@texdev.net}%
}%
}
\date{Released \filedate}
\pagenumbering{roman}
\maketitle
\tableofcontents
\clearpage
\pagenumbering{arabic}
% Make the separate source files into a single whole, format-wise
\makeatletter
\RenewDocumentCommand\maketitle{}{%
\clearpage
\part{\@title}%
}
\makeatother
\renewcommand*\partname{Part}
\DeclareExpandableDocumentCommand\thanks{m}{}
\let\DelayPrintIndex\PrintIndex
\RenewDocumentCommand\PrintIndex{}{}
% Load the source files in order
\DocInput{ltx-talk.dtx}
\DocInput{ltx-talk-color.dtx}
\DocInput{ltx-talk-decode.dtx}
\DocInput{ltx-talk-frame.dtx}
\DocInput{ltx-talk-frame-structure.dtx}
\DocInput{ltx-talk-mode.dtx}
\DocInput{ltx-talk-overlay.dtx}
\DocInput{ltx-talk-required.dtx}
\DocInput{ltx-talk-structure.dtx}
\DocInput{ltx-talk-title.dtx}
\clearpage
\DelayPrintIndex
\end{document}