Tagged Questions
1
vote
0answers
51 views
Roman number not showing with \pageref [closed]
I tried to use the \pageref to show page number when referencing to a figure/table, it works fine where I have arabic number but for the tables that appear in my appendix the numbers are not showing. ...
4
votes
3answers
123 views
redefine \ref so that it also shows page number?
i was idly wondering instead of having see Section \ref{labelname} produces
see Section 4.1.1
i could make it so that see Section \ref{labelname} produces
see Section 4.1.1 (p65)
is this ...
0
votes
0answers
53 views
How to compose and compile separate .tex files into a single article/book? [duplicate]
Possible Duplicate:
How can I divide my book into different project without repeating myself?
I want to compose and compile separate .tex files without repeat the preamble in every source ...
5
votes
1answer
84 views
How can I conditionally include the page number in a cross-reference (when the object referenced is on a different page)?
When a cross-reference to a figure is not on the same page as the figure, I would like to include the page number in the figure. But when they are on the same page, this is redundant--and I want to ...
2
votes
2answers
230 views
Test equality between number of the current page and the one of one reference indicated
In the following code, I have one problem with the test \ifthenelse{\equal{\pageref{#1}}{\thepage}}{...}{...}. Why doesn't this detect the equality hoped if the reference is in the same page where it ...
4
votes
2answers
310 views
How can I add extra \pagemark that marks the number of the page where current chapter starts and where it ends?
I'm using KOMA-Script scrbook class. And scrpage2 package for headings:
\usepackage{scrpage2}
\clearscrheadfoot
\pagestyle{scrheadings}
\cfoot[\pagemark]{\pagemark}
\chead[]{\headmark}
I want to ...
5
votes
1answer
164 views
How to find absolute page number as an integer?
Is there a simple way to retrieve an absolute page number from a label, where by absolute I mean counting all pages as integers sequentially starting from the first page of the document, without any ...
0
votes
1answer
280 views
Query on the \pageref command
I am trying to use the \pageref command and although it seems to work appropriately and finds the correct page number, for some reason (unknown to me..) it causes big spaces before and after the page ...
22
votes
5answers
2k views
How to use \pageref{foo} as a number?
What I want to do is to show a "progress bar" in the header to show how far you are in the document, by making a rule with width pagenumber divided by total pages times the paper width.
This is what ...