我读将参考书目项目放在框架底部并尝试仅用一个条目创建自己的.bib
文件。该条目没有什么特别之处:
@book{Saussure1995,
Author = {Ferdinand de Saussure},
Origyear = {1916},
Publisher = {Payot},
Title = {Cours de Linguistique G{\'e}n{\'e}rale},
Year = {1995}}
然而,当我尝试下面的 MWE 时,我并没有真正明白将参考书目项目放在框架底部显示,而我只得到Saussure1995
粗体字(我用于条目的标签),没有任何引用详细信息。可能是什么问题?
\documentclass{beamer}
\usepackage{biblatex}
\bibliography{example2}
\begin{document}
\begin{frame}
Hello,World\footfullcite{Saussure1995}
\end{frame}
\end{document}
答案1
回答这个问题真的很难(例如,投影仪幻灯片末尾的参考文献(Endnote 导出为文本文件)),下面是我经过反复试验后提出的一种 hack(如果有人能提出除了这种 hack 之外的其他建议,我认为这将真正帮助社区):
\documentclass{beamer}
\usepackage{biblatex}
\begin{document}
\begin{frame}
Hello,World\footfullcite{Write something here, anything you like}
\end{frame}
\end{document}
请注意,使用 代替\footcite
会\footfullcite
产生相同的输出。
答案2
在这些情况下,我会这样做:
\documentclass{beamer}
\usepackage[absolute,overlay]{textpos}
\usepackage[style=authoryear,
doi=false,
isbn=false,
url=false,
firstinits=true]{biblatex}
\usepackage{calc}
\addbibresource{biblio.bib}
\newcommand\FrameText[1]{%
\begin{textblock*}{\paperwidth}(\textwidth-\widthof{#1},0.92\textheight)\raggedright #1\hspace{0.5em}
\end{textblock*}}
\begin{document}
\begin{frame}
\frametitle{Test}
\FrameText{\parencite{Saussure1995}}
\end{frame}
\end{document}