elsarticle 文檔類別:前面的部分是一個一個地寫的

elsarticle 文檔類別:前面的部分是一個一個地寫的

我們正要向愛思唯爾提交一篇論文,但前面的內容似乎有問題(或者我們做錯了)。這是代碼位:

\author[FFNS]{One Author\corref{mycorrespondingauthor}}

\cortext[mycorrespondingauthor]{Correspondence should be addressed
to One Author, Laboratory for Something, Faculty of
Anotherthing, University of Thirdthing. Email: {\tt [email protected]}}

這就是它在 pdf 的樣子:

在此輸入影像描述

這裡發生了什麼事?


感謝雙方達斯比斯讓-塞巴斯蒂安-戈塞蘭(尤其是達斯比斯,他好心地教了我一些禮節[;-)]),我耐心地做了一個最小的例子,然後找出了問題所在。為了解釋細節,我附上兩個例子:一個是簡短的摘要(短文本;簡短的pdf)和一個長摘要,分佈在首頁和第一頁(長文字;長pdf)。

簡而言之,我在正文的開頭添加了 \newpage,這產生了不同之處——整潔、可讀的編譯。 (如果沒有 \newpage pdf,編譯時仍然會出現那個醜陋的錯誤!)在 longAbs 中,由於摘要超過兩頁,我不知道如何解決這個問題。

現在,我可以提出更好的問題,我想:如果摘要很長並且你使用elsarticle文檔類,如何使通信註釋和關於期刊和日期的註釋不重疊?

謝謝!

答案1

經過與達斯比斯讓-塞巴斯蒂安-戈塞蘭,我認為我們已經找出導致問題的原因了。可以肯定的是,這是 lineno 套件 linenumbers。此外,摘要的長度也會產生幹擾。下列的達斯比斯建議/請求,我發布兩個最小的示例,以便任何人都可以複製關鍵行為:

(1) 簡短摘要:

\documentclass[review]{elsarticle}

\usepackage{lineno}
\usepackage{xcolor}
\usepackage{tabulary}

\journal{Some Journal}

%-- Line numbering
\pagewiselinenumbers
\modulolinenumbers[2]

%-- Hyperreferencing
\usepackage[bookmarks=true,bookmarksnumbered=true,bookmarksopen=true,
    bookmarksopenlevel=2,breaklinks=true,pdfborder={0 0 1},backref=false,
    colorlinks=true,citecolor=blue,urlcolor=blue,linkcolor=blue]
    {hyperref}
\hypersetup{pdfstartview={XYZ null null 1}}

%-- Float definition
\renewcommand\floatpagefraction{.9}
\renewcommand\topfraction{.9}
\renewcommand\bottomfraction{.9}
\renewcommand\textfraction{.1}   
\setcounter{totalnumber}{50}
\setcounter{topnumber}{50}
\setcounter{bottomnumber}{50}

%%%%%%%%%%%%%%%%%%%%%%%
%% Elsevier bibliography styles
%%%%%%%%%%%%%%%%%%%%%%%
%% To change the style, put a % in front of the second line of the current style and
%% remove the % from the second line of the style you would like to use.
%%%%%%%%%%%%%%%%%%%%%%%

%% Numbered
%\bibliographystyle{model1-num-names}

%% Numbered without titles
%\bibliographystyle{model1a-num-names}

%% Harvard
%\bibliographystyle{model2-names.bst}\biboptions{authoryear}

%% Vancouver numbered
%\usepackage{numcompress}\bibliographystyle{model3-num-names}

%% Vancouver name/year
%\usepackage{numcompress}\bibliographystyle{model4-names}\biboptions{authoryear}

%% APA style
%\bibliographystyle{model5-names}\biboptions{authoryear}

%% AMA style
%\usepackage{numcompress}\bibliographystyle{model6-num-names}

