svjour3.cls 中表格的侧标题

svjour3.cls 中表格的侧标题

Springersvjour3.cls提供了一个\sidecaption命令,它对图形有效,但对表格无效。请参见下面的 MWE:表格和标题未对齐。有解决办法吗?

\documentclass[]{svjour3}
\def\LIPSUM{Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.}
\begin{document}
\LIPSUM
\par
\begin{table}[h]\sidecaption
\begin{tabular}{l|rrrrrrr}
$k$ & $m$\quad
        1  & 2   & 3   & 4   & 5  & 6  & total \\
\hline\rule{0pt}{2.4ex}%
1     & 11 &     &     &     &    &    &   10    \\
2     & 0  & 20  &     &     &    &    &   20    \\
3     & 0  & 22  & 39  &     &    &    &   61    \\
4     & 0  & 33  & 85  & 33  &    &    &   151   \\
5     & 0  & 74  & 149 & 94  & 15 &    &   332   \\
6     & 0  & 100 & 284 & 187 & 92 & 10 &   673   \\
% 7     & ?  & ?   & ?   & ?   & ?  & ?  & 7 & ?
\end{tabular}
\caption{\LIPSUM}
\end{table}
\par
\LIPSUM
\end{document}

在此处输入图片描述

答案1

解决方案很简单:将表格对齐到底部:

\begin{tabular}[b]{l|rrrrrr|r}

在此处输入图片描述

相关内容