我正在使用 Springer 的 svjour3.cls 格式,当我编写文章时,我会在单独的页面中看到摘要和关键词,但它们不会出现在标题之后。
\RequirePackage{fix-cm}
\documentclass[twocolumn]{svjour3}
\usepackage{dcolumn}
\usepackage{graphicx}
\smartqed
\usepackage{natbib}
\usepackage{caption,booktabs}
\usepackage{tabularx}
\usepackage{epsfig}
\usepackage{subfigure}
\usepackage{float}
\restylefloat{table}
\usepackage{pdflscape}
\usepackage{multirow}
\usepackage{threeparttable}
\usepackage{rotating}
\usepackage{rotfloat}
\usepackage{longtable}
\usepackage{supertabular}
\usepackage{makecell}
\usepackage{caption}
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\usepackage{xkeyval}
\usepackage{tabularx,ragged2e,booktabs,caption}
%\usepackage{floatrow}
\floatstyle{plaintop}
\restylefloat{table}
%\def\tabularxcolumn#1{m{#1}}
\newcolumntype{L}{>{\RaggedRight\arraybackslash}X}
\captionsetup{skip=0.333\baselineskip}
%\newcommand{\heading}[1]{\bfseries\begin{tabular}{@{}c@{}}
#1\end{tabular}}
\newcolumntype{L}{>{\RaggedRight\arraybackslash}X} %
%\newcommand\mc[1]{\multicolumn{1}{C}{#1}} % handy shortcut macro
\frenchspacing
\renewcommand{\figurename}{Fig.}
\makeatletter
\def\endthebibliography{%
\def\@noitemerr{\@latex@warning{Empty `thebibliography'
environment}}%
\endlist
}
\makeatother
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\journalname{Applied Intelligence}
\begin{document}
\title{Trust in ABM}
\author{A.D \and
Second Author %etc.
}
\institute{A. D \at
first address \\
Tel.: +123-45-678910\\
Fax: +123-45-678910\\
\email{[email protected]} % \\
\and
S. Author \at
second address
}
\date{Received: date / Accepted: date}
\maketitle
\begin{abstract}
Interactions are the building blocks of open environments. Finding reliable partners to interact with in open environments is a challenging task for agents, therefore, trust and reputation mechanisms are used to handle this issue. In literature, various trust mechanisms have been described. This article presents an extensive review of the most representative trust and reputation models presented in literature.
\keywords{trust \and Second reputation \and agent}
\end{abstract}
\section{Introduction}
blabla bla
\end{document}
答案1
您发布的代码会在编译过程中导致错误消息,因此查看损坏的文档并担心缺少摘要是没有意义的。
如果错误得到修复,摘要将正确显示。具体问题如下:
- 你不能
#1\end{tabular}}
在序言中 - 你不能有空行
\institute
除此之外,您还应该考虑实现 Micos 评论,它们不仅仅是“风格”问题,而且很容易导致问题。
\RequirePackage{fix-cm}
\documentclass[twocolumn]{svjour3}
\usepackage{dcolumn}
\usepackage{graphicx}
\smartqed
\usepackage{natbib}
\usepackage{caption,booktabs}
\usepackage{tabularx}
\usepackage{epsfig}
\usepackage{subfigure}
\usepackage{float}
\restylefloat{table}
\usepackage{pdflscape}
\usepackage{multirow}
\usepackage{threeparttable}
\usepackage{rotating}
\usepackage{rotfloat}
\usepackage{longtable}
\usepackage{supertabular}
\usepackage{makecell}
\usepackage{caption}
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\usepackage{xkeyval}
\usepackage{tabularx,ragged2e,booktabs,caption}
%\usepackage{floatrow}
\floatstyle{plaintop}
\restylefloat{table}
%\def\tabularxcolumn#1{m{#1}}
\newcolumntype{L}{>{\RaggedRight\arraybackslash}X}
\captionsetup{skip=0.333\baselineskip}
%\newcommand{\heading}[1]{\bfseries\begin{tabular}{@{}c@{}}
%#1\end{tabular}}
\newcolumntype{L}{>{\RaggedRight\arraybackslash}X} %
%\newcommand\mc[1]{\multicolumn{1}{C}{#1}} % handy shortcut macro
\frenchspacing
\renewcommand{\figurename}{Fig.}
\makeatletter
\def\endthebibliography{%
\def\@noitemerr{\@latex@warning{Empty `thebibliography'
environment}}%
\endlist
}
\makeatother
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\journalname{Applied Intelligence}
\begin{document}
\title{Trust in ABM}
\author{A.D \and
Second Author %etc.
}
\institute{A. D \at
first address \\
Tel.: +123-45-678910\\
Fax: +123-45-678910\\
\email{[email protected]} % \\
\and
S. Author \at
second address
}
\date{Received: date / Accepted: date}
\maketitle
\begin{abstract}
Interactions are the building blocks of open environments. Finding reliable partners to interact with in open environments is a challenging task for agents, therefore, trust and reputation mechanisms are used to handle this issue. In literature, various trust mechanisms have been described. This article presents an extensive review of the most representative trust and reputation models presented in literature.
\keywords{trust \and Second reputation \and agent}
\end{abstract}
\section{Introduction}
blabla bla
\end{document}