%% `Elsevier LaTeX' style
\bibliographystyle{elsarticle-num}
%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}

\begin{frontmatter}

\title{Is this a boring title? \protect\\
    The effect of boring titles on the boresommness}

\author[X]{One Author\corref{mycorrespondingauthor}}

\cortext[mycorrespondingauthor]{Correspondence should be addressed
to One Author, Laboratory for Something, Faculty of
Anotherthing, University of Thirdthing. Email: {\tt [email protected]}}

\author[X,Y]{Second Author}

\address[X]{University of Third Thing}
\address[Y]{Awe Some University of Awesomeness}

\begin{abstract}
{\bf Groucho Marx:} Each morning when I open my eyes I say to myself: I, not
events, have the power to make me happy or unhappy today. I can choose which it
shall be. Yesterday is dead, tomorrow hasn't arrived yet. I have just one day,
today, and I'm going to be happy in it. {\bf Viktor E. Frankl:} We who lived in
concentration camps can remember the men who walked through the huts comforting
others, giving away their last piece of bread. They may have been few in
number, but they offer sufficient proof that everything can be taken from a man
but one thing: the last of the human freedoms -- to choose one's attitude in
any given set of circumstances, to choose one's own way. {\bf Mark Twain:}
Twenty years from now you will be more disappointed by the things you didn't do
than by the ones you did. So throw off the bowlines, Sail away from the safe
harbor. Catch the trade winds in your sails. Explore. Dream. \\
\end{abstract}

\begin{keyword}
    one \sep two \sep three \sep four \sep five
\end{keyword}

\end{frontmatter}

\newpage

\linenumbers

\section{Introduction}

BLAH BLAH BLAH

\section*{Acknowledgements}

\noindent
This research was funded by the Ministry of Time and Money Waste of the Republic of Rich People (grants ON179006 and ON179033), and is partially based on F. A's PhD thesis carried out at the
University of Thirdthing. We thank all \ldots

\end{document}

(2) 長摘要:

\documentclass[review]{elsarticle}

\usepackage{lineno}
\usepackage{xcolor}
\usepackage{tabulary}

\journal{Some Journal}

%-- Line numbering
\pagewiselinenumbers
\modulolinenumbers[2]

%-- Hyperreferencing
\usepackage[bookmarks=true,bookmarksnumbered=true,bookmarksopen=true,
    bookmarksopenlevel=2,breaklinks=true,pdfborder={0 0 1},backref=false,
    colorlinks=true,citecolor=blue,urlcolor=blue,linkcolor=blue]
    {hyperref}
\hypersetup{pdfstartview={XYZ null null 1}}

%-- Float definition
\renewcommand\floatpagefraction{.9}
\renewcommand\topfraction{.9}
\renewcommand\bottomfraction{.9}
\renewcommand\textfraction{.1}   
\setcounter{totalnumber}{50}
\setcounter{topnumber}{50}
\setcounter{bottomnumber}{50}

%%%%%%%%%%%%%%%%%%%%%%%
%% Elsevier bibliography styles
%%%%%%%%%%%%%%%%%%%%%%%
%% To change the style, put a % in front of the second line of the current style and
%% remove the % from the second line of the style you would like to use.
%%%%%%%%%%%%%%%%%%%%%%%

%% Numbered
%\bibliographystyle{model1-num-names}

%% Numbered without titles
%\bibliographystyle{model1a-num-names}

%% Harvard
%\bibliographystyle{model2-names.bst}\biboptions{authoryear}

%% Vancouver numbered
%\usepackage{numcompress}\bibliographystyle{model3-num-names}

%% Vancouver name/year
%\usepackage{numcompress}\bibliographystyle{model4-names}\biboptions{authoryear}

%% APA style
%\bibliographystyle{model5-names}\biboptions{authoryear}

%% AMA style
%\usepackage{numcompress}\bibliographystyle{model6-num-names}

%% `Elsevier LaTeX' style
\bibliographystyle{elsarticle-num}
%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}

\begin{frontmatter}

\title{Is this a boring title? \protect\\
    The effect of boring titles on the boresommness}

\author[X]{One Author\corref{mycorrespondingauthor}}

\cortext[mycorrespondingauthor]{Correspondence should be addressed
to One Author, Laboratory for Something, Faculty of
Anotherthing, University of Thirdthing. Email: {\tt [email protected]}}

