How do I remove this? Do I have to modify the BST file or add something in the preamble?F. J. DiSalvo, “Thermoelectric Cooling and Power Generation,” Science, vol. 285,
no. 5428, pp. 703–706, 1999. 1.1
BibTeX, biblatex and biber ⇒ Remove the section number at the end of each reference.
Remove the section number at the end of each reference.
I'm using the bibliography style IEEETR and at the end of each individual reference it puts the section that the reference appears in:
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Remove the section number at the end of each reference.
It depends on how you actually do it. For example, if you use
Stefan
biblatex
, you could add the option backref=false
to biblatex
.Stefan
LaTeX.org admin
Remove the section number at the end of each reference.
Not sure what you mean by "It depends on how you actually do it". I use natbib.
This is my relevant preamble:
This is my relevant preamble:
Code: Select all
\documentclass[a4paper,12 pt]{report}%,aps,pra,nofootinbib
\usepackage{float,geometry,amsmath,amsfonts,booktabs,pdfsync,setspace,titlesec,}
\usepackage[pdftex]{graphicx}
\usepackage[colorlinks,linkcolor=black,citecolor=blue,backref]{hyperref}
\usepackage[numbers,sort&compress]{natbib}
\usepackage[nottoc,numbib]{tocbibind}
\usepackage{datetime} \newdateformat{monthyear}{\THEMONTH \THEYEAR}
\def\chapterautorefname{Section}
\def\sectionautorefname{Section}
\def\subsectionautorefname{Section}
\begin{document}
\input{thesis_titlepage}
\clearpage
%\tableofcontents
\clearpage
%\listoffigures
%\clearpage
%\listoftables
%\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\include{thesis_introduction}
%The following are all under the 'Lit review' chapter
\include{thesis_theory}
\include{thesis_applications}
\include{thesis_materials}
\include{thesis_experimental}
\include{thesis_results1}
%\include{thesis_results-comp}
\include{thesis_results2}
\include{thesis_results4}
\newpage
\renewcommand\bibname{References}
\bibliographystyle{ieeetr}
\bibliography{electroceramics}
\end{document}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Remove the section number at the end of each reference.
You are setting package option
backref
for hyperref, delete it.The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Remove the section number at the end of each reference.
I meant it exactly like this. How should I have guessed before, that you useJacko50 wrote:Not sure what you mean by "It depends on how you actually do it". I use natbib.
This is my relevant preamble
natbib
, and that you use hyperref
with backref
option. My best guess was backref
, but with biblatex
, without other information.Generally, just provide relevant code and we will know enough.

Stefan
LaTeX.org admin
Re: Remove the section number at the end of each reference.
Thanks all for your help. Problem solved.