I am writing a document to submit to a journal and I am facing this weird problem : I am using the lineno package before submitting the paper and when I am loading it the last two figures of my document disappear! I have no idea where does this comes from and it's very difficult to reproduce it in a MWE.
The full code can be found here
It is strange that this happens even if I just include the package i.e. \usepackage{lineno}, without include \linenumbers.
With \include{lineno}
Without \usepackage{lineno}
Any idea on what that might be happening?
A MWE is the following
\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}
The log output can be found here
From the 5 figures, when I include lineno, only the first 3 appear.
Note that I am running the code on shareLaTeX.


\include{lineno}do? This tells LaTeX to include the filelineno.tex. Is that intended? But really, we need an MWE here. Your question won't be helpful to other users if it depends on an external link whose content will change. Making an MWE is just a mechanical process. Remove stuff and put it back only if the problem disappears. – cfr Aug 26 '16 at 23:12has the sole specifier for floats. Usually, LaTeX will replace this byhtanyway, but trying to restrict it in this way is most unwise. – cfr Aug 26 '16 at 23:16[h]? – Thanos Aug 26 '16 at 23:29hsays 'put it here, if there's room'. – cfr Aug 26 '16 at 23:31webofcto that class. Otherwise, the class is part of the issue and we'll need a link to it as it is not standard. Also, we can't reproduce without the image. Try usingexample-image-aand see if you can reproduce the problem with that. – cfr Aug 26 '16 at 23:32\captionoffrom thecaptionorcapt-ofpackage than to useHfromfloat. – cfr Aug 26 '16 at 23:39\documentclass[11pt, two column]{article}and it seems that there is no problem there, so it should come from the class... – Thanos Aug 27 '16 at 05:21hyperrefshould be loaded last except for a few exceptions, such ascleverrefwhich needhyperrefloaded first. This isn't why your images disappear, probably, but may cause issues of other kinds. – cfr Aug 27 '16 at 12:02