如何在“sciposter”文档类中排版跨越多列的宽图形?

如何在“sciposter”文档类中排版跨越多列的宽图形?

我需要使图形跨越 sciposter 文档类中的两列或三列,并位于页面底部(不流动)

答案1

这是一个flowfram基于包的解决方案线程;请注意,它需要手动预设框架大小和位置,但之后,它就会像魔术一样发挥作用

\documentclass[a1,landscape]{sciposter}
\usepackage[T1,T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{caption}
\usepackage{graphicx}
\usepackage{flowfram}

\newflowframe[1]{0.33\textwidth}{0.8\textheight}
{0pt}{.1\textheight}[col1]
\newflowframe[1]{0.33\textwidth}{0.8\textheight}
{0.34\textwidth}{.1\textheight}[col2]
\newflowframe[1]{0.33\textwidth}{\textheight}
{0.67\textwidth}{.1\textheight}[col3]
\newstaticframe[1]{\textwidth}{.1\textheight}
{0pt}{.9\textheight}[frm1]
\newstaticframe[1]{0.66\textwidth}{.1\textheight}
{0pt}{0pt}[frm2]

\title{poster title}

\begin{document}
\begin{staticcontents*}{frm1}
\maketitle
\end{staticcontents*}

\part{part I}
text 1
\section{section 1}
text 2
\begin{staticcontents*}{frm2}
\begin{figure}
    \centering{\includegraphics[width=5in]{c:/img/img01}}
    \caption{figure caption}
\end{figure}
\end{staticcontents*}
\end{document}

相关内容