Estou usando os pacotes tabularx
e makecell
para a estética das minhas mesas. Usei o X
tipo de coluna para colunas com textos longos e \makecell{...}
para quebras de linha nas células. Mas quando tento usar os dois juntos, o efeito das X
colunas não funciona.
No MWE eu gostaria que o texto longo da 3ª linha da 1ª linha e da última coluna fosse quebrado automaticamente. Qualquer ajuda?
\documentclass{article}
\usepackage{tabularx}
\usepackage{blindtext}
\usepackage{booktabs}
\usepackage{makecell}
\begin{document}
\begin{table}[h]
\footnotesize
\centering
\caption{Table's caption}%
\label{tab:Example}%
\begin{tabularx}{\linewidth}{lcX}%
\toprule
\textbf{Head 1} & \textbf{Head 2} & \textbf{Head 3} \\
\midrule
Row 1 & 1 & \makecell[lt]{Line 1\\Line 2\\\blindtext} \\
Row 2 & 2 & \makecell[lt]{Line 1\\Line 2\\Line 3} \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}
Responder1
Você também poderia usar \makecell[Xt]{...}
(embora, como disse @DavidCarlisle, não faça sentido):
\documentclass{article}
\usepackage{tabularx}
\usepackage{blindtext}
\usepackage{booktabs}
\usepackage{makecell}
\begin{document}
\begin{table}
\footnotesize
\centering
\caption{Table's caption}%
\label{tab:Example}%
\begin{tabularx}{\linewidth}{lcX}%
\toprule
\textbf{Head 1} & \textbf{Head 2} & \textbf{Head 3} \\
\midrule
Row 1 & 1 & \makecell[Xt]{Line 1\\Line 2\\\blindtext} \\
Row 2 & 2 & \makecell[lt]{Line 1\\Line 2\\Line 3} \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}
Responder2
\documentclass{article}
\usepackage{tabularx}
\usepackage{blindtext}
\usepackage{booktabs}
\usepackage{makecell}
\begin{document}
\begin{table}[htp] % not [h]
\footnotesize
\centering
\caption{Table's caption}%
\label{tab:Example}%
\begin{tabularx}{\linewidth}{lcX}%
\toprule
\textbf{Head 1} & \textbf{Head 2} & \textbf{Head 3} \\
\midrule
Row 1 & 1 &
Line 1
Line 2
\blindtext
\\
Row 2 & 2 &
Line 1
Line 2
Line 3
\\
\bottomrule
\end{tabularx}
\end{table}
\end{document}
Responder3
Como diz @DavidCarlisle, eu costumava \newline
resolver
\documentclass{article}
\usepackage{tabularx}
\usepackage{blindtext}
\usepackage{booktabs}
\usepackage{makecell}
\begin{document}
\begin{table}[h]
\footnotesize
\centering
\caption{Table's caption}%
\label{tab:Example}%
\begin{tabularx}{\linewidth}{lcX}%
\toprule
\textbf{Head 1} & \textbf{Head 2} & \textbf{Head 3} \\
\midrule
Row 1 & 1 & Line 1\newline Line 2\newline\blindtext\\
Row 2 & 2 & \makecell[lt]{Line 1\\Line 2\\Line 3} \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}