亚麻布和人物

亚麻布和人物

我正在写一篇论文提交给期刊,但我遇到了一个奇怪的问题:我在提交论文之前使用了 lineno 包,当我加载它时,文档的最后两个数字消失了!我不知道这是从哪里来的,而且很难在 MWE 中重现它。

完整代码可以在这里找到这里

奇怪的是,即使我只包含包\usepackage{lineno},即没有包含,也会发生这种情况\linenumbers

\include{lineno}

在此处输入图片描述

没有\usepackage{lineno}

在此处输入图片描述

知道可能会发生什么吗?

MWE 如下

\documentclass[epj, twocolumn]{webofc}
\usepackage[varg]{txfonts}   % Web of Conferences font

\usepackage{lineno}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{float}

\let\oldbibitem\bibitem
\def\bibitem{\vfill\oldbibitem}

\begin{document}
Some text

\begin{figure}[h]
    \centering
    \includegraphics[width=0.99\columnwidth,clip]{subthreshold.png}
    \caption{Comparison between present data (black points) and ENDF/B-VII.1 evaluation (red line) in the energy range $100\;keV-600\;keV$. Data is shown using a binning of 2000 bins per energy decade.}
    \label{subthreshold}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[width=0.99\columnwidth,clip]{subthreshold.png}
    \caption{Comparison between present data (black points) and ENDF/B-VII.1 evaluation (red line) in the energy range $100\;keV-600\;keV$. Data is shown using a binning of 2000 bins per energy decade.}
    \label{subthreshold}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[width=0.99\columnwidth,clip]{subthreshold.png}
    \caption{Comparison between present data (black points) and ENDF/B-VII.1 evaluation (red line) in the energy range $100\;keV-600\;keV$. Data is shown using a binning of 2000 bins per energy decade.}
    \label{subthreshold}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[width=0.99\columnwidth,clip]{subthreshold.png}
    \caption{Comparison between present data (black points) and ENDF/B-VII.1 evaluation (red line) in the energy range $100\;keV-600\;keV$. Data is shown using a binning of 2000 bins per energy decade.}
    \label{subthreshold}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[width=0.99\columnwidth,clip]{subthreshold.png}
    \caption{Comparison between present data (black points) and ENDF/B-VII.1 evaluation (red line) in the energy range $100\;keV-600\;keV$. Data is shown using a binning of 2000 bins per energy decade.}
    \label{subthreshold}
\end{figure}

\end{document}

可以发现日志输出这里

从 5 个数字中,当我包括时lineno,只出现前 3 个。

请注意,我在 shareLaTeX 上运行代码。

相关内容