Springer 投稿模板latex,可在ctex上运行

相信大家在投Springer旗下期刊的时候都会遇到,在线生成pdf乱码问题。首先要保证latex可以在本地texlive上可以运行,然后才可以去在线提交并运行。但是,我相信很多人会直接使用Ctex来编辑,但是Springer提供的模板在Ctex上不可以运行。这是本人的一个模板,主要投了numerical algorithm. 已经在texlive 和Ctex上运行,并在Springer系统中编译通过。拿出来供大家参考学习。

首先是我的导言区定义,包含了大部分的数学和符号包

Springer 投稿模板latex,可在ctex上运行

Springer 投稿模板latex,可在ctex上运行

下面为整个框架和导言区,供大家复制。

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

投递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                                                       % 用在证明结束后出现结束的符号,加上\qed 就有结束方框了
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}  %mathptmx 下重新设置\mathcal{}
\usepackage{amsbsy,amsfonts,amsmath,amssymb,bbm,calc,caption,color,dsfont,graphics}
\usepackage{graphicx,ifthen,latexsym,mathptmx,mathrsfs}
\usepackage{overpic,pifont,psfrag,rotating,stmaryrd,theorem}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{bm}
\usepackage{float}
\usepackage{multirow}
\usepackage{multicol}
\usepackage[colorlinks,linkcolor=blue,citecolor=blue]{hyperref}
\usepackage{epstopdf}                   % eps图像转PDF
\usepackage{geometry}                  %页边距宏包
\geometry{left=3.5cm,right=3.3cm} %页边距设定

\spnewtheorem{method}{Method}{\bf}{\it}

\usepackage[misc]{ifsym}

\def
\theequation{\arabic{section}.\arabic{equation}}  %重新定义equation命令
\numberwithin{equation}{section}                        %方程计数器随着section的更新由1重新计数

\def
\thetheorem{\arabic{section}.\arabic{theorem}}   %重新定义theorem命令
\numberwithin{theorem}{section}                        %定理计数器随着section的更新由1重新计数

\def
\thelemma{\arabic{section}.\arabic{lemma}}        %重新定义lemma命令
\numberwithin{lemma}{section}                           %引理计数器随着section的更新由1重新计数

\def
\thecorollary{\arabic{section}.\arabic{corollary}} % 重新定义corollary命令
\numberwithin{corollary}{section}                       %推论计数器随着section的更新由1重新计数


% Insert the name of "your journal" with
\journalname{Numer Algor}
%
\begin{document}
\title{The title of paper}
\titlerunning{abbreviation for paper title}

\author{XXX \and XXX}
\authorrunning{XXX et al.}
\institute{
           XXXXX(\Letter)\\%信箱符号使用\Letter
           \email [email protected];
           \at School of XXXXX, XXXXX University
   \and
          {XXX \\
           \email [email protected]
           \at School of XXXXX, XXXXX University}
}

\date{Received: date / Accepted: date}
% The correct dates will be entered by the editor
\maketitle
%Created by XXX on \date{\today}\\
\begin{abstract}
This is the abstract for paper.
\keywords{word1 \and word2 \and word3 \and word4 \and word5}

\noindent\textbf{Mathematics Subject Classifications (2010)} 11234 $\cdot$ 33434

\end{abstract}
\section{Introduction}\label{sec:1}

%在此输入你的内容

%方法使用命令

Springer 投稿模板latex,可在ctex上运行

\begin{method}\textbf{The E-HS iteration method:}
\label{method1}
XXXXXXXXXXXXXXXXXXXXXXXXXX
\end{method}

%插图命令

\begin{figure}[H]
\centering
  \includegraphics[scale=0.46]{spE1.eps}
  \includegraphics[scale=0.46]{spE2.eps}
\end{figure}
\begin{figure}[H]
\centering
  \includegraphics[scale=0.46]{spE3.eps}
  \includegraphics[scale=0.46]{spE4.eps}
  \caption{ \small{The spectral radii of the iteration matrices versus parameters with {\color{red}$m = 16$} for tested examples}}
  \label{fig02}
\end{figure}

\section{Numerical experiments}\label{sec:5}

%在此输入你的内容

\section*{Acknowledgements}
The authors are grateful to the referees for their valuable comments and suggestions which helped to improve the presentation of the paper.

%参考文献和主体文档在一起
\bibliographystyle{spmpsci}      % mathematics and physical sciences
\begin{thebibliography}{10}
\providecommand{\url}[1]{{#1}}
\providecommand{\urlprefix}{URL }
\expandafter\ifx\csname urlstyle\endcsname\relax
  \providecommand{\doi}[1]{DOI~\discretionary{}{}{}#1}\else
  \providecommand{\doi}{DOI~\discretionary{}{}{}\begingroup
  \urlstyle{rm}\Url}\fi

\bibitem{Arridge1999Optical}
Arridge, S.: {Optical tomography in medical imaging}.
\newblock Inverse Probl. \textbf{15}(2), 41--93 (1999)

\end{thebibliography}
\end{document}