我正在制作一张海报乳胶护垫(也许我真的应该使用 ppt。)我想知道如何在 latex 枚举模式下使文本更紧凑。
下图显示了我的问题。我想将黑色圆圈内的单词移动到第二点下方的空格中。现在这些一个半单词突出在第三点上方。 以下是代码
\headerbox{Contribution}{name=conclusion,column=2,span=2,row=0,above=contact,below=results}{%
\begin{multicols}{2}
\begin{enumerate}
\item{
Not all matters are deliberated by the full board. Some are delegated to
subcommittees.
}
\item{
Not all matters are deliberated by the full board. Some are delegated to
subcommittees.
}
\item{
Not all matters are deliberated by the full board. Some are delegated to
subcommittees.
}
\end{enumerate}
\end{multicols}
}
如果同样的问题已经有人问过,我深表歉意,因为我真的不知道如何描述问题以及要搜索哪些关键字。非常感谢。
答案1
我找到了解决这个问题的方法,就是把这个框改成一个更长的列,这样所有内容都在一列中。
在 headerbox 定义中将 span = 2 更改为 span = 1
\headerbox{Contribution}{name=conclusion,column=2,span=1,row=0,above=contact,below=results}{%
我的解决方案并不能真正解决问题,所以如果您认为其他人可能遇到类似的问题,请随时回答问题。