`\begin{longtable}` 앞에 `\caption{}`을 배치하는 방법은 무엇입니까?

`\begin{longtable}` 앞에 `\caption{}`을 배치하는 방법은 무엇입니까?

\caption{}앞에 배치할 수 있는 방법이 있나요 \begin{longtable}? 대신에 예를 들어 설명하면

\documentclass{article}
\usepackage{longtable}
\begin{document}
\begin{longtable}{c|c|c|c}
\caption{This is a very nice table}
A & B & A & B \\ \hline
\end{longtable}
\end{document}

나는 다음과 같은 것을 사용하고 싶습니다

\documentclass{article}
\usepackage{longtable}
\begin{document}
\caption{This is a very nice table}
\begin{longtable}{c|c|c|c}
A & B & A & B \\ \hline
\end{longtable}
\end{document}

답변1

로 할 수 있습니다 \captionof. 여기에서는 캡션과 긴 테이블 사이에 페이지 나누기가 가능하다는 점에 유의하세요.

\documentclass{article}
\usepackage{longtable}
\usepackage{caption}


\begin{document}

\captionof{table}{This is a very nice table}
\begin{longtable}{c|c|c|c}
A & B & A & B \\ \hline
\end{longtable}
\addtocounter{table}{-1}

\captionof{table}{This is a very nice table}
\begin{longtable}{c|c|c|c}
A & B & A & B \\ \hline
\end{longtable}

\end{document}

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

관련 정보