GeneralPDF is not getting generated in Latex

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
deepk_96
Posts: 2
Joined: Fri Jul 26, 2024 2:53 pm

PDF is not getting generated in Latex

Post by deepk_96 »

I am using Latex with Enterprise Architecture using SVN.
When trying to generate the PDF, images are getting generated but final PDF is not getting generated.

I have attached the log files for reference.
Can someone please suggest what can be the issue and how can I resolve this issue.
Attachments
main.aux
(986 Bytes) Downloaded 1062 times
main.tex
(38.28 KiB) Downloaded 1059 times
main.log
(66.47 KiB) Downloaded 1002 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Bartman
Posts: 369
Joined: Fri Jan 03, 2020 2:39 pm

PDF is not getting generated in Latex

Post by Bartman »

Your log file reports

Code: Select all

! Package cleveref Error: cleveref must be loaded after hyperref!.
deepk_96
Posts: 2
Joined: Fri Jul 26, 2024 2:53 pm

PDF is not getting generated in Latex

Post by deepk_96 »

Yes ...but how I should change the sequence of hyperref and cleveref...Files( main.log, main.aux,main.lof,main.lot, main.out, mai .tex, mai .toc) are getting generated when pdf build process is triggered.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

PDF is not getting generated in Latex

Post by Stefan Kottwitz »

Welcome to the forum!

Just delete this line
  • \usepackage{cleveref}
and insert it again after \usepackage{hyperref}:

Code: Select all

...
\usepackage{hyperref}
\usepackage{cleveref}
...
Stefan
LaTeX.org admin
Post Reply