General ⇒ pagenumbering style and page counter
pagenumbering style and page counter
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!
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
pagenumbering style and page counter
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 357 times