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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Remove the section number at the end of each reference.
biblatex
, you could add the option backref=false
to biblatex
.Stefan
Remove the section number at the end of each reference.
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.
backref
for hyperref, delete it.- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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