LoginSignup
10
9

More than 5 years have passed since last update.

[LaTeX]長い表を表示する

Last updated at Posted at 2013-05-12

複数ページにまたがる長い表を表示する方法

longtable.tex
\usepackage{longtable}
...
\begin{document}
...
\begin{longtable}{lll}
\caption[表目次用のキャプション]{キャプション\label{tab:label}}\\ \hline
項目1&項目2&項目3\\ \hline
\endfirsthead%ここまでが1ページ目のヘッダー.キャプションを含んでいるのに注意.
\caption[]{キャプション(続き)}\\ \hline
%[]に何も書かないと表目次には何も書かれない.[]ではなく*にすると,表番号もでなくなる.
項目1&項目2&項目3\\ \hline
\endhead
\hline
\firstfoot
%\hline
%\endfoot%最後のフッターを他のフッターと変えられる.同じなら書かなくてもいい.
a & b & c \\
x & y & z \\
\end{lontable}
10
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
9