4

I'm using a LaTeX template for a research article

I've converted the .tex file to a minimal example:

\documentclass[fleqn,10pt]{SelfArx}

\begin{document}

\subsection*{Results}

\end{document}

The file SelfArx.cls can be downloaded here

When I compile the LaTeX code above, I get these errors:

enter image description here

How can I resolve this problem?

Rico
  • 6,097
luciano
  • 735
  • 2
    You might need to update your TexLive-installation. You seem to be missing a package. See http://tex.stackexchange.com/questions/55437/how-do-i-update-my-tex-distribution – Runar Dec 29 '15 at 21:13
  • 1
    If you are on Arch Linux, you can pacman -S texlive-latexextra to get the package lastpage.sty. – Matthias Braun May 11 '22 at 19:44

1 Answers1

1

You can add the package directly in your document. You may create a new auxiliary file called lastpage.sty and copy the entire code of the package that you can consult at http://www.biwako.shiga-u.ac.jp/sensei/kumazawa/tex/lastpage.sty.

PMC1234
  • 1,122