전체 참고문헌에 빈 스타일 적용

전체 참고문헌에 빈 스타일 적용

내 문서에서 전체 참고문헌에 페이지 스타일을 적용하고 싶습니다 empty(머리글과 페이지 번호 제거).

\renewcommand{\bibsetup}{\thispagestyle{empty}\pagestyle{empty}}나는 다음의 명령을 사용했습니다 .참고문헌의 첫 페이지에서 페이지 번호 제거참고문헌의 첫 번째 페이지와 모든 후속 페이지에서 스타일을 성공적으로 제거합니다.마지막 페이지를 제외하고.

다음 출력을 생성하는 최소한의 작업 예제를 만들었습니다.

여기에 이미지 설명을 입력하세요

보시다시피, 참고문헌의 첫 페이지에는 스타일이 없습니다. 그러나 두 번째 페이지(이 경우 마지막 페이지)의 하단에는 페이지 번호가 있습니다.

이런 일도 발생하니 참고하세요나)참고문헌 페이지가 두 개 이상인 경우ii)각 장 끝에 있는 중간 참고문헌을 확인하세요.

저는 논문( memoir클래스) 을 작성 중이고 fancyhdr관련이 있는 경우 패키지를 사용하고 있습니다.

무슨 일이 일어나고 있는지에 대한 제안이 있습니까? 정말 감사합니다!

\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}

답변1

bibliography이는 표준 환경 의 결함으로 간주될 수 있습니다 biblatex. 수업 에서는 article참고문헌이 별도의 페이지에서 시작하도록 설계되지 않았기 때문에 귀하가 요청하는 내용은 실제로 적절하지 않습니다. 그러나 문제는 book및 에서 지속되며 memoir아래 해결 방법은 모든 경우에 작동합니다. 즉, 참고 문헌의 내부 환경이 끝난 후 환경 의
기본 기본 버전을 패치(업데이트: 이전 재정의보다 더 좋음) 로 추가 했습니다 .biblatexbibliography\clearpagelist

샘플 출력

\documentclass{book}

\usepackage[utf8]{inputenc}
\usepackage[
    backend=biber,
    style=ieee,
    citestyle=numeric-comp,
    backrefstyle = none
]{biblatex}

\renewcommand{\bibsetup}{\thispagestyle{empty}\pagestyle{empty}}

\addbibresource{biblatex-examples.bib}

\makeatletter
\patchcmd{\blx@endenv@bibliography}{\endlist}{\endlist\clearpage}{}{}
\makeatother

\title{Minimal working example}

\begin{document}

\section{Introduction}
\nocite{*}

\printbibliography[heading=bibintoc]

\end{document}

수업 을 듣는 중이라면 먼저 article추가하고 싶을 것입니다.\clearpage\printbibliography

답변2

참고문헌에서 제목을 분리하고 페이지 스타일 명령을 다음 사이에 배치하겠습니다.

\documentclass{memoir}
\usepackage[style=ieee, citestyle=numeric-comp, backrefstyle=none]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\tableofcontents
\nocite{*}
\printbibheading[heading=bibintoc]
\thispagestyle{empty}
\pagestyle{empty}
\printbibliography[heading=none]
\end{document}

관련 정보