Mi tabla LaTeX es demasiado ancha y no muestra el contenido completo

Mi tabla LaTeX es demasiado ancha y no muestra el contenido completo

Mi mesa de LaTeX es demasiado ancha y no encaja correctamente. Soy un principiante total y uso Overleaf para editar mi informe de proyecto académico en LaTeX. Mi tabla que solía tablegenerator.comgenerar y copiar y pegar es demasiado ancha y no sé cómo solucionarlo.

Aquí está el 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}

Tengo 7 filas más como esta ¿Qué hago? He hecho todo lo demás y he estado estancado en esto durante las últimas 6 horas. ¿Puede alguien reescribir este código para que mi tabla no sea demasiado ancha?

Agregué una imagen de cómo se ve y cómo quiero que se vea:

Cómo se ve ahora: ingrese la descripción de la imagen aquí

Cómo quiero que se vea: ingrese la descripción de la imagen aquí

Respuesta1

Si eliminara todos estos entornos tabulares que interfieren dentro de su tabla, podría reemplazar sus lcolumnas con columnas de ancho fijo, por ejemplo p{3cm}(deberá ajustar los anchos para que coincidan con cualquier geometría de página que tenga)

\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}

o podrías cambiar al tabularraypaquete:

\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}

información relacionada