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}