Generalpagenumbering style and page counter

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
corderin
Posts: 77
Joined: Sun Dec 14, 2008 2:27 pm

pagenumbering style and page counter

Post by corderin »

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!

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

pagenumbering style and page counter

Post by gmedina »

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):

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,...
corderin
Posts: 77
Joined: Sun Dec 14, 2008 2:27 pm

Re: pagenumbering style and page counter

Post by corderin »

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.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Re: pagenumbering style and page counter

Post by gmedina »

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,...
Post Reply