WinEdt ⇒ Build Process finishes and PDF does not open at first Page
Build Process finishes and PDF does not open at first Page
I am using WinEdt6 and when I finish building my project, the pdf (outcome) opens but on page 82 (i don't know if this is a random page or what). How can I force it to open at the first page?
thanks!
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Build Process finishes and PDF does not open at first Page
you could use the pdfstartpage option of hyperref:
Code: Select all
\usepackage[pdfstartpage=1]{hyperref}
Code: Select all
\hypersetup{pdfstartpage=1}
Re: Build Process finishes and PDF does not open at first Pa
Thanks a lot!