\author[X,Y]{Second Author}

\address[X]{University of Third Thing}
\address[Y]{Awe Some University of Awesomeness}

\begin{abstract}
{\bf Groucho Marx:} Each morning when I open my eyes I say to myself: I, not
events, have the power to make me happy or unhappy today. I can choose which it
shall be. Yesterday is dead, tomorrow hasn't arrived yet. I have just one day,
today, and I'm going to be happy in it. {\bf Viktor E. Frankl:} We who lived in
concentration camps can remember the men who walked through the huts comforting
others, giving away their last piece of bread. They may have been few in
number, but they offer sufficient proof that everything can be taken from a man
but one thing: the last of the human freedoms -- to choose one's attitude in
any given set of circumstances, to choose one's own way. {\bf Mark Twain:}
Twenty years from now you will be more disappointed by the things you didn't do
than by the ones you did. So throw off the bowlines, Sail away from the safe
harbor. Catch the trade winds in your sails. Explore. Dream. {\bf Johann
Wolfgang von Goethe:} All truly wise thoughts have been thought already
thousands of times; but to make them truly ours, we must think them over again
honestly, till they take root in our personal experience. {\bf John Eliot:}
History shows us that the people who end up changing the world -- the great
political, social, scientific, technological, artistic, even sports
revolutionaries -- are always nuts, until they are right, and then they are
geniuses. {\bf Calvin Coolidge:} Nothing in the world can take the place of
persistence. Talent will not; nothing is more common than unsuccessful men with
talent. Genius will not; unrewarded genius is almost a proverb. Education will
not; the world is full of educated derelicts. Persistence and determination are
omnipotent. The slogan ``press on'' has solved and always will solve
the problems of the human race. {\bf Alfred D'Souza:} For a long time it had
seemed to me that life was about to begin -- real life. But there was always
some obstacle in the way, something to be gotten through first, some unfinished
business, time still to be served, a debt to be paid. Then life would begin. At
last it dawned on me that these obstacles were my life. {\bf Louise L Hay:} You
are not here to please other people or to live your lives their way. You can
only live it your own way and walk your own pathway. You have come to fulfill
yourself and express love on the deepest level. You are here to learn and grow.
When you leave the planet... the only thing you take is your capacity to love!
{\bf Napoleon Hill:} The strongest oak of the forest is not the one that is
protected from the storm and hidden from the sun. It's the one that stands in
the open where it is compelled to struggle for its existence against the winds
and rains and the scorching sun. \\
\end{abstract}

\begin{keyword}
    one \sep two \sep three \sep four \sep five
\end{keyword}

\end{frontmatter}

\linenumbers

\section{Introduction}

BLAH BLAH BLAH

\section*{Acknowledgements}

\noindent
This research was funded by the Ministry of Time and Money Waste of the Republic of Rich People (grants ON179006 and ON179033), and is partially based on F. A's PhD thesis carried out at the
University of Thirdthing. We thank all \ldots

\end{document}

答案2

linenumbers這個問題似乎源於在此討論的環境中的使用abstractelsarticle 和 lineno 的問題。解決方法是將linenumbers命令移至文章的主體,例如在此 MWE 中:

\documentclass[review]{elsarticle}

\usepackage{lipsum} % only for filler text
\usepackage{lineno}
\modulolinenumbers[2]

\journal{Some Journal}

\begin{document}

    \begin{frontmatter}

        \title{Some Title}

        \author[FFNS]{One Author\corref{mycorrespondingauthor}}

        \cortext[mycorrespondingauthor]{Correspondence should be addressed
        to One Author, Laboratory for Something, Faculty of
        Anotherthing, University of Thirdthing. Email: {\tt [email protected]}}

        \begin{abstract}            
            \lipsum[1-3] % filler text          
        \end{abstract}

    \end{frontmatter}

    \pagewiselinenumbers
    \lipsum[1-2] % filler text

\end{document}

這會產生一篇 2 頁的文章,其中摘要溢出在 2 頁上,而頁腳註釋中沒有重疊的文字。但摘要的行數不會被編號。

在此輸入影像描述

相關內容