在 Beamer 中更改参考框架标题

在 Beamer 中更改参考框架标题

该文件prop.tex包含以下内容:

\documentclass{beamer}
\usepackage[style=apa,backend=biber,language=american]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{prop_ref.bib}

\usepackage{newcent}

\setbeamertemplate{bibliography entry title}{}
\setbeamertemplate{bibliography entry location}{}
\setbeamertemplate{bibliography entry note}{}

\begin{document}

\frame{\frametitle{The Title}
Qsddhksh  ksjdhfkhs kdjfhkjshf kshjdkfjhs kjdhf~\parencite{aaa01,ccc02}.
Tskdjfskj k hksdhfkjhk~\parencite{ggg08} jsdk hkshjdkfjh skhj kjsdhf
jkhskdhfkhsjkd kjshdkfjh~\parencite{bbb03,ddd04,eee12}.
}

\begin{frame}[allowframebreaks]
\frametitle{References}
\printbibliography
\end{frame}
\end{document}

该文件prop_ref.bib包含以下内容:

@Article{aaa01,
author = "B C Aaaa and F E Dddd",
title = "This is really the title, yes, this is the title, the title, the title, the title, the title, the title, the title, the title, the title",
year = "2001",
volume = "10",
pages = "100-120",
journal = "Some Journal"
}

@Article{ccc02,
author = "G H Cccdddfff",
title = "This is another long title and you call this a long title? Maybe it is not really long",
year = "2002",
volume = "130",
pages = "150-162",
journal = "Some Other Journal"
}

@Article{bbb03,
author = "A S Bbbbbbbb and W Q Rrrrr and G H Cccccc",
title = "This is another long title but it is really longer than usual, but maybe, just maybe, it might have been shorter, really shorter",
year = "2003",
volume = "55",
pages = "250-272",
journal = "The Old Journal"
}

@Article{ddd04,
author = "R D Dddddddddggg",
title = "This is another short title that should have been shorter if I had not made it longer",
year = "2004",
volume = "12",
pages = "160-172",
journal = "Nobody's Journal"
}

@Article{eee12,
author = "R F Eeeeerrr",
title = "I wonder what the title of this article issss sssssssss sssssssssss ssssssssss ssssss ss sssss sssss ssssssssssssssss ssss ssss sssssssss sss ssssssss",
year = "2012",
volume = "12",
pages = "160-172",
journal = "The Journal Journal"
}

@Article{ggg08,
author = "M M GggDddddxxxddddggg",
title = "Ohhhh Wooooo Ooooooooooooooo Wooooooooooo Haaaaaaaaaaaaaaaaa",
year = "2008",
volume = "124",
pages = "190-212",
journal = "What A Journal"
}

当我生成 pdf 文件时,参考框架有标题参考文献参考文献二

是否可以将其更改为参考参考文献(续)

答案1

根据 II 8.1,beamer 模板frametitle continuation存储插入到可中断框架标题末尾的文本。对于您的情况,预定义选项from second适用。

\documentclass{beamer}
\usepackage{lipsum}
\begin{document}

\setbeamertemplate{frametitle continuation}[from second]
\frame[allowframebreaks]{{References}\lipsum}

\setbeamertemplate{frametitle continuation}[from second][(continued)]
\frame[allowframebreaks]{{Bibliography}\lipsum}

\end{document}

如您所见,如果没有提供第二个参数,beamer 排版(续)默认情况下。

相关内容