文献リストが ... の原因
\printbibliography が \end{document} の後ろに記述されているからです。
41:\begin{document}
71:\end{document} % →↓これ以降は処理されません。
86:\printbibliography %backend for bibliography = biber
対策
単純に \end{document} を
\printbibliography の直後に移動すれば当面は直ります。
しかしファイル末に`\end{document} を移動するとエラーになります。
どうやら \href{...}{...} としなければいけないところを
\href{...} だけ記述されていたので、他を参照しつつ仮修正。
--- ../leatest-keep/leatest.tex 2026-05-06 16:02:30.000000000 +0900
+++ leatest.tex 2026-05-06 20:44:19.780496533 +0900
@@ -71 +70,0 @@
-\end{document}
@@ -105 +104 @@
-ORCID iD: \href{http://orcid.org/0000-0002-1550-5314} %remove if you don't have an orcid id
+ORCID iD: \href{http://orcid.org/0000-0002-1550-5314}{0000-0002-1550-5314} %remove if you don't have an orcid id
@@ -107,0 +107,2 @@
+\end{document}
+
@@ -110 +111 @@
-]
+] 多分ゴミ