如何在 LaTex 中在摘要后添加表格

如何在 LaTex 中在摘要后添加表格

我在用

\documentclass[a4paper,11pt,number]{elsarticle}

我需要在文档摘要后添加一个表格。

我正在尝试下面的语法,但表格被放在第一页。

\begin {abstract}
some text
\end{abstract}

   \begin{table}[!t]
%\captionsetup{font=scriptsize}
\caption{Nomenclature}\label{nom}
\begin{center}
\begin{tabular}{ll}
\multicolumn{2}{l}{\textit{A. Sets}}\\
\\
$S$ &Set of suppliers\\
$T$ &Set of time periods\\
$J$ &Set of customers\\
$L$ &Set of levels\\
$K$ &Set of attributes\\
\\
\end{tabular}
\end{center}
\end{table}

答案1

  • 请始终提供小而完整的文档示例,以显示您的问题
  • 我已经在下面的问题评论中给出了针对您的问题的解决方案:放置[!t]选项[!ht]

(小而完整的文档)的示例是:

\documentclass[a4paper,11pt,number]{elsarticle}
\usepackage{array}

\usepackage{lipsum}
\begin{document}
\begin{frontmatter}
\begin{abstract}
  \lipsum*[11]
\end{abstract}

\end{frontmatter}
   \begin{table}[!ht]
%\captionsetup{font=scriptsize}
\caption{Nomenclature}\label{nom}
\centering
\begin{tabular}{>{$}l<{$} l}
\multicolumn{2}{l}{\textit{A. Sets}}\\
\\
S & Set of suppliers\\
T & Set of time periods\\
J & Set of customers\\
L & Set of levels\\
K & Set of attributes\\
\\
\end{tabular}
\end{table}

\end{document}

在此处输入图片描述

相关内容