Overleaf에서 테이블을 확장할 수 없습니다

Overleaf에서 테이블을 확장할 수 없습니다

여기에 이미지 설명을 입력하세요

연구 논문을 작성 중인데 비교표가 있는데 다음 페이지로 확장되지 않습니다. 다음은 코드입니다. 저는 뒷면 표 형식 열을 사용하는 것이 매우 익숙합니다. 무엇이 문제인지 알려주세요. 참고용으로 이미지도 첨부했습니다. 보시다시피 테이블은 다음 페이지로 확장되지 않습니다.

\documentclass{article}

\begin{document}

\begin{table}[htp]
  \centering
  \caption{Related works Comparison table}
  \label{my-label}
{\small %
    \begin{tabular}{p{.18\textwidth}p{.22\textwidth}p{.2\textwidth}p{.2\textwidth}p{.2\textwidth}}
\hline 
\thead Title & Goal & Idea & Event \&\ Others & Technique and \&\ Model \\
\hline 
Soccer Event Detection  & Automatic systems for detection event in video &  Detect Object from single video frame with a confidence scores and followed by event detection. Instead of resampling pixels and features and classify those proposals, which is computationally expensive. A method is used to combine the region proposal and classification into one. & Ball possession event and kicking the ball. &    Event detection and Object Detection. \\

\hline
A Discriminative CNN Video Representation for Event Detection & The idea is to effectively leverage deep Convolutional Neural Networks to advance event detection, where only frame level static descriptors can be extracted by the existing CNN toolkits. & Performance can be significantly improved by taking advantage of an appropriate encoding method. Second, we propose using a set of latent concept descriptors as the frame descriptor, which enriches visual information while keeping it computationally affordable. &   Event detection & VLAD Encoding, Fisher Vector encoding, CNN Latent Concept descriptors. \\
\hline

    \end{tabular}%
}%
\end{table}
\end{document}[![enter image description here][1]][1]

답변1

xltabular나는 테이블이 사용 가능한 공간만큼 넓은지 확인하고 테이블 중간 페이지 나누기를 허용하기 위해 다음과 같은 재설계를 제안합니다 . 또한 pdflscape페이지를 가로 방향으로 회전하고 불필요한 공백을 최소화하기 위해 열 너비를 변경하는 데 사용했습니다 .

여기에 이미지 설명을 입력하세요

\documentclass{article}

\usepackage{booktabs}
\usepackage{xltabular}
\usepackage{pdflscape}
\begin{document}

\begin{landscape}
\begin{xltabular}{\linewidth}{>{\raggedright\arraybackslash}p{.2\textwidth}
                              p{.35\textwidth}
                              X
                              >{\raggedright\arraybackslash}p{.15\textwidth}
                              >{\raggedright\arraybackslash}p{.175\textwidth}}
\caption{Related works Comparison table}
\label{my-label}\\
\toprule 
Title & Goal & Idea & Event \&\ Others & Technique \&\ Model \\
\midrule 
\endfirsthead
\caption{Related works Comparison table - continued from previous page}\\
\toprule 
Title & Goal & Idea & Event \&\ Others & Technique \&\ Model \\
\midrule 
\endhead
\bottomrule
\endlastfoot
Soccer Event Detection  & Automatic systems for detection event in video &  Detect Object from single video frame with a confidence scores and followed by event detection. Instead of resampling pixels and features and classify those proposals, which is computationally expensive. A method is used to combine the region proposal and classification into one. & Ball possession event and kicking the ball. &    Event detection and Object Detection. \\

\midrule
A Discriminative CNN Video Representation for Event Detection & The idea is to effectively leverage deep Convolutional Neural Networks to advance event detection, where only frame level static descriptors can be extracted by the existing CNN toolkits. & Performance can be significantly improved by taking advantage of an appropriate encoding method. Second, we propose using a set of latent concept descriptors as the frame descriptor, which enriches visual information while keeping it computationally affordable. &   Event detection & VLAD Encoding, Fisher Vector encoding, CNN Latent Concept descriptors. \\

\end{xltabular}%
\end{landscape}
\end{document}

관련 정보