平均能量损失

平均能量损失

我即将在一次会议上进行海报展示。我知道我可以使用其他软件来制作海报。但是,我想使用 Latex,因为我需要用到一些数学知识。有没有适合我的模板?我的海报将放在一块高 4 英尺、宽 8 英尺的板上。

任何帮助,将不胜感激?

答案1

您可以使用baposter班级。

您可以调整fontscale选项直到对字体大小满意为止。

平均能量损失

(您不喜欢默认颜色吗?)

\documentclass[paperwidth=96in,paperheight=48in,landscape,fontscale=0.2]{baposter}

\usepackage{lipsum}

\begin{document}

\begin{poster}{
  headershape=rectangle,
  headerborder=closed,
  textborder=rectangle,
}{}{Poster Title}{Poster Author}

\headerbox{Highlighted box}{name=box1}{\lipsum[1-2]}

\headerbox{Highlighted box}{below=box1}{%
  \tiny tiny\par
  \scriptsize scriptsize\par
  \footnotesize footnotesize\par
  \small small\par
  \normalsize normalsize\par
  \large large\par
  \Large Large\par
  \LARGE LARGE\par
  \Huge Huge\par
}

\headerbox{Highlighted box}{column=1}{\lipsum[3-4]}

\headerbox{Highlighted box}{column=2}{\lipsum[4-5]}

\headerbox{Highlighted box}{column=3}{\lipsum[6-7]}

\end{poster}

\end{document}

MWE 输出

相关内容