summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/datatool/samples/sample-datatooltk.tex
blob: dec5f1582bb99e2f2553625d59002e368f6c2744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
% Sample file used with datatooltk
\documentclass{article}

\usepackage{datatool}

% load database that was either previously saved using
% \DTLsaverawdb{mydata}{data-raw.dbtex}
% or created and saved using datatooltk

\input{data-raw.dbtex}

\begin{document}

\DTLdisplaydb{mydata}

% Save to a new file to test \DTLsaverawdb:

\DTLsaverawdb{mydata}{data-raw-saved.dbtex}
\end{document}