Graphics, Figures & TablesUser form + tabularx = interactive PDF?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
comandos
Posts: 15
Joined: Sat Dec 15, 2018 3:46 pm

User form + tabularx = interactive PDF?

Post by comandos »

Greetings,
Are tabularx and form package compatible?
I am trying to create a TextField that the user fills when he/she receives the PDF, but I’m having problems aligning them :/

My current table looks like this (without user input)

Code: Select all

\documentclass{article}

\usepackage[slovene]{babel}
\usepackage[utf8]{inputenc}
\usepackage[useregional=numeric]{datetime2}
\usepackage[left=1in, right=0.5in, bottom=1.0in, top=0.65in]{geometry}
\setlength\parindent{0pt}
\pagenumbering{gobble}
\usepackage{tabularx}
\usepackage{hyperref}

\begin{document}
	
	\textbf{user input}
	\bigskip
	\bigskip
	
\begingroup
\setlength{\tabcolsep}{10pt} % Default value: 6pt
\renewcommand{\arraystretch}{1.5}

\begin{Form}
\begin{tabularx}{\textwidth}{|l|X|}
	
	\hline
Ime: 					&  \\ \hline
Priimek: 				&   \\ \hline
Geslo za neki lepega:	&   \\ \hline
Rojstni datum:			&   \\ \hline
Državljanstvo:			&   \\ \hline


\end{tabularx}
\end{Form}	
\endgroup
\end{document}
And my pathetic attempts on aligning the text fields

Code: Select all

\begin{center}
\begin{Form}[]
\begin{tabular}{l}
	\TextField{Name} \\\\
	\TextField{Stopnja izobrazbe:} \\\\
\end{tabular}
\end{Form}
\end{center}
What I would like to achieve is a fillable PDF that looks like the first table (with tabularx) so the user input field is expanded to cover the full row and that the tabularx table is visible (textfeild has no red edge).

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply