I found it very impressed with this display style of the author. My question is how to overlay the fullscreen picture with box of tex ? Thank you in advance
Asked
Active
Viewed 288 times
1
Nguyen Thy
- 427
-
Welcome to TeX.Stackexchange! – samcarter_is_at_topanswers.xyz Apr 19 '18 at 11:34
-
2Possible duplicate of How to insert a background image in a beamer frame? – Henri Menke Apr 19 '18 at 11:42
-
1@HenriMenke Not really, the hard part is not the image but the semi-transparent block – samcarter_is_at_topanswers.xyz Apr 19 '18 at 11:44
1 Answers
3
\documentclass{beamer}
\usepackage{tikz}
\setbeamercolor{title}{bg=white}
\begin{document}
\begin{frame}[plain]%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{tikzpicture}[remember picture,overlay]
\node[at=(current page.center)]{
\includegraphics[width=\paperwidth]{Leonardo_da_vinci,_Drawings_of_Water_Lifting_Devices}
};
\pgfsetfillopacity{0.5}
\node[at=(current page.center)]{
\begin{beamercolorbox}[sep=0.5cm,wd=.8\paperwidth]{title}%
\centering
\pgfsetfillopacity{1}%
\LARGE
Your text
\end{beamercolorbox}
};
\end{tikzpicture}
\end{frame}
\end{document}
(using https://commons.wikimedia.org/wiki/File:Leonardo_da_vinci,_Drawings_of_Water_Lifting_Devices.jpg)
samcarter_is_at_topanswers.xyz
- 158,329
-
-
@NguyenThy Change the position in
\node[at=(current page.center)]{If it should be at the bottom:current page.south– samcarter_is_at_topanswers.xyz Apr 21 '18 at 13:23
