
Tengo un problema al ajustar el texto en la celda de la tabla cuando uso tabular
. La frase en la celda va más allá del ancho del texto. Intenté aplicar multirow
el comando pero no cambia nada. ¿Por qué? Bueno, recibo un error cada vez que uso multirow
que falta una llave (}). Lo he mirado una y otra vez y no puedo verlo. Tal vez alguien podría simplemente probarlo y ofrecer líneas libres de error.
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{multirow}
\begin{table}[t]
\centering
\begin{tabular}{lll}
\hline
\textbf{Name \& Author(s)} & \textbf{Label} & \textbf{Definition} \\ \hline
Poggi 2001 & Nod & "a down-up movement of the head" \\
Allwood 2003 & Nod & "a forward movement of the head going up and down, which can be multiple"\\
Este es el resultado que obtengo:
Respuesta1
Parece una buena aplicación para el tabularx
paquete.
No lo utilice "
para comillas.
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{tabularx}
\usepackage{booktabs}
\begin{document}
\begin{table}[t]
\centering
\begin{tabularx}{\textwidth}{@{}llX@{}}
\toprule
\textbf{Name \& Author(s)} & \textbf{Label} & \textbf{Definition}\\
\midrule
Poggi 2001 & Nod & ``a down-up movement of the head''\\
Allwood 2003 & Nod & ``a forward movement of the head going up and down, which can be multiple''\\
\bottomrule
\end{tabularx}
\end{table}
\end{document}