BibLaTeX 출력 단축

BibLaTeX 출력 단축

다음 MWE

\documentclass{scrartcl}

\usepackage{filecontents}    
\usepackage[backend=biber,sorting=none,citestyle=numeric-comp,giveninits=true,doi=false]{biblatex}
\addbibresource{Refs.bib}
\renewbibmacro{in:}{}
\AtEveryBibitem{\clearfield{number}}

\begin{document}

\nocite{*}
\printbibliography

\begin{filecontents}{Refs.bib}

@article{reuter2002renormalization,
  title={Renormalization group flow of quantum gravity in the Einstein-Hilbert truncation},
  author={Reuter, M and Saueressig, Frank},
  journal={Physical Review D},
  volume={65},
  number={6},
  pages={065016},
  year={2002},
  publisher={APS},
  doi={10.1103/PhysRevD.65.065016},
  archivePrefix={arXiv},
  eprint={hep-th/0110054}
}

\end{filecontents}

\end{document}

인쇄물

M Reuter와 Frank Saueressig. “아인슈타인-힐베르트 절단에서 양자 중력의 재정규화 그룹 흐름”. In: 물리적 검토 D 65.6(2002), p. 065016. doi:10.1103/PhysRevD.65.065016. arXiv:hep-th/0110054.1

너무 깁니다. 제거하고 싶습니다

M Reuter 및 F 등급 Saueressig. “아인슈타인-힐베르트 절단에서 양자 중력의 재정규화 그룹 흐름”. In: 물리적 검토 D 65 .6 (2002), p. 065016. doi:10.1103/PhysRevD.65.065016. arXiv: hep-th/0110054.1

그 결과 (볼드체 볼륨 번호 참고)

M. Reute, F. Saueressig. “아인슈타인-힐베르트 절단에서 양자 중력의 재정규화 그룹 흐름”. 물리. 신부님.디 65(2002), 065016. hep-th/0110054.

옵션 giveninits=truedoi=false명령을 \renewbibmacro{in:}{}추가 \AtEveryBibitem{\clearfield{number}}하면

M. Reuter 및 F. Saueressig. “아인슈타인-힐베르트 절단에서 양자 중력의 재정규화 그룹 흐름”. 물리적 검토 D 65(2002), p. 065016.arXiv:hep-th/0110054.

더 좋지만 아직은 아닙니다. 누군가 나를 도와줄 수 있나요?

  • 마지막 저자 앞의 "and"를 제거하고,
  • 저널 이름을 축약하여,
  • 굵은 볼륨 번호를 인쇄하고,
  • "p"를 제거하세요. 또는 "pp." 페이지 번호나 범위 앞에
  • eprint 번호 앞의 "arXiv"를 제거하시겠습니까?

답변1

\documentclass{scrartcl}

\usepackage{filecontents}    
\usepackage[backend=biber,sorting=none,citestyle=numeric-comp,giveninits=true,doi=false]{biblatex}
\addbibresource{Refs.bib}
\renewbibmacro{in:}{}
\AtEveryBibitem{\clearfield{number}}

\renewcommand*{\finalnamedelim}{\addcomma\addspace}
\DeclareFieldFormat[article]{volume}{\mkbibbold{#1}} 
\DeclareFieldFormat{pages}{#1}
\newcommand\prd{Phys.~Rev.~D}

\makeatletter
\DeclareFieldFormat{eprint:arxiv}{%
%  arXiv\addcolon\space
  \ifhyperref
    {\href{http://arxiv.org/\abx@arxivpath/#1}{%
       \nolinkurl{#1}%
       \iffieldundef{eprintclass}
         {}
         {\addspace\texttt{\mkbibbrackets{\thefield{eprintclass}}}}}}
    {\nolinkurl{#1}
     \iffieldundef{eprintclass}
       {}
       {\addspace\texttt{\mkbibbrackets{\thefield{eprintclass}}}}}}
\makeatother

\begin{document}

Reference: \cite{reuter2002renormalization}

\printbibliography

\begin{filecontents}{Refs.bib}

@article{reuter2002renormalization,
  title={Renormalization group flow of quantum gravity in the Einstein-Hilbert truncation},
  author={Reuter, M and Saueressig, Frank},
  journal={\prd},
  volume={65},
  number={6},
  pages={065016},
  year={2002},
  publisher={APS},
  doi={10.1103/PhysRevD.65.065016},
  archivePrefix={arXiv},
  eprint={hep-th/0110054}
}

\end{filecontents}

\end{document}

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

관련 정보