I would like the entire bibliography to have an empty page style in my document (which means remove the headers and page numbers).
I used the command \renewcommand{\bibsetup}{\thispagestyle{empty}\pagestyle{empty}} from Remove page number from the first page of bibliography which successfully removes the style from the first and all subsequent pages of the bibliography except for the last page.
I created a minimal working example that produces the following output:
As you can see, the first page of the references has no style. However, the second page (which in this case is the last one) has the page number at the bottom.
Note that this happens also i) if I have more than just two bibliography pages, and ii) for the intermediate bibliographies at the end of each of my chapters.
I am writing a thesis (memoir class) and am using the fancyhdr package, in case this is relevant.
Any suggestion on what might be going on? Thanks a lot!
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[
backend=biber,
style=ieee,
citestyle=numeric-comp,
backrefstyle = none
]{biblatex}
\renewcommand{\bibsetup}{\thispagestyle{empty}\pagestyle{empty}}
\addbibresource{bibli.bib}
\title{Minimal working example}
\begin{document}
\section{Introduction}
coordinates~\cite{li20143d,pavllo20193d}, predictions~\cite{pavlakos2016coarse,varol2018bodynet}, models~\cite{tome2017lifting} encoding~\cite{kanazawa2018end,bogo2016keep} information~\cite{zhou2017towards,habibie2019wild} training~\cite{rhodin2018learning,qiu2019cross}
a \cite{andriluka20142d,lin2014microsoft} markers \cite{sigal2010humaneva,h36m_pami} multi \cite{Joo_2015_ICCV,mehta2017monocular} cameras~\cite{shu2016learning} free~\cite{chen2016synthesizing,varol2017learning,tome2019xr} camera~\cite{taylor2000reconstruction,bourdev2009poselets,pavlakos2018ordinal,ronchi2018s} camera \cite{rhodin2018unsupervised} point \cite{sermanet2017time,mitra2019multiview}
\newpage
\printbibliography[heading=bibintoc]
\end{document}


\pagestyle{empty}. Try adding an extra line between\newpageand\printbibliography. If that doesn't work, debugging will have to be undertaken inarticle.clsandbiblatex.sty. – barbara beeton Mar 28 '20 at 02:34