blob: 1468c486874533e5e4feed6c7a080e9f46d0ef99 (
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
|
% main document
% separated from dtx, sothat there is no unrelated things in the dtx itselft, but only code and comment for package
\documentclass{ltxdoc}
\usepackage{fontspec}
\usepackage{luaotfload}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{float}
\usepackage{mathtools}
\usepackage{sunpath}
\usetikzlibrary{hobby} % this library let one connect points to curve.
\newcommand{\TikZ}{Ti\textit{k}Z}
\EnableCrossrefs
\CodelineIndex
\RecordChanges
\GetFileInfo{\jobname.sty}
%
\title{
\pkg{sunpath} -- Draw Sun Path%
\thanks{This file describes \fileversion, %
last revised \filedate.}\\[1ex]%
\normalsize{Reference}%
}%
%
\author{%
Hồng-Phúc Bùi%
\thanks{%
E-mail:
\href{mailto:Hồng-Phúc Bùi}
{hong-phuc.bui (at) htwsaar dot de}%
}%
}
%
\date{Released \filedate}
\begin{document}
%
\parindent0pt
%
\maketitle
\tableofcontents
\input{sunpath.docpart.tex}
\vfill\newpage
% get the document about implementation inside main document
\DocInput{\jobname.dtx}
\PrintChanges
\PrintIndex
\end{document}
|