I have been getting weird undefined reference errors to 'Last Page' that point to the line corresponding to my end{document}. I have no idea what this means, but in any case, here is a minimum working example.
\documentclass[a4paper,UKenglish]{lipics-v2016}
\begin{document}
\begin{abstract}
Abstract \ldots
\end{abstract}
\end{document}
This produces the following: "LaTeX Warning: Reference `LastPage'", "Package lastpage Warning: Rerun to get the references right on input line". I also get things like "LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right." no matter how many times I rerun LaTeX. Any advice? I am using Miktex 2.9.
Note: The lipics-v2016.cls file is very large, but can be downloaded here http://drops.dagstuhl.de/styles/lipics-v2016/lipics-v2016-authors.tgz
Edit: I also get the above errors on the starter files without even making changes. This leads me to believe it may be an issue with Miktex. I noticed that Miktex is not producing any .aux or .bbl or .log files... which may be the cause of the error. If I include a bibliography, then no matter what I do, each reference causes a warning.
.auxfile end up in a subfolder? The warning (it's not an error, just a warning) is gone on the second compilation run when I test it here. – Torbjørn T. May 30 '16 at 06:29texify(the program I think is used with thepdflatex+Makeindex+bibtexoption) does something wrong, but other than that I can't say what happens. For now you can use justpdfLaTeXI suppose, and then run BibTeX manually when needed. Or you could try configuring TeXworks to uselatexmkinstead (see e.g. configure latexmk in Texworks 0.2.3).latexmkis a different tool for automating compilation. – Torbjørn T. May 30 '16 at 12:36