Overleaf で表を拡張できない

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}

関連情報