Beamerのタイトルの下に画像とテキストを挿入したい

Beamerのタイトルの下に画像とテキストを挿入したい

私は Beamer プレゼンテーションを作成しています。Beamer のタイトルの下に画像とテキストを挿入したいのですが、画像がすべて表示されません。タイトルの日付に空きスペースがあると思うので、列を上に移動したいと思います。どうすればこの結果を得ることができますか?

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

関連情報