Page Layout ⇒ pdftex: Adobe not displaying correct page number
pdftex: Adobe not displaying correct page number
hope this is the correct forum, there's no forum specifically on PDFTEX it seems...
I use TXC with Miktex & PDFTex, and cannot get Abode Reader to display correct page numbers.
In Latex itself I can use \addtocounter{page}{350} so the document starts with page 351; when using PDFTeX, the resulting PDF also sporns page 351, but Adobe Reader still says at the bottom where one can navigate between pages "1 of 1".
Maybe I have to set a specific PDF command to change this, but I found nothing in the docs!
\documentclass[10pt]{article}
\usepackage[pdftex]{graphicx}
\begin{document}
\addtocounter{page}{350}
xxxxx
\end{document}
- Attachments
-
- test1.pdf
- PDF example
- (4.24 KiB) Downloaded 376 times
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
pdftex: Adobe not displaying correct page number
include the hyperref package:
Code: Select all
\documentclass[10pt]{article}
\usepackage{graphicx}
\usepackage{hyperref}
\begin{document}
\addtocounter{page}{350}
xxxxx
\end{document}
pdftex: Adobe not displaying correct page number
Code: Select all
\usepackage[pdftex]{graphicx}
\pdfpagewidth=210mm
\pdfpageheight=297mm
\pdfhorigin=-22mm
\pdfvorigin=-18.25mm
--
zobbel
Re: pdftex: Adobe not displaying correct page number
pdftex: Adobe not displaying correct page number
Code: Select all
\documentclass[10pt]{article}
\usepackage[pdftex]{graphicx}
\usepackage{hyperref}
\addtocounter{page}{350}
\begin{document}
x
\end{document}
Maybe you misunderstood: the actual PDF page is fine, the pagenumber shown is 351; all I'm after is what Adobe Reader displays at the bottom of the screen in the navigation bar: still unchanged "1 of 1" (or "1 von 1" in the German version).
- Attachments
-
- test1.pdf
- (4.88 KiB) Downloaded 304 times
Re: pdftex: Adobe not displaying correct page number
- Attachments
-
- test1b.pdf
- (5.08 KiB) Downloaded 344 times
pdftex: Adobe not displaying correct page number
See also http://www.tex.ac.uk/cgi-bin/texfaq2htm ... pagelabels