General ⇒ error when compiled
error when compiled
i use Kile.
when i compiled my file (which works because thats an example from my teacher) i have an error :
! LaTeX Error: File `lastpage.sty' not found.
what does that mean ? by the way, know that im a beginner
thanks u guys for your help
cu
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
error when compiled
In your tex file, there is a line with the following command: \usepackage{lastpage}. When LaTeX finds it, it tries to read the file lastpage.sty, or, in other words, LaTeX tries to load the lastpage package. But, in your case, LaTeX does not find it. I figure out that you have done a basic TeX Live instalation. Use your favourite package manager (adept, apt-get...) to install texlive-latex-extra. The LaTeX package lastpage is there.soad0901 wrote:! LaTeX Error: File `lastpage.sty' not found.
what does that mean ?