I'm trying to add descriptive notes to a long table like below:
\begin{longtable}{c|cccccc|c}
\caption{some title} \\
\footnotesize{This table shows ...} % this is the note to explain the
table.
\hline Left& center & right \\
\hline \endfirsthead \caption[]{continued}\\
\hline left & center & right \\
\hline \endhead \hline \multicolumn{3}{r}{continued} \endfoot \hline
\endlastfoot
\hline\hline
but the result is not what I wanted. If I put notes under the Table
environment, it's fine (but I couldn't get the long table). How to
achieve this? Thanks.
> please, have a look at the file /misc/threeparttable.sty
> > Hi all,
> > I'm trying to add descriptive notes to a long table
Threeparttable isn't the answer for longtable, because
threeparttable makes a box that won't break.
There may be a solution using mdwtools
http://groups-beta.google.com/group/comp.text.tex/browse_thread/thread/1c9dbc140bad0477
--
Donald Arseneau as...@triumf.ca
Table 1 Caption
Some text about this table...
start of the table...
It's a common style seen in a journal paper. But I just have a long
table here. Any suggestion? Thanks a lot.
\caption{...}
....
\multicolumn{your number of cols}{p{some width}}{text}\\
the rest of the table
--
/daleif (remove RTFSIGNATURE for email)
> \begin{longtable}{c|cccccc|c}
> \caption{some title} \\
> \footnotesize{This table shows ...} % this is the note to explain the
> table.
> \hline Left& center & right \\
> [...]
>
> but the result is not what I wanted. If I put notes under the Table
> environment, it's fine (but I couldn't get the long table). How to
> achieve this? Thanks.
What about this:
\begin{longtable}{c|cccccc|c}
\caption{some title} \\
\caption*{\footnotesize This table shows ...} \\
\hline Left & center & right \\
...
HTH,
Axel
\multicolumn{your number of cols}{p{some width}}{text}\\
suggested by Lars. It basically delivers what I want, except that the
text shown has a bit wider space across rows (as is the case for text
and numbers in a table) than a plain text in LaTeX.
But I find another puzzle. I use 'longtable' and 'dcolumn' packages
when I construct long tables. I also use 'tabls' package in order to
automatically determines the height of a row in a table (which delivers
a prettier table than without). it worked well without 'longtable' and
'dcolumn' packages, but seemed to fail to work with the latter two.
Anyone knows how to fix this? Thanks in advance.
> But I find another puzzle. I use 'longtable' and 'dcolumn' packages
> when I construct long tables. I also use 'tabls' package
tabls is not currently compatible with array.sty
--
Donald Arseneau as...@triumf.ca