질문 1 : Beamer 패키지를 사용하여 LaTex에서 프레젠테이션 용 슬라이드 템플릿을 만들고 있습니다. 슬라이드에 로고를 배치하는 것이 쉽지 않다는 것을 알았습니다. 슬라이드 전체에서 동일한 위치에 로고를 배치하는 대신 제목 슬라이드의 중간 또는 중간에서 약간 위로 로고를 배치하고 싶습니다. 가능합니까?
질문 2 : 제목 슬라이드 뒤의 슬라이드에서 로고를 갖고 싶습니다. 오른쪽 상단 모서리에 있습니다. 그래서이 명령을 입력했습니다.
\logo{\includegraphics[height=0.8cm]{logo.eps}\vspace{220pt}}
잘 진행되었습니다.
하지만 상단 표시 줄의 색상을 변경하면 로고가 표시 줄 뒤에 표시되고 더 이상 표시되지 않습니다.
로고를 상단에 배치 할 수있는 방법이 있습니까?
답변
질문 1 : \author
, \title
, 또는 \institute
를 사용하여 제목 페이지에 이미지를 배치합니다. 이러한 필드 중 원하는 위치를 얻을 수없는 경우 textpos
패키지. 아래 예에서는 \author
필드를 사용하여 이미지를 추가합니다.
질문 2 :
패키지는 \addtobeamertemplate
를 사용하여 frametitle
템플릿에 로고를 추가 할 수 있습니다.
A 간단한 예제 코드 :
\documentclass{beamer} \usetheme{Madrid} \usecolortheme{beaver} \usepackage{textpos} \title{The title} \author[The author]{\includegraphics[height=1cm,width=2cm]{cat}\\The Author} \institute[Inst.]{The Institute} \date{\today} \begin{document} \begin{frame} \maketitle \end{frame} \addtobeamertemplate{frametitle}{}{% \begin{textblock*}{100mm}(.85\textwidth,-1cm) \includegraphics[height=1cm,width=2cm]{cat} \end{textblock*}} \begin{frame}{Motivation} Now the logo is visible \end{frame} \end{document}
osjerick 이 의견에 언급했듯이, 위의 솔루션은 \framesubtitle
를 사용하면 “올바르게 작동하지 않습니다 (이미지가 아래쪽으로 이동합니다). 이 경우 TikZ 접근 방식을 사용하여 이동을 방지 할 수 있습니다.
\documentclass{beamer} \usetheme{Madrid} \usecolortheme{beaver} \usepackage{tikz} \title{The title} \author[The author]{\includegraphics[height=1cm,width=2cm]{cat}\\The Author} \institute[Inst.]{The Institute} \date{\today} \begin{document} \begin{frame} \maketitle \end{frame} \addtobeamertemplate{frametitle}{}{% \begin{tikzpicture}[remember picture,overlay] \node[anchor=north east,yshift=2pt] at (current page.north east) {\includegraphics[height=0.8cm]{cat}}; \end{tikzpicture}} \begin{frame}{Motivation} Now the logo is visible \end{frame} \begin{frame}{Motivation} \framesubtitle{A} Now the logo is visible \end{frame} \end{document}
addtobeamertemplate
. 이제 ' 이해했습니다.