
\nocite
참고문헌 항목을 인쇄하지만 인용문을 각주에 그대로 넣는 의미에서 ? 의 동작과 유사한 매크로가 있습니까 ? \footfullcite
슬라이드 어딘가에 각주 위 첨자와 유사하지만 작동하지 않습니다 beamer
.
슬라이드 하단에 일부 참조 번호를 표시하고 싶지만 슬라이드에 특별히 참조 번호를 넣고 싶지는 않습니다. 대신, 슬라이드 맨 아래(각주)에 참조를 표시하고 싶습니다.
biblatex
운없이 매뉴얼을 읽었습니다 . 어떤 아이디어나 제안이 있나요?
답변1
"참조 번호"가 각주 표시를 의미하는 경우 \footfullcite
표시를 억제하는 변형을 정의할 수 있습니다.
\newrobustcmd*{\footfullcitenomark}{%
\AtNextCite{%
\let\thefootnote\relax
\let\mkbibfootnote\mkbibfootnotetext}%
\footfullcite}
다음은 두 가지 변형을 보여주는 예입니다. 하나는 표시만 억제하고 다른 하나는 들여쓰기 없이 각주를 인쇄합니다.
\documentclass{beamer}
\usepackage{biblatex}
\newrobustcmd*{\footfullcitenomark}{%
\AtNextCite{%
\let\thefootnote\relax
\let\mkbibfootnote\mkbibfootnotetext}%
\footfullcite}
% based on default footnote template from beamerinnerthemedefault.sty
\defbeamertemplate*{footnotetext}{default}{%
%\parindent 1em\noindent%
\raggedright
%\hbox to 1.8em{\hfil\insertfootnotemark}%
\insertfootnotetext\par}
\newrobustcmd*{\footfullcitenomarkleft}{%
\AtNextCite{%
\setbeamertemplate{footnote}{\usebeamertemplate{footnotetext}}%
\let\mkbibfootnote\mkbibfootnotetext}%
\footfullcite}
\addbibresource{biblatex-examples.bib}
\setbeamertemplate{navigation symbols}{}
\begin{document}
\begin{frame}
\vspace*{0.5\textheight}
Filler.\footfullcite{companion}
Filler.\footfullcitenomark{companion}
Filler.\footnote{\fullcite{companion}}
Filler.\footfullcitenomarkleft{companion}
\end{frame}
\end{document}