비머 테마에 배치해야 하는 JPEG가 몇 개 있습니다. 그들은
- 표지 이미지 - 표지.jpg: 첫 번째 슬라이드
- 헤더 - header.jpg: 두 번째 슬라이드만
- 바닥글 - footer.jpg: 두 번째 슬라이드에서 끝까지
표지 이미지는 첫 번째 슬라이드에 표시되고, 머리글과 바닥글은 제목 슬라이드(바닥글 뒤)에 표시되며, 바닥글은 모든 후속 슬라이드에 표시됩니다.
나는 예를 포함시켰습니다:
바닥글이 JPEG로 되어 있어서 모든 슬라이드에 표시하고 싶습니다.
지금까지 나는 이것을 페인트로 배열하고 빈 슬라이드를 저장한 다음 \useBackgroundtemplate을 사용했습니다.
\usebackgroundtemplate{%
\includegraphics[width=\paperwidth,height=\paperheight]{frontslide.jpg}}
그러나 이로 인해 이미지가 받아들일 수 없을 정도로 왜곡되었습니다.
아래와 같이 비머 테마를 만들었습니다.
외부: \모드
% Frame title
\defbeamertemplate*{frametitle}{texsx}[1][]
{
\vskip1cm%
\begin{beamercolorbox}[wd=\paperwidth,ht=1.2cm]{frametitle}
\end{beamercolorbox}
}
\mode<all>
안의:
\mode<presentation>
\setbeamertemplate{background canvas}{\begin{tikzpicture}\node[opacity=.9]
{\includegraphics [width=\paperwidth]{slide.png}};
\end{tikzpicture}}
% Title page
\defbeamertemplate*{title page}{cdt}[1][]
{ begin{tikzpicture}[remember picture,overlay] \begin{pgfonlayer}{background} \node at (current page.center) {\includegraphics[width=\paperwidth,height=\paperheight] {frontslide.jpg}}; \end{pgfonlayer}
\end{tikzpicture}}
\mode<all>
색상:
\mode<presentation>
% Settings
\setbeamercolor*{title page header}{fg=white}
\setbeamercolor*{author}{fg=white}
\setbeamercolor*{date}{fg=white}
\mode<all>
theme.sty:
\mode<presentation>
% Requirement
\RequirePackage{tikz}
% Settings
\useinnertheme{cdt}
\useoutertheme{cdt}
\usecolortheme{cdt}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{blocks}[rounded][shadow=true]
\mode<all>
이 jpeg를 직접 배치하려면 어떻게 해야 합니까?
답변1
만약에
\documentclass{beamer}
\usepackage{mwe}
\usebackgroundtemplate{
\vbox to \paperheight{\vfil\hbox to \paperwidth{\includegraphics[width=\paperwidth,height=1cm]{example-image-a}}}
}
\begin{document}
\begin{frame}{Mi title}
Some text
\end{frame}
\end{document}
당신이 원하는 것입니다. Gonzalo의 답변에 대해 약간의 공로를 인정해 주십시오.비머 배경 이미지가 중앙에 위치함.