\documentclass[fleqn,preprint,10pt]{elsarticle}
\usepackage{hyperref}
\usepackage{longtable}
\usepackage{caption}
\hypersetup{pdfstartview={XYZ null null 1.00}}%to get pdf zoomed to 100%
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}%for \mathfrak{g}
\begin{document}
\begin{longtable}{lll}
\hline\hline
% after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
\\ $N_a$ & $\text{Nor}_{\mathfrak{g}}\left(N_a\right)/N_a$ & Sub--algebras \\\\\hline\hline
$e_1$&$\{e_2, e_3, e_4, e_5\}$
\\\hline\hline\end{longtable}\captionof{table}{Classification of algebra $\mathfrak{g}=\,L_5\oplus L_4 \oplus L_3$.}\label{classi}
\end{document}
答案1
Longtable 增加表计数器,目的是让您在环境内使用,然后在环境之外\caption
使用。\captionof{table}
要么改变
\end{longtable}\captionof{table}{...}
到
\caption{...}\end{longtable}
或者,在特殊情况下,如果你确实不需要表格中的标题,你可以使用
\end{longtable}\addtocounter{table}{-1}\captionof{table}{...}