비머의 제목 아래에 이미지와 텍스트를 삽입하고 싶습니다.

비머의 제목 아래에 이미지와 텍스트를 삽입하고 싶습니다.

나는 비머 프리젠테이션을 하고 있다. 비머의 제목 아래에 이미지와 텍스트를 삽입하고 싶은데 이미지가 모두 나타나지 않습니다. 제목의 날짜에 공백이 있는 것 같아서 열을 위로 이동하고 싶습니다. 이 결과를 어떻게 얻을 수 있나요?

Ps: 사용했는데 \usebackgroundtemplate이미지만 사용하는 것 같고 이미지를 이동할 수 없고 [scale=size].

\documentclass{beamer}

\pdfstringdefDisableCommands{
    \def\\{}
} %개행 허용

\usepackage[utf8]{inputenc}

\usepackage{ragged2e}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{graphicx}       %그림
\graphicspath{{./image/}}   %그림 경로 설정



\begin{document}


\begin{frame}{\includegraphics[scale=0.5]{logo.png}}
    \title{\raggedright\fontsize{40pt}{20pt}\textbf{유변학}$\left(\textbf{流變學}\right)$}
    \subtitle{\centering{\color{black}유변학: 흐름과 변형의 학문}}
    \date{}
    \maketitle
    
    \begin{columns}[t]
    \column{0.4\textwidth}
        Rheo - to flow \\
        Logos - science \\
        Ology - the study of
    \column{0.5\textwidth}
    \includegraphics[scale=0.5]{honey.png}
    \end{columns}
    
\end{frame}


\end{document}

여기에 이미지 설명을 입력하세요

답변1

나는 제목 페이지 설정을 수정하면서 다른 사이트에서 운동했습니다.

\makeatletter
\setbeamertemplate{title page}{%
\vbox{}
\begingroup
\centering
\begin{beamercolorbox}[sep=8pt,center]{title}
\usebeamerfont{title}\inserttitle\par%

\ifx\insertsubtitle\@empty%
\else%
\vskip0.25em%
{\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
\fi%

\end{beamercolorbox}%

\vskip3em\par
\begin{beamercolorbox}[sep=8pt,center]{author}
\usebeamerfont{author}\insertauthor
\end{beamercolorbox}

\endgroup
}
\makeatother

관련 정보