Text Formatting ⇒ Bibliography Style »plain« without Page Numbers in Reference
Bibliography Style »plain« without Page Numbers in Reference
I am using the cite package and \bibliographystyle{plain} style for my references. Unfortunately I have been editing my thesis in different machines, and it seems that they have slightly different version of miktex (one has 2.7 and the other has 2.8). I am guessing that the citation package has been updated in the most recent version, because when I compile my project using the 2.8 version I see page numbers in my References.
Essentially it shows the page number that the reference appears in the text.
For example :
[5] Information about the Google WiFi Project. http://en.wikipedia.org/
wiki/Google_WiFi/. 7
(In page 7 i refer to the above)
Can I turn that feature off in the recent version? Is there any parameter that I could use in \bibliographystyle{plain} or when I use the cite package?
thanks a lot in advance
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
Bibliography Style »plain« without Page Numbers in Reference
Code: Select all
\RequirePackage[hyperpageref]{backref}
\renewcommand*{\backref}[1]{}
\renewcommand*{\backrefalt}[4]{
\ifcase #1
{}
\or
(p.~#2)
\else
(p.~#2)
\fi}
Code: Select all
\RequirePackage[hyperpageref]{backref}
\renewcommand*{\backref}[1]{}
\renewcommand*{\backrefalt}[4]{
\ifcase #1
{}
\or
{}
\else
{}
\fi}
Cheers
Distribution: TexLive
Editor: Kile
Re: Bibliography Style »plain« without Page Numbers in Refer
I will test it and report back. However, I would prefer using an option in the bibliographystyle or somewhere else instead of editing it manually, because this might create problems in the different version of miktext I am having :-/
maybe downgrading to miktex 2.7 so that all my machines run the same version is a solution here...