logo

BiBTeX에서 저자 이름 생략하지 않는 방법 📂Writing

BiBTeX에서 저자 이름 생략하지 않는 방법

Code

In biblatex, the authors are abbreviated as et al. when there are four or more authors.

\documentclass[10pt]{article}
\usepackage{biblatex}

\begin{document}

\begin{refsection}[ref.bib]
\nocite{*}
\printbibliography
\end{refsection}

\end{document}

By placing a sufficiently large number in the maxbibnames option, you can display all author names.

\documentclass[10pt]{article}
\usepackage[maxbibnames=99]{biblatex}

\begin{document}

\begin{refsection}[ref.bib]
\nocite{*}
\printbibliography
\end{refsection}

\end{document}