Tabelas em LaTeX de forma rápida | Como ajustar tabelas ao texto no LaTeX

Описание к видео Tabelas em LaTeX de forma rápida | Como ajustar tabelas ao texto no LaTeX

Nesse vídeo mostro um pouco da ferramenta LaTex Tables Generator para otimizar a criação de tabelas em LaTex e também exemplifico uma das formas de ajustar tabelas à largura do texto, bem como verificar se elas se encontram dentro das margens do documento.

Ferramenta LaTex Tables Generator: tablesgenerator.com

Segue o código do Overleaf:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[brazil]{babel}
\usepackage{lipsum}
\usepackage{adjustbox}
%\usepackage{showframe}

\begin{document}

\lipsum[1]. Conforme podemos ver na tabela \ref{tab:LTG}.

\begin{table}[!ht]
\centering
\caption{Tabela em LaTex - LTG.}
\resizebox{\linewidth}{!}{
\begin{tabular}{ccc}
\hline
\textbf{Periódico} & \textbf{Fator de Impacto} & \textbf{Artigos publicados (2020)} \\ \hline
A & 27 & 1000 \\
B & 15 & 600 \\
C & 14 & 450 \\
D & 12 & 500 \\
E & 11 & 100 \\
F & 9 & 200 \\
G & 8 & 250 \\
H & 6 & 300 \\
I & 7 & 700 \\
J & 5 & 440 \\ \hline
\end{tabular}}\\
\label{tab:LTG}
Fonte: construção do autor.
\end{table}

\lipsum[2]

\end{document}

Комментарии

Информация по комментариям в разработке