1
2
3
4
5
6
7
8
9
10
11
12
|
\documentclass{article}
\usepackage{hyperref,hyperbar}
\begin{document}
\begin{Form}
\TextField[name=first,width=3cm,charsize=12pt]{Prename}\\
\TextField[name=last,width=3cm,charsize=12pt]{Name}\\
\BarcodeField[width=10cm,height=1cm,tsv={first,last}]{BarcodeField}\\
\BarcodeField[datamatrix,symwidth=10,width=3cm,height=3cm,tsv={first,last}]{BarcodeField2}\\
\BarcodeField[qr,width=3cm,height=3cm,tsv={first,last}]{BarcodeField3}
\end{Form}
\end{document}
|