如何在 fancytikzposter 的标题栏中添加合作列表?

如何在 fancytikzposter 的标题栏中添加合作列表?

我第一次使用 Latex 制作海报。我找到了由艾琳娜·波托耶娃,非常简单、快速且美观。由于我对 Latex 的了解很少,我不知道如何在原始源代码上进行一些简单的更改。

我的目标:

我想用“代表合作:”替换作者姓名后面的“研究所”部分,然后再添加两个文本列,以便我可以将所有研究所的列表放在那里。例如,请参阅我的旧海报这里

编辑: 感谢您对我的问题的答复。我进行了一些搜索,并设法在“\institute”部分中实现了多列,如下所示:

    \institute{
    \begin{multicols}{2}[\textbf{Representing the collaboration of:}]
    Institute 1 \\
    Institute 2 \\
    Institute 3\\ 
    \columnbreak
    Institute 4\\
    Institute 5\\
    Institute 6
    \end{multicols}
    }

答案1

的开发者fancytikzposter与其他一些合作者共同努力,创建了tikzposter类。您可以minipage在字段内使用一些 s\institute来提供具有所需格式的信息:

\documentclass{tikzposter}
\title{The Title}
\institute{%
\begin{minipage}{\linewidth}
  \begin{center}
  \itshape\small representing the collaboration of
  \end{center}
  \begin{minipage}{.40\linewidth}
  \raggedright
  Institute of Mathematics \\
  Institute of Mathematics \\
  Institute of Mathematics
  \end{minipage}\hfill
  \begin{minipage}{.40\linewidth}
  \raggedright
  Institute of Physics \\
  Institute of Physics \\
  Institute of Physics
  \end{minipage}%
\end{minipage}%
}
\author{The Author A and The Author B}
\titlegraphic{Logo}
\usetheme{Basic}

\begin{document}

\maketitle
\block{BlocktitleA}{Blocktext}
\begin{columns}
\column{0.3}
\block{BlocktitleB}{Blocktext}
\column{0.7}
\block{BlocktitleC}{Blocktext}
\note{Notetext}
\end{columns}

\end{document}

在此处输入图片描述

相关内容