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

相信大家在投Springer旗下期刊的時候都會遇到,在線生成pdf亂碼問題。首先要保證latex可以在本地texlive上可以運行,然後纔可以去在線提交併運行。但是,我相信很多人會直接使用Ctex來編輯,但是Springer提供的模板在Ctex上不可以運行。這是本人的一個模板,主要投了numerical algorithm. 已經在texlive 和Ctex上運行,並在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                                                       % 用在證明結束後出現結束的符號,加上\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}

%在此輸入你的內容

%方法使用命令

\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}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章