blob: 31be930554c70a8ecd0332376b0d2c9dd951cdb9 (
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
|
%%
%% This is file `hyperref.drv',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% hyperref.dtx (with options: `driver')
%%
%% File: hyperref.dtx Copyright 1995-2001 Sebastian Rahtz,
%% with portions written by David Carlisle and Heiko Oberdiek,
%% 2001-2009 Heiko Oberdiek.
%%
%% This file is part of the `Hyperref Bundle'.
%% -------------------------------------------
%%
%% It may be distributed under the conditions of the LaTeX Project Public
%% License, either version 1.2 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.2 or later is part of all distributions of LaTeX
%% version 1999/12/01 or later.
%%
%% The list of all files belonging to the `Hyperref Bundle' is
%% given in the file `manifest.txt'.
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{hyperref.drv}
[2009/05/23 v6.78s
Hyperref documentation driver file]
\documentclass{ltxdoc}
\usepackage{array,times}
\def\ttdefault{cmtt}
\usepackage[%
colorlinks,%
hyperindex=false,% done by hypdoc
pdfusetitle,%
pdfpagelabels%
]{hyperref}
\usepackage[numbered]{hypdoc}
\usepackage{bmhydoc}
\pdfstringdefDisableCommands{\let\\\textbackslash}%
\EnableCrossrefs
\CodelineIndex
\begin{document}
%
% title
%
\GetFileInfo{hyperref.sty}%
\title{Hypertext marks in \LaTeX}%
\author{Sebastian Rahtz\\%
Email: \texttt{sebastian.rahtz@oucs.ox.ac.uk}\\[1.5ex]%
Heiko Oberdiek\\%
Email: \texttt{oberdiek@uni-freiburg.de}}%
\date{processed \today}%
\maketitle
%
% overview
%
\makeatletter
\@ifundefined{HyperrefOverview}{}{%
\HyperrefOverview\relax
\newpage
}%
%
% table of contents
%
\section{\contentsname}%
\makeatletter
\@starttoc{toc}%
\newpage
%
% source code documentation
%
\let\Email\texttt
\DocInput{hyperref.dtx}%
%
% index
%
\PrintIndex
\end{document}
\endinput
%%
%% End of file `hyperref.drv'.
|