내 LaTeX 테이블이 너무 넓어 내용이 완전히 표시되지 않습니다.

내 LaTeX 테이블이 너무 넓어 내용이 완전히 표시되지 않습니다.

내 LaTeX 테이블이 너무 넓어서 제대로 맞지 않습니다. 저는 LaTeX에서 학술 프로젝트 보고서를 편집하기 위해 Overleaf를 사용하는 완전 초보자입니다. 생성하고 복사하여 붙여넣는 데 사용한 테이블이 tablegenerator.com너무 넓어 수정 방법을 모르겠습니다.

코드는 다음과 같습니다.

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

이와 같은 행이 7개 더 있습니다. 어떻게 해야 하나요? 다른 모든 작업을 수행했는데 지난 6시간 동안 이 문제가 멈췄습니다. 테이블이 너무 넓지 않도록 누군가 이 코드를 다시 작성해 주실 수 있나요?

어떻게 보이는지, 어떻게 보이고 싶은지에 대한 이미지를 추가했습니다.

현재 모습: 여기에 이미지 설명을 입력하세요

내가 원하는 모습 : 여기에 이미지 설명을 입력하세요

답변1

테이블 내부에서 방해가 되는 이러한 테이블 형식 환경을 모두 제거하려면 l열을 고정 너비 열로 바꿀 수 있습니다. 예를 들어 p{3cm}(어떤 페이지 구조와도 일치하도록 너비를 조정해야 합니다)

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

또는 패키지로 전환할 수 있습니다 tabularray.

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

관련 정보