
일반적으로 참고문헌에 표시되는 전체 인용이 필요하지만 대신 각주에 표시됩니다(각주를 직접 만들어도 괜찮습니다.). 나는 bibentry 패키지를 시도했지만 작동시키지 못했습니다. (처음에는 비호환성 문제가 발생했습니다(https://tex.stackexchange.com/a/424736/132815). 이 문제를 해결한 후에도 여전히 아무것도 출력되지 않습니다.\bibentry 출력 없음그리고https://tex.stackexchange.com/a/195327/132815. 나는 이미 스타일 변경을 포함하여 제안된 모든 것을 시도했지만 plain
여전히 \nobibliography{bib}
아무것도 \bibliographi{bib}
출력되지 않습니다.)
빌드 순서를 변경할 필요가 없는 작업 방법이 있습니까(biblatex가 분명히 그렇듯이).
Bibentry로 작업하려는 나의 시도. 출력이 생성되지 않습니다.
\documentclass[10pt]{article}
\pdfoutput=1
\usepackage[utf8]{inputenc}
\def\beqselinestretch{1.2}
\usepackage{xcolor}
\usepackage{amsmath,amssymb,mathrsfs,bm,setspace,xspace,soul,empheq}
\usepackage{graphicx}
\usepackage{physics} % careful breaks \Tr when breaking lines.
\usepackage{colonequals}
\usepackage{float}
\usepackage{comment}
\usepackage{siunitx}
\usepackage{tablefootnote}
\usepackage{subcaption}
\usepackage{braket}
\usepackage{color}
\usepackage{dcolumn}
\usepackage{multirow}
\usepackage{geometry}
\usepackage{tabularx}
\usepackage{bibentry}
% WITHOUT THE FOLLOWING LINE WE GET A LONELY ITEM ERROR:
\makeatletter\let\saved@bibitem\@bibitem\makeatother
\usepackage[colorlinks, linkcolor=darkblue, citecolor=darkblue, urlcolor=darkblue, linktocpage%,backref=page
]{hyperref}
% WITHOUT THE FOLLOWING LINE WE GET A LONELY ITEM ERROR:
\makeatletter\let\@bibitem\saved@bibitem\makeatother
\usepackage{amsmath,amssymb,graphicx,enumerate,bbm}
\usepackage{booktabs}
\usepackage[T1]{fontenc} % for ditto symbol
\newcommand*{\dittostraight}{---\textquotedbl---}
\usepackage[english]{babel}
\usepackage{csquotes}
\MakeOuterQuote{"}
\begin{filecontents}{mytestbib.bib}
@book{goossens93,
author = "Frank Mittelbach and Michel Goossens and Johannes Braams and David Carlisle and Chris Rowley",
title = "The {LaTeX} Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
\end{filecontents}
\begin{document}
\newgeometry{rmargin=1.52cm,margin=1.52cm}
bla
\bibentry{goossens93}
\bibliographystyle{plain}
\nobibliography{mytestbib}
\end{document}