BibTeX, biblatex and biberHow to use backref to remove page reference in citations

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Shadew
Posts: 2
Joined: Thu Jan 27, 2011 12:43 pm

How to use backref to remove page reference in citations

Post by Shadew »

Hello,

I'm using BiBTex to manage my citations (with a .bib file) and back references are activated by default. I'm trying to remove them, but I don't know how to do. I tried to load the biblatex package with the backref=false option, but I get the error message "backref, incompatible package". Then I tried to use the backref package and the backrefsetup{disable} controle sequence, but I get the error message "Undefined control sequence".

Does someone know how to remove the back reference in citations please ?

Thank you !!

Code: Select all

\documentclass[12pt]{Classes/aesm_edspia}
\usepackage{rotating}
\usepackage[english,french]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{lmodern}%font modern
\usepackage{subfigure}
\usepackage{graphicx}
\newtheorem{definition}{Définition}[section]
\usepackage{listings}
\usepackage{lscape}
\usepackage{pbox}
\usepackage[final]{pdfpages}
\usepackage{acronym} 
%\usepackage[hyperpageref]{backref}
%\usepackage[backref=false]{biblatex}

\usepackage{multirow} %% pour regrouper un texte sur plusieurs lignes dans une table
\usepackage{color}
\usepackage{shorttoc} %% pour plusieurs tables des matières par la commande \shorttableofcontents{Titre}{profondeur}.
\usepackage{setspace} %interligne simple, double etc...
\usepackage{fancybox}
\usepackage[leftcaption]{sidecap}
\usepackage[labelsep=endash, textfont={footnotesize, singlespacing}, margin=10pt, format=plain, labelfont=bf]{caption}
\usepackage[Conny]{fncychap} %en tete chapitrage
\hbadness=10000% pb d'overfull box réglé
\hfuzz=50pt
\pdfcompresslevel9 % pour compresser le pdf final au maximum
\pdfoptionpdfminorversion=5 % pour accepté les images PDF version 1.5 (ex: celles produites par Office 2007)
\def\underscore{\char`\_}
\makeatletter
\renewcommand{\thesection}{\arabic {section}}
\renewcommand{\SC@figure@vpos}{c}% centrer verticalement le caption avec le package sidecap...
\renewcommand{\fnum@figure}{\small\textbf{Figure~\thefigure}}
\renewcommand{\fnum@table}{\small\textbf{Tableau~\thetable}}
\makeatother

\usepackage{geometry}
\geometry{reset,inner=25mm,top=15mm,total={130mm,215mm},includeheadfoot}%,showframe}

\newcommand\T{\rule{0pt}{7ex}}       % Top strut
\newcommand\B{\rule[-5ex]{0pt}{0pt}} % Bottom strut
\newcommand\TB{\T\B}

\def\thechapter{\Roman{chapter}}

\usepackage[acronym,nonumberlist]{glossaries}

\renewcommand{\acronymname}{Acronymes}
\renewcommand*{\glspostdescription}{}
\makeglossaries
\newglossaryentry{css}{name={CSS}, description={Cascading Style Sheets}}

\newglossarystyle{clong}
{%
 \renewenvironment{theglossary}%
     {
     
     \begin{longtable}{p{.2\linewidth}p{\glsdescwidth}}}%
     {\end{longtable}}%
  \renewcommand*{\glossaryheader}{}%
  \renewcommand*{\glsgroupheading}[1]{}%
  \renewcommand*{\glossaryentryfield}[5]{%
    \textbf{\glstarget{##1}{##2}} & ##3\glspostdescription\space ##5\\}%
  \renewcommand*{\glossarysubentryfield}[6]{%
     & \glstarget{##2}{\strut}##4\glspostdescription\space ##6\\}%
  \renewcommand*{\glsgroupskip}{  \\}%

}

\newlength{\plarg}
\setlength{\plarg}{14cm}
\newlength{\glarg}
\setlength{\glarg}{17cm}

\newenvironment{vcenterpage}
{\newpage\vspace*{\fill}}
{\vspace*{\fill}\par\pagebreak}

\usepackage{a4wide}
\usepackage{lipsum}

Recommended reading 2024:

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

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: How to use backref to remove page reference in citations

Post by Johannes_B »

Hi, your example is not complete and not compilable. Where can i get the class, is it relevant?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply