Hi,
I am using backref to get backreferences in the bibliography.
My document has a preamble with an abstract, acknowledgements and so on...
I have a \cite on this abstract where the pagenumbering is set to roman.
In the rest of the document the pagenumbering is set to arabic.
My problem is that I want the book referenced on the abstract to get a roman page number on the bibliography backreferences pages. But I get only arabic.
I want to get the \backrefpage according to the \pagenumbering!!!!
I hope someone there has a solution!
General ⇒ pagenumbering style and page counter
NEW: TikZ book now 40% off at Amazon.com for a short time.

pagenumbering style and page counter
Hi,
can you please post a minimal working example (MWE) showing the mentioned behaviour? The reason I ask for such a MWE is because the following code (a slight modification of the code that I posted in this other thread of yours) produces the desired result (I attach the pdf file obtained):
can you please post a minimal working example (MWE) showing the mentioned behaviour? The reason I ask for such a MWE is because the following code (a slight modification of the code that I posted in this other thread of yours) produces the desired result (I attach the pdf file obtained):
Code: Select all
\begin{filecontents*}{tbiblio.bib}
@article{mifflin,
author = "R. Mifflin",
title = "Semismooth and semiconvex functions in constrained
optimization",
journal = "Siam Journal on Control",
year = "1977",
volume = "15",
pages = "957--972"
}
@book{winter.periaux.ea,
author = "G. Winter and J. Periaux and M. Galan and P. Cuesta",
title = "Genetic Algorithms in Engineering and Computer
Science",
publisher = "John Wiley and Sons",
address = "Chickester, England",
year = "1995"
}
\end{filecontents*}
\documentclass{article}
\usepackage[english]{babel}
\usepackage[pagebackref=true]{hyperref}
\usepackage{babelbib}
\setbtxfallbacklanguage{english}
\begin{document}
\pagenumbering{roman}
\cite{mifflin}
\newpage
\pagenumbering{arabic}
\cite{mifflin}
\nocite{*}
\newpage
\bibliographystyle{babunsrt-fl}
\bibliography{tbiblio}
\end{document}
- Attachments
-
- test.pdf
- (25.52 KiB) Downloaded 342 times
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: pagenumbering style and page counter
At the moment the only way to get the correct backlink hast been using the book class and defining what is frontmatter and what is mainmatter...it looks like the page counter would be reseted...and now the link points the right page.
Re: pagenumbering style and page counter
Without some code is really difficult to provide effective advise. Please, as I asked before, post a MWE.
1,1,2,3,5,8,13,21,34,55,89,144,233,...