blob: 23ea4a98245559a40f06c92950dc3f31b76dfa91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
% 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}
% Now try the protected version:
\DTLprotectedsaverawdb{mydata}{data-raw-psaved.dbtex}
\end{document}
|