Text FormattingInclude page numbers to the included PDF pages

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Zoe
Posts: 1
Joined: Tue May 14, 2013 12:10 pm

Include page numbers to the included PDF pages

Post by Zoe »

How to include page numbers to the included PDF files in my file.

I used

Code: Select all

\usepackage{pdfpages}
\includepdf[pages=-]{SupportingInfo_Coordinates}
to include my pdf file into my .tex file. I realised that all the pages from my PDF file don't have page numbers. Is there a way of inserting pages numbers on these pages? Any suggestions will be appreciated. Thanks in advance!

-Zoe
Last edited by cgnieder on Tue May 14, 2013 8:37 pm, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
tommytex
Posts: 39
Joined: Wed Jan 23, 2013 10:04 pm

Include page numbers to the included PDF pages

Post by tommytex »

hi,

do you have page numbers on the included pdf's?
If you want to include the pdf files like a 1-page-image (page numbers produced by latex then), use

Code: Select all

\includegraphics
(you might set scale option to 0.9)

try

Code: Select all

\phantomsection 
\addcontentsline{toc}{section}{Your included pdf file}%
\includepdf[pages={1-2}]{includedpdf.pdf} 
if you want your pdf files included by includepdf to be listed in the TOC

tommytex :ugeek:

----------------------
references

http://de.wikibooks.org/wiki/LaTeX-W%C3 ... includepdf
http://de.comp.text.tex.narkive.com/GtQ ... includepdf
http://www.komascript.de/node/1531
Post Reply