如何使文本框中的多行标题起作用?

如何使文本框中的多行标题起作用?

我有这个代码

    \title{
\tcbhighmath[frame style={left color=Green!70!black,right color=Red!95!black},interior style={left color=Green!35!white,right color=Red!50!white},boxrule=2pt]{
\text{
\Large Here is a failing example of a long multiline title \\ that I made in latex
}
}}

当我想要在 \ 处换行时,它会产生单行标题。我尝试使用数组来修复它,但没有成功,所以我想知道是否有人可以帮忙。

答案1

因为\tcbhighmath用于生成框架,所以应该构造多行表达式,例如使用array环境。

\title{
\tcbhighmath[frame style={left color=Green!70!black,
    right color=Red!95!black},
    interior style={left color=Green!35!white,right color=Red!50!white},
    boxrule=2pt]{
    \Large\begin{array}{c}
        \text{Academic Presentation} \\
        \text{template}
    \end{array}
}}

在此处输入图片描述

相关内容