失控的论点?Springer 模板错误?

失控的论点?Springer 模板错误?

为什么我会收到此错误“失控参数?”

\RequirePackage{fix-cm}
%
%\documentclass{svjour3}                     % onecolumn (standard format)
%\documentclass[smallcondensed]{svjour3}     % onecolumn (ditto)
\documentclass[smallextended]{svjour3}       % onecolumn (second format)
%\documentclass[twocolumn]{svjour3}          % twocolumn
%
\smartqed  % flush right qed marks, e.g. at end of proof
%
\usepackage{graphicx}
  \begin{document}
    
    \title{Insert your title here%\thanks{Grants or other notes
    %about the article that should go on the front page should be
    %placed here. General acknowledgments should be placed at the end of the article.}
    }
    \subtitle{Do you have a subtitle?\\ If so, write it here}
    
    %\titlerunning{Short form of title}        % if too long for running head
    
    \author{First Author         \and
            Second Author %etc.
    }
    
    \institute{ \at
                   $^{1}$ first address \\
                  
                  %\email{[email protected]}           %  \\
    %             \emph{Present address:} of F. Author  %  if needed
               \and
                \at
                    $^{2}$second address
    }
    
    \date{Received: date / Accepted: date}
    % The correct dates will be entered by the editor
    
    \maketitle
    \begin{abstract}
    \keywords{First keyword \and Second keyword \and More}
    % \PACS{PACS code1 \and PACS code2 \and more}
    % \subclass{MSC code1 \and MSC code2 \and more}
    \end{abstract}
    \end{document}
    % end of file template.tex

更新:如何删除两行之间的空格?

在此处输入图片描述

答案1

错误提示放错了位置\par(空白行)。此操作运行无错误。

\RequirePackage{fix-cm}
%
%\documentclass{svjour3}                     % onecolumn (standard format)
%\documentclass[smallcondensed]{svjour3}     % onecolumn (ditto)
\documentclass[smallextended]{svjour3}       % onecolumn (second format)
%\documentclass[twocolumn]{svjour3}          % twocolumn
%
\smartqed  % flush right qed marks, e.g. at end of proof
%
\usepackage{graphicx}
  \begin{document}
    
    \title{Insert your title here%\thanks{Grants or other notes
    %about the article that should go on the front page should be
    %placed here. General acknowledgments should be placed at the end of the article.}
    }
    \subtitle{Do you have a subtitle?\\ If so, write it here}
    
    %\titlerunning{Short form of title}        % if too long for running head
    
    \author{First Author         \and
            Second Author %etc.
    }
    
    \institute{ \at
                   $^{1}$ first address \\
                  %\email{[email protected]}           %  \\
    %             \emph{Present address:} of F. Author  %  if needed
               \and
                \at
                    $^{2}$second address
    }
    
    \date{Received: date / Accepted: date}
    % The correct dates will be entered by the editor
    
    \maketitle
    \begin{abstract}
    \keywords{First keyword \and Second keyword \and More}
    % \PACS{PACS code1 \and PACS code2 \and more}
    % \subclass{MSC code1 \and MSC code2 \and more}
    \end{abstract}
    \end{document}

相关内容