Author: dweiss
Date: Thu Nov 30 15:47:42 2006
New Revision: 35
Added:
trunk/howto/pdf/
trunk/howto/pdf/pdf-forms.pdf (contents, props changed)
trunk/howto/pdf/pdf-forms.tex
Log:
PDF tricks: adding forms to a document.
Added: trunk/howto/pdf/pdf-forms.pdf
==============================================================================
Binary file. No diff available.
Added: trunk/howto/pdf/pdf-forms.tex
==============================================================================
--- (empty file)
+++ trunk/howto/pdf/pdf-forms.tex Thu Nov 30 15:47:42 2006
@@ -0,0 +1,17 @@
+
+\documentclass{article}
+
+\usepackage{hyperref}
+
+\begin{document}
+
+Not many people know that \LaTeX{} lets you define elegant PDF forms.
+Compile this program with \texttt{pdflatex} and see for yourself!
+
+\begin{Form}[]
+\TextField[width=8cm,borderwidth=0]{Name:} \\
+\TextField[width=8cm,borderwidth=0]{Surname:} \\
+\CheckBox[borderwidth=1]{Likes chocolate:} \\
+\end{Form}
+
+\end{document}