双列模式下的 Longtable 问题 - Springer 模板 (svjour3)

双列模式下的 Longtable 问题 - Springer 模板 (svjour3)

我在用施普林格乳胶文章模板。我面临的一些问题是关于在双列模式下创建长表(多于一页)。

具体来说,由于 longtable 不支持双列模式,我首先将布局更改为单列模式(使用\一列),然后将其改回两列(使用\两列)一旦 longtable 完成。然后我使用长桌包。但是,一个问题是,这会使文本与表格分离。我理解这是因为命令\一列\两列调用时创建一个新页面。那么如何解决这个问题呢? 我的代码和输出如下所示。

\documentclass[twocolumn]{svjour3}          % twocolumn

\usepackage[referable,para,flushleft]{threeparttablex}  %for longtable tablenotes; enable clickable table note
\usepackage{longtable}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{lipsum} 

\begin{document}    
\section{Introduction}
\lipsum[2-8]

% longtable begin
\onecolumn
%\begin{landscape}
\begin{ThreePartTable}
    \setlength{\LTcapwidth}{\textwidth} %set longtable caption length
    \renewcommand{\arraystretch}{1.0}
    \centering
    \begin{TableNotes}
        \footnotesize
        \item[1]  
    \end{TableNotes}
    \begin{longtable}{>{\flushleft\arraybackslash}p{1.2cm}
            >{\flushleft\arraybackslash}p{2.8cm}
            >{\flushleft\arraybackslash}p{1cm}
            >{\flushleft\arraybackslash}p{1cm}
            >{\flushleft\arraybackslash}p{0.9cm}
            >{\flushleft\arraybackslash}p{0.8cm}
            >{\flushleft\arraybackslash}p{0.8cm}
            >{\flushleft\arraybackslash}p{0.8cm}
            >{\flushleft\arraybackslash}p{0.8cm}
            >{\flushleft\arraybackslash}p{3.5cm}}
        \caption{Table captions}
        \label{tab:dataset_long}\\
        \toprule
        aaa &bbb    &ccc    &ddddd    &eeeee    &fffffff        &gggg   &hhh    &iii    &jjj    \\
        \midrule
        \endfirsthead
        \caption{(continued)}\\
        \toprule
        aaa &bbb    &ccc    &ddddd    &eeeee    &fffffff        &gggg   &hhh    &iii    &jjj    \\
        \midrule
        \endhead
        \midrule
        \multicolumn{10}{r}{\footnotesize \textit{Continues on the next page}}\\
        \midrule
        \endfoot
        \insertTableNotes
        \endlastfoot
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        12as&dfh 4&&&&op&&&&\\
        \bottomrule
    \end{longtable}
\end{ThreePartTable}
%   \end{landscape}
%}
\twocolumn
\end{document}

在此处输入图片描述

我想要的是类似于下面两张图片中显示的内容,它们来自 Springer 期刊。它们两个(即,带有以下文本的长表或侧表)对我来说都可以。有人能给我提示或解决方案吗?

Springer 文章的长表: 长桌周围有文字

横向稳定: 侧向长桌

相关内容