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 1075 times
main.tex
(38.28 KiB) Downloaded 1071 times
main.log
(66.47 KiB) Downloaded 1017 times

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

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: 10358
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