Minha tabela LaTeX é muito larga e não cabe corretamente. Sou totalmente iniciante usando o Overleaf para editar meu relatório de projeto acadêmico em LaTeX. Minha tabela que usei tablegenerator.com
para gerar e copiar e colar é muito larga e não sei como consertar.
Aqui está o código:
\begin{longtable}{|l|l|l|l|l|}
\caption{Tabular Summary of Literature Survey}
\label{tab:my-table}\\
\hline
S.No &
Paper Research Name \& Year &
Paper Publishing Details &
Summary &
Scope of Improvement \\ \hline
\endfirsthead
%
\endhead
%
1. &\begin{tabular}[c]{@{}l@{}}Stock Closing Price Prediction using \\ \\ Machine Learning Techniques\end{tabular} &
\begin{tabular}[c]{@{}l@{}}Published by: \\ Mehar Vij, \\ Deeksha Chandola,\\ Vinay Anand\\ Tikkiwal, \\ Arun Kumar\end{tabular} &
\begin{tabular}[c]{@{}l@{}}I. Due to the volatility\\ and non-linearity of \\ financial stock markets, \\ it is very difficult to \\ accurately predict stock \\ market returns.\\
\end{tabular} \\ \hline
\end{longtable}
Tenho mais 7 linhas como esta. O que eu faço? Já fiz todo o resto e estou preso nisso nas últimas 6 horas. Alguém pode reescrever esse código para que minha tabela não fique muito larga?
Adicionei uma imagem de como fica e como quero que fique:
Responder1
Se você removesse todos esses ambientes tabulares interferentes de sua tabela, você poderia substituir suas l
colunas por colunas de largura fixa, por exemplo p{3cm}
(você terá que ajustar as larguras para que correspondam à geometria da página que você possui)
\documentclass{article}
\usepackage{geometry}
\usepackage{longtable}
\usepackage{array}
\begin{document}
\begin{longtable}{|p{0.92cm}|>{\raggedright}p{3cm}|>{\raggedright}p{3cm}|>{\raggedright}p{3cm}|>{\raggedright\arraybackslash}p{3cm}|}
\caption{Tabular Summary of Literature Survey}
\label{tab:my-table}\\
\hline
S.No &
Paper Research Name \& Year &
Paper Publishing Details &
Summary &
Scope of Improvement \\ \hline
\endfirsthead
%
\endhead
%
1. &Stock Closing Price Prediction using Machine Learning Techniques &
Published by: Mehar Vij, Deeksha Chandola, Vinay Anand Tikkiwal, Arun Kumar &
I. Due to the volatility and non-linearity of financial stock markets, it is very difficult to accurately predict stock market returns. & \\ \hline
\end{longtable}
\end{document}
ou você pode mudar para o tabularray
pacote:
\documentclass{article}
\usepackage{geometry}
\usepackage{tabularray}
\begin{document}
\begin{longtblr}[
caption={Tabular Summary of Literature Survey},
label={tab:my-table}
]{
colspec={lX[l]X[l]X[l]X[l]},
vlines,hlines
}
S.No &
Paper Research Name \& Year &
Paper Publishing Details &
Summary &
Scope of Improvement \\
1. &Stock Closing Price Prediction using Machine Learning Techniques &
Published by: Mehar Vij, Deeksha Chandola, Vinay Anand Tikkiwal, Arun Kumar &
I. Due to the volatility and non-linearity of financial stock markets, it is very difficult to accurately predict stock market returns. & \\
\end{longtblr}
\end{document}