以下代码使用 将标题名称打印到 beamer 标题中\insertshorttitle
。问题是,对于长标题,标题内的行不会自动换行。奇怪的是,使用 时行会自动换行\inserttitle
。
\documentclass[]{beamer}
\usepackage{tikz}
\usepackage{varwidth}
\tikzstyle{example-box} = [fill=yellow, align=left, rectangle, text width=\textwidth]
\setbeamertemplate{headline}{
\begin{tikzpicture}
\node [example-box] (box){
\insertshorttitle
};
\end{tikzpicture}
}
\title{A long title when inserted in the headline, using insertshorttitle does not break line. Whereas using inserttitle breaks the line. Specifying align=left in tikz block is not working either.}
\begin{document}
\begin{frame}
Insert the short title.
\end{frame}
\end{document}
使用 \inserttitle 时:
使用 \insertshorttitle 时:
有人知道如何在使用时在标题内实现自动换行吗\insertshorttitle
?提前致谢