logo

BiBTeX에서 저자 이름 생략하지 않는 방법 📂論文作成

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

コード

biblatexでは基本的に著者が4人以上の場合、et al.で省略される。

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

\begin{document}

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

\end{document}

オプション maxbibnamesに適当な大きな数字を入れると、著者名をすべて表示することができる。

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

\begin{document}

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

\end{document}