맞춤형 비버 참고문헌: 번호 매기기 앞에 점을 찍으세요.

맞춤형 비버 참고문헌: 번호 매기기 앞에 점을 찍으세요.

biblatex나는 기사에 사용된 참고문헌 스타일을 바꾸려고 했습니다 (내 취향에 비해 너무 많은 내용이 인쇄되었습니다). 그런데 어쩐지 목록의 숫자 앞에 아주 이상한 점이 생겼습니다. 내가 무엇을 잘못하고 있으며 어떻게 해결할 수 있습니까? 자세한 내용은 MWE 및 출력을 참조하세요.

\documentclass{article}
\usepackage[sorting=ydnt,backend=biber,maxnames=10,defernumbers,date=year]{biblatex}
\usepackage{filecontents}

\begin{filecontents}{file.bib}
@Article{Ferdinandy2015,
  Title                    = {HIV competition dynamics over sexual networks: first comer advantage conserves founder effects.},
  Author                   = {Ferdinandy, Bence and Mones, Enys and Vicsek, Tam{\'{a}}s and M{\"{u}}ller, Viktor},
  Journal                  = {PLoS Comput Biol},
  Year                     = {2015}
}
@article{Ferdinandy20121207,
title = "Landing together: How flocks arrive at a coherent action in time and space in the presence of perturbations ",
journal = "Physica A: Statistical Mechanics and its Applications ",
volume = "391",
number = "4",
pages = "1207 - 1215",
year = "2012"
}
@article{1,
title = "Landing together: How flocks arrive at a coherent action in time and space in the presence of perturbations ",
journal = "Physica A: Statistical Mechanics and its Applications ",
volume = "391",
number = "4",
pages = "1207 - 1215",
year = "2011"
}
\end{filecontents}

\addbibresource{file.bib} % Specify the bibliography file to include publications

\DeclareBibliographyDriver{article}{%
    \printnames{author}\setunit{\space}%
  \printfield{title}\setunit{\space}%
  \usebibmacro{journal+issuetitle}%

  \par\vspace{0.3\baselineskip}
  }


\begin{document}
\section{publications}
\nocite{*}
\defbibheading{empty}{}
\subsection{papers}
\printbibliography[heading=empty, type=article, resetnumbers=true]

\end{document}

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

답변1

항목을 올바르게 종료하는 것이 중요합니다. 바로 그 목적을 위한 biblatex매크로를 제공합니다 .finentry

항목 사이의 수직 간격은 로 설정할 수 있습니다 \bibitemsep.

fbenceBiblatexFinentry

\documentclass{article}
\usepackage{biblatex}

\begin{filecontents}{\jobname.bib}
    @Article{Ferdinandy2015,
        Title                    = {HIV competition dynamics over sexual networks: first comer advantage conserves founder effects.},
        Author                   = {Ferdinandy, Bence and Mones, Enys and Vicsek, Tam{\'{a}}s and M{\"{u}}ller, Viktor},
        Journal                  = {PLoS Comput Biol},
        Year                     = {2015}
    }
    @article{Ferdinandy20121207,
        title = "Landing together: How flocks arrive at a coherent action in time and space in the presence of perturbations ",
        journal = "Physica A: Statistical Mechanics and its Applications ",
        volume = "391",
        number = "4",
        pages = "1207 - 1215",
        year = "2012"
    }
    @article{1,
        title = "Landing together: How flocks arrive at a coherent action in time and space in the presence of perturbations ",
        journal = "Physica A: Statistical Mechanics and its Applications ",
        volume = "391",
        number = "4",
        pages = "1207 - 1215",
        year = "2011"
    }
\end{filecontents}

\addbibresource{\jobname.bib} % Specify the bibliography file to include publications

\DeclareBibliographyDriver{article}{%
    \printnames{author}\setunit{\space}%
    \printfield{title}\setunit{\space}%
    \usebibmacro{journal+issuetitle}%
    \usebibmacro{finentry}%
}
\renewcommand{\bibitemsep}{2\baselineskip}


\begin{document}
\nocite{*}
\printbibliography

\end{document}

관련 정보