在 中beamer
,我的参考书目框架中有一个背景图。我必须将参考书目放在 中textblock
才能正确定位它(wtr 背景图)。我也想允许框架中断,但allowframebreaks
不适用于textblock
:
\documentclass[10pt,xcolor=table]{beamer}
\usetheme{CambridgeUS}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage[absolute,overlay]{textpos}
\setlength{\TPHorizModule}{1mm}
\setlength{\TPVertModule}{1mm}
\usepackage{graphicx}
\begin{document}
\begin{frame}{main}
ciao~\cite{Aochi_et_al_2013}~\cite{Gatti_et_al_2015}~\cite{Smerzini_et_al_2016}~\cite{Argyroudis_et_al_2014}
\end{frame}
{
\usebackgroundtemplate{\includegraphics[width=\paperwidth]{github_logo_flag.png}}
\begin{frame}[allowframebreaks]
\bibliographystyle{plain}
\begin{textblock}{70}(55,95)
\tiny\bibliography{MyCollection1.bib}
\end{textblock}
\end{frame}
}
\end{document}
我的 bib 文件(MyCollection1.bib)如下
% Encoding: ISO-8859-1
@Article{Aochi_et_al_2013a,
Title = {{Finite difference simulations of seismic wave propagation for the 2007 Mw 6.6 Niigata-ken Chuetsu-Oki earthquake: Validity of models and reliable input ground motion in the near field}},
Author = {Aochi, H. and Ducellier, A. and Dupros, F. and Delatre, M. and Ulrich, T. and {de Martin}, F. and Yoshimi, M.},
Journal = {Pure and Applied Geophysics},
Year = {2013},
Note = {Springer Verlag (Germany)},
Number = {(1-2)},
Pages = {43-64},
Volume = {170},
Doi = {10.1007/s00024-011-0429-5},
Institution = {hal-00980238},
ISBN = {0002401104295},
ISSN = {00334553},
Publisher = {Springer Verlag (Germany)},
Url = {https://hal-brgm.archives-ouvertes.fr/hal-00980238}
}
@InProceedings{Argyroudis_et_al_2014,
Title = {{Seismic fragility curves of shallow tunnels considering SSI and aging effects}},
Author = {Argyroudis, S and Tsinidis, G and Gatti, F and Pitilakis, K},
Booktitle = {2\textsuperscript{nd} Eastern European Tunnelling Conference},
Year = {2014},
Pages = {1-10},
Keywords = {fragility analysis,lining corrosion,seismic risk assessment}
}
@InProceedings{Gatti_et_al_2015,
author = {Gatti, Filippo and Lopez-Caballero, Fernando and Clouteau, Didier},
title = {{One-Dimensional Seismic Soil Response at the Nuclear Power Plant of Kashiwazaki-Kariwa during the 2007~{N}iigata-Chuetsu-Oki Earthquake}},
booktitle = {Proceedings of the Fifteenth International Conference on Civil, Structural and Environmental Engineering Computing},
year = {2015},
editor = {Kruis, J. and Tsompanakis, Y. and Topping, B.H.V.},
number = {157},
pages = {1-16},
address = {Stirlingshire, UK,},
publisher = {Civil-Comp Press},
doi = {10.4203/ccp.108.157},
isbn = {0123456789},
issn = {1759-3433},
keywords = {behaviour,kashiwazaki-kariwa,near field effects,nonlinear be-,polarization,strong motions},
}
@Misc{Smerzini_et_al_2016,
author = {Smerzini, C. and Gatti, F. and Paolucci, R.},
title = {{An artificial neural network approach to support physics-based generation of broadband earthquake ground motions}},
month = {Septembre},
year = {2016},
address = {Trieste, IT},
booktitle = {Proceedings of the 35\textsuperscript{th} General Assembly of the European Seismological Commission},
number = {707},
}
答案1
您的图片位置看起来好像文本必须向下移动。如果这还不够,我宁愿修改框架的边距以限制文本区域,然后再尝试打破幻灯片上的某些环境。
\documentclass[10pt,xcolor=table]{beamer}
\usetheme{CambridgeUS}
\begin{document}
{
\usebackgroundtemplate{\includegraphics[width=\paperwidth]{github}}
\addtolength{\headsep}{2cm}
\begin{frame}[allowframebreaks]
\nocite{*}
\bibliographystyle{plain}
\tiny\bibliography{test.bib}
\end{frame}
}
\end{document}