我正在使用 \documentclass[twocolumn]{svjour3} 为 Springer 期刊撰写一篇论文,该期刊采用双栏格式。我想将摘要放在一栏中,因为期刊格式要求这样做。期刊还希望能够看到与作者和机构相关的脚注。我在更改之前和之后添加了代码。使用“\twocolumnfalse”技巧使摘要适合两栏,但随后脚注消失了。我查看了之前关于这个问题的问题,发现有些人建议使用“\thanks”的解决方案,但在我的代码中我没有使用“thanks”。相反,我使用“affmark”和“affadr”(因为我不知道还有其他方法可以按照期刊要求的确切格式编写这些脚注)。我希望我的摘要适合两栏,并且我的脚注不会消失。有人能帮我解决这个问题吗?还有其他方法可以完全像这样编写我的脚注吗?如果有人能建议我使用“\thanks”以不同的方式编写脚注,那也可能会有所帮助。此脚注正是期刊要求的格式。
这是我进行更改后的代码:
%%%%%%%%%%%%%%%%%%%%%%% file template.tex %%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is a general template file for the LaTeX package SVJour3
% for Springer journals. Springer Heidelberg 2010/09/16
%
% Copy it to a new file with a new name and use it as the basis
% for your article. Delete % signs as needed.
%
% This template includes a few options for different layouts and
% content for various journals. Please consult a previous issue of
% your journal as needed.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% First comes an example EPS file -- just ignore it and
% proceed on the \documentclass line
% your LaTeX will extract the file if required
\begin{filecontents*}{example.eps}
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 19 19 221 221
%%CreationDate: Mon Sep 29 1997
%%Creator: programmed by hand (JK)
%%EndComments
gsave
newpath
20 20 moveto
20 220 lineto
220 220 lineto
220 20 lineto
closepath
2 setlinewidth
gsave
.4 setgray fill
grestore
stroke
grestore
\end{filecontents*}
%
\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}
%
\usepackage{mathptmx} % use Times fonts if availab
% etc.
%
% please place your own definitions here and don't use \def but
% \newcommand{}{}
%
% Insert the name of "your journal" with
% \journalname{myjournal}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%burada itibaren ekledim%%%%%%%%%%%%%%%%%%
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{cuted}
\usepackage{nccmath}
\usepackage{mathtools}
\usepackage{tikz}
\usepackage{adjustbox}
\usepackage[utf8]{inputenc}
\usepackage{newunicodechar}
\usepackage{booktabs}
\usepackage{lipsum}
\usepackage{scalerel}
\usetikzlibrary{svg.path}
\usepackage{newunicodechar}
\newunicodechar{→}{$\to$}
\usepackage{forest}
\usetikzlibrary{trees}
\usetikzlibrary{arrows}
\usepackage{multirow}
\usepackage[section]{placeins}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{algorithmicx}
\usepackage{fixmath}
\algdef{SE}[DOWHILE]{Do}{doWhile}{\algorithmicdo}[1]{\algorithmicwhile\ #1}%
\usepackage{multicol}
\usepackage{lipsum}
\usepackage{scrtime}
% fnpct instead of footmisc:
\usepackage[dont-mess-around]{fnpct}
% patch \maketitle:
\usepackage{etoolbox}
\newcommand*{\affaddr}[1]{#1} % No op here. Customize it for different styles.
\newcommand*{\affmark}[1][*]{\textsuperscript{#1}}
\usepackage[misc,geometry]{ifsym}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\title{Title of the Article}
\author{%
Author 1 Name Surname \protect\affmark[1, 2] \and Author 2 Name Surname\affmark[1]
}
\authorrunning{Esra Yeniaras \and Murat Cenk}
%\authorrunning{Short form of author list} % if too long for running head
\institute{
\Letter $ ~~~$Author 1 Name Surname \\
[email protected] \\ \\ % \\
% \emph{Present address:} of F. Author % if needed
%\and
$~~~~~~~$ Author 2 Name Surname \at
$~~~~~~~$ [email protected]\\ \\
$~~~~~$ \affaddr{\affmark[1] Institution 1, Colorado,USA}\\ \\
$~~~~~$ \affaddr{\affmark[2] Instituton 2 , Ontario, CANADA}\\
%\affaddr{\LaTeX\ University}%
}
\date{Received: date / Accepted: date}
% The correct dates will be entered by the editor
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\twocolumn[
\begin{@twocolumnfalse}
\maketitle
\begin{abstract}
\lipsum
\keywords{bla1 \and bla2 \and bla3.}
\end{abstract}
\end{@twocolumnfalse}
]
\section{Introduction}
\label{intro}
\lipsum
\end{document}
下面是我使用“\twocolumnfalse”进行抽象更改之前的代码。
%%%%%%%%%%%%%%%%%%%%%%% file template.tex %%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is a general template file for the LaTeX package SVJour3
% for Springer journals. Springer Heidelberg 2010/09/16
%
% Copy it to a new file with a new name and use it as the basis
% for your article. Delete % signs as needed.
%
% This template includes a few options for different layouts and
% content for various journals. Please consult a previous issue of
% your journal as needed.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% First comes an example EPS file -- just ignore it and
% proceed on the \documentclass line
% your LaTeX will extract the file if required
\begin{filecontents*}{example.eps}
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 19 19 221 221
%%CreationDate: Mon Sep 29 1997
%%Creator: programmed by hand (JK)
%%EndComments
gsave
newpath
20 20 moveto
20 220 lineto
220 220 lineto
220 20 lineto
closepath
2 setlinewidth
gsave
.4 setgray fill
grestore
stroke
grestore
\end{filecontents*}
%
\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}
%
\usepackage{mathptmx} % use Times fonts if availab
% etc.
%
% please place your own definitions here and don't use \def but
% \newcommand{}{}
%
% Insert the name of "your journal" with
% \journalname{myjournal}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%burada itibaren ekledim%%%%%%%%%%%%%%%%%%
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{cuted}
\usepackage{nccmath}
\usepackage{mathtools}
\usepackage{tikz}
\usepackage{adjustbox}
\usepackage[utf8]{inputenc}
\usepackage{newunicodechar}
\usepackage{booktabs}
\usepackage{lipsum}
\usepackage{scalerel}
\usetikzlibrary{svg.path}
\usepackage{newunicodechar}
\newunicodechar{→}{$\to$}
\usepackage{forest}
\usetikzlibrary{trees}
\usetikzlibrary{arrows}
\usepackage{multirow}
\usepackage[section]{placeins}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{algorithmicx}
\usepackage{fixmath}
\algdef{SE}[DOWHILE]{Do}{doWhile}{\algorithmicdo}[1]{\algorithmicwhile\ #1}%
\usepackage{multicol}
\usepackage{lipsum}
\usepackage{scrtime}
% fnpct instead of footmisc:
\usepackage[dont-mess-around]{fnpct}
% patch \maketitle:
\usepackage{etoolbox}
\newcommand*{\affaddr}[1]{#1} % No op here. Customize it for different styles.
\newcommand*{\affmark}[1][*]{\textsuperscript{#1}}
\usepackage[misc,geometry]{ifsym}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\title{Title of the Article}
\author{%
Author 1 Name Surname \protect\affmark[1, 2] \and Author 2 Name Surname\affmark[1]
}
\authorrunning{Author 1 Name Surname \and Author 2 Name Surname}
%\authorrunning{Short form of author list} % if too long for running head
\institute{
\Letter $ ~~~$Author 1 Name Surname \\
[email protected] \\ \\ % \\
% \emph{Present address:} of F. Author % if needed
%\and
$~~~~~~~$ Author 2 Name Surname \at
$~~~~~~~$ [email protected]\\ \\
$~~~~~$ \affaddr{\affmark[1] Institution 1, Colorado,USA}\\ \\
$~~~~~$ \affaddr{\affmark[2] Instituton 2 , Ontario, CANADA}\\
%\affaddr{\LaTeX\ University}%
}
\date{Received: date / Accepted: date}
% The correct dates will be entered by the editor
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\maketitle
\begin{abstract}
\lipsum
\keywords{bla1 \and bla2 \and bla3.}
\end{abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Introduction}
\label{intro}
\lipsum
\end{document}
答案1
只是为了好玩。我非常怀疑期刊是否会让你这么做。
%%%%%%%%%%%%%%%%%%%%%%% file template.tex %%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is a general template file for the LaTeX package SVJour3
% for Springer journals. Springer Heidelberg 2010/09/16
%
% Copy it to a new file with a new name and use it as the basis
% for your article. Delete % signs as needed.
%
% This template includes a few options for different layouts and
% content for various journals. Please consult a previous issue of
% your journal as needed.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% First comes an example EPS file -- just ignore it and
% proceed on the \documentclass line
% your LaTeX will extract the file if required
\begin{filecontents*}{example.eps}
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 19 19 221 221
%%CreationDate: Mon Sep 29 1997
%%Creator: programmed by hand (JK)
%%EndComments
gsave
newpath
20 20 moveto
20 220 lineto
220 220 lineto
220 20 lineto
closepath
2 setlinewidth
gsave
.4 setgray fill
grestore
stroke
grestore
\end{filecontents*}
%
\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}
%
\usepackage{mathptmx} % use Times fonts if availab
% etc.
%
% please place your own definitions here and don't use \def but
% \newcommand{}{}
%
% Insert the name of "your journal" with
% \journalname{myjournal}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%burada itibaren ekledim%%%%%%%%%%%%%%%%%%
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{cuted}
\usepackage{nccmath}
\usepackage{mathtools}
\usepackage{tikz}
\usepackage{adjustbox}
\usepackage[utf8]{inputenc}
\usepackage{newunicodechar}
\usepackage{booktabs}
\usepackage{lipsum}
\usepackage{scalerel}
\usetikzlibrary{svg.path}
\usepackage{newunicodechar}
\newunicodechar{→}{$\to$}
\usepackage{forest}
\usetikzlibrary{trees}
\usetikzlibrary{arrows}
\usepackage{multirow}
\usepackage[section]{placeins}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{algorithmicx}
\usepackage{fixmath}
\algdef{SE}[DOWHILE]{Do}{doWhile}{\algorithmicdo}[1]{\algorithmicwhile\ #1}%
\usepackage{multicol}
\usepackage{lipsum}
\usepackage{scrtime}
% fnpct instead of footmisc:
\usepackage[dont-mess-around]{fnpct}
% patch \maketitle:
\usepackage{etoolbox}
\newcommand*{\affaddr}[1]{#1} % No op here. Customize it for different styles.
\newcommand*{\affmark}[1][*]{\textsuperscript{#1}}
\usepackage[misc,geometry]{ifsym}
\usepackage{afterpage}
\usepackage{everypage}
\newsavebox{\tempbox}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\title{Title of the Article}
\author{%
Author 1 Name Surname \protect\affmark[1, 2] \and Author 2 Name Surname\affmark[1]
}
\authorrunning{Author 1 Name Surname \and Author 2 Name Surname}
%\authorrunning{Short form of author list} % if too long for running head
\institute{
\Letter $ ~~~$Author 1 Name Surname \\
[email protected] \\ \\ % \\
% \emph{Present address:} of F. Author % if needed
%\and
$~~~~~~~$ Author 2 Name Surname \at
$~~~~~~~$ [email protected]\\ \\
$~~~~~$ \affaddr{\affmark[1] Institution 1, Colorado,USA}\\ \\
$~~~~~$ \affaddr{\affmark[2] Instituton 2 , Ontario, CANADA}\\
%\affaddr{\LaTeX\ University}%
}
\date{Received: date / Accepted: date}
% The correct dates will be entered by the editor
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\onecolumn
\maketitle
\setbox\tempbox=\vbox{% entire abstract must be formatted in onecolumn
\begin{abstract}
\lipsum
\keywords{bla1 \and bla2 \and bla3.}
\end{abstract}}%
\AddThispageHook{\global\csname @twocolumntrue\endcsname}% \afterpage is too late
\afterpage{\twocolumn[\expandafter\unvbox\csname AP@partial\endcsname]}%
\unvbox\tempbox
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Introduction}
\label{intro}
\lipsum
\end{document}