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
110
111
112
113
114
115
116
117
|
%%
%% This is file `ragged2e.drv',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% ragged2e.dtx (with options: `driver')
%%
%% Copyright 1996..2019 Martin Schroeder.
%%
%% This file is part of the Ragged2e package
%% -----------------------------------------
%%
%% To produce the documentation in the way you like you are allowed
%% to change this driver file.
%%
\NeedsTeXFormat{LaTeX2e}[2017/03/29]
\ProvidesFile{ragged2e.drv}
[2019/03/26 v1.09 Driver for ragged2e Package (MS)]
\documentclass[a4paper]{ltxdoc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{microtype}
\usepackage{url} % in latex/contrib/other/misc
\usepackage{array}
\usepackage{tabularx}
\usepackage{gitinfo2}
\usepackage{hypdoc}
\usepackage{geometry}
\IfFileExists{booktabs.sty}{%
\usepackage{booktabs}%
}{%
\PackageWarning{ragged2e}%
{booktabs.sty is missing.\MessageBreak
I'm emulating the needed commands, but you should\MessageBreak
install it for better results}%
\let\toprule\hline
\let\midrule\hline
\let\bottomrule\hline
}
\IfFileExists{footmisc.sty}{%
\usepackage[document]{ragged2e}[2003/01/26]
}{%
\PackageWarning{ragged2e}%
{footmisc.sty is missing.\MessageBreak
You should install it for better results}%
\usepackage[raggedrightboxes]{ragged2e}[2003/01/26]
}
\setlength{\RaggedRightRightskip}{0pt plus 4em}%
\GetFileInfo{ragged2e.sty}
\EnableCrossrefs
\RecordChanges % Gather update information
%%\DisableCrossrefs% Say \DisableCrossrefs if index is ready
\CodelineIndex % Index code by line number
%%\OldMakeIndex % use if your MakeIndex is pre-v2.9
\setcounter{IndexColumns}{2}
\makeatletter
\renewenvironment{theglossary}{%
\glossary@prologue
\setlength\emergencystretch{5em}
\GlossaryParms \let\item\@idxitem \ignorespaces}{}
\makeatother
\setlength{\IndexMin}{40ex}
\setlength{\columnseprule}{.4pt}
\addtolength{\oddsidemargin}{3cm}
\addtolength{\textwidth}{-3cm}
\begin{document}
\DocInput{ragged2e.dtx}
\PrintIndex\PrintChanges
% Make sure that the index is not printed twice
% (ltxdoc.cfg might have a second \PrintIndex command)
\let\PrintChanges\relax
\let\PrintIndex\relax
\end{document}
%% Copyright 1996..2019 by Martin Schr\"oder.
%% \CharacterTable
%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
%% Digits \0\1\2\3\4\5\6\7\8\9
%% Exclamation \! Double quote \" Hash (number) \#
%% Dollar \$ Percent \% Ampersand \&
%% Acute accent \' Left paren \( Right paren \)
%% Asterisk \* Plus \+ Comma \,
%% Minus \- Point \. Solidus \/
%% Colon \: Semicolon \; Less than \<
%% Equals \= Greater than \> Question mark \?
%% Commercial at \@ Left bracket \[ Backslash \\
%% Right bracket \] Circumflex \^ Underscore \_
%% Grave accent \` Left brace \{ Vertical bar \|
%% Right brace \} Tilde \~}
%%
%% \iffalse meta-comment
%% ===================================================================
%% @LaTeX-style-file{
%% author = {Martin Schr\"oder},
%% version = "2.2",
%% date = "26 Mar 2019",
%% filename = "ragged2e.sty",
%% address = {Martin Schr\"oder
%% Unterstra\"se 31
%% 47051 Duisburg
%% Germany}
%% email = "martin@oneiros.de",
%% docstring = "LaTeX package which defines new commands
%% \Centering, \RaggedLeft, \RaggedRight and
%% \justifying and new environments Center,
%% FlushLeft, FlushRight and justify, which
%% set ragged text and are easily configurable
%% to allow hyphenation.
%% Uses the everysel package.
%% "
%% }
%% ===================================================================
%% \fi
\endinput
%%
%% End of file `ragged2e.drv'.
|