다음으로 해결됨파노트패키지.
...
본문의 일부로 각주를 인쇄하는 명령이 있나요? 나는 미주를 사용하여 명령이 배치된 지점의 텍스트에 누적된 메모를 표시하는 방법을 기억하는 것 같습니다. 그러나 내 문서에서는 다음을 광범위하게 사용합니다.각주와 미주 모두, 그래서 그 트릭은 불가능할 것입니다.
명확히하기 위해 이것이 작동하는 방식을 상상합니다 ...
\documentclass{memoir}
\begin{document}
In this paragraph, I wish to make footnotes.\footnote{Just like this.}
Then I wish to invoke a command to print them right there, as if they were
part of the main text, rather than at the bottom like usual.\endnote{I
also need to keep endnotes normal for a page of citations.}
\printFootnotesRightHere
The command must print the footnotes where it is called, and then clear
whatever register contained them, so that a fresh set of footnotes can be
entered.\footnote{Like this new one.}
\printFootnotesRightHere
So even on a single page, there could be several sets of footnotes,
inserted as normal text, just as if they were their own paragraphs or
lists.
\end{document}