Tagged Questions
3
votes
1answer
67 views
Hyperref marks lastpage as a reference
I am using the hyperref package, lastpage package and fancyhdr package. My problem is, that the number showing the amount of total pages (in the footer) is red and works like a link to the front ...
3
votes
0answers
35 views
Is there any package that supports multiple last pages [duplicate]
Possible Duplicate:
How do I have two sets of page numbers in a document?
I am trying to make one single file that contains several small components. Each small parts need its own last ...
1
vote
2answers
164 views
Setting page number with fancy without lastpage package
I am using the following code to generate footer with fancy to show the page number
\documentclass[twoside,a4paper,10pt]{article}
\usepackage{lastpage}
\usepackage{fancyhdr}
\pagestyle{fancy}%
...
2
votes
1answer
107 views
fancyfoot on the last page
On the last page of my document, I need to add Next Review Date: blah blah. If I add the text at the bottom of the document, there is a possibility that the text might appear on a new page on its ...
4
votes
2answers
2k views
How can I get no header but still get “page x of y” in footer?
I'd like to get "page x of y" in a footer on each page, and the way I've found is to use:
\usepackage{fancyhdr}
\usepackage{lastpage}
\pagestyle{fancy}
\cfoot{Page \thepage\ of \pageref{LastPage}}
...