0

为什么我的专栏的书面部分在页边空白之外?我该如何解决?

\documentclass{tikzposter}
    \geometry{paperwidth=1080px,paperheight=1980px}
    \usepackage{multicol}
    \usetheme{Board}
    
    \begin{document}
    
    \node[above right,opacity=1.2,inner sep=0pt,outer sep=0pt] at (bottomleft) {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-duck}};
    
    \maketitle[titletotopverticalspace=-8cm] % See Section 4.1
    \colorlet{blockbodybgcolor}{black}
    \colorlet{blocktitlefgcolor}{red}
    \block{\textbf{Ultrastructural anylisis}}{}
    
    \begin{columns}
    \column{0.55} \block{\hspace{10cm}
    \large Scientific Relevance}{
    \textcolor{white}{\hspace{10cm}\small The overall \textcolor{red}{why is this outside?mmmmmmmmmmmmmmmmmm}}}
    
\column{0.45} \block{Ciao}{}
\end{columns}
    
\end{document}

我怎样才能让我的专栏中的书面部分进入我的海报而不是在外面?

4

1 回答 1

0

问题是 tikzposter 类并不关心您更改的纸张大小。如果您使用 3 种纸张尺寸tikzposter支持中的一种,则可以看到全文:

\documentclass[a2paper]{tikzposter}
%\geometry{paperwidth=1080px,paperheight=1980px}
\usepackage{multicol}
\usetheme{Board}
\usepackage{lipsum}

\begin{document}

\node[above right,opacity=1.2,inner sep=0pt,outer sep=0pt] at (bottomleft) {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-duck}};

\maketitle[titletotopverticalspace=-8cm] % See Section 4.1
\colorlet{blockbodybgcolor}{black}
\colorlet{blockbodyfgcolor}{white}
\colorlet{blocktitlefgcolor}{red}
\block{\textbf{Ultrastructural anylisis}}{}

\begin{columns}
\column{0.55} 
\block{\large Scientific Relevance}{
\small The overall \textcolor{red}{why is this outside?mmmmmmmmmmmmmmmmmm}}

\column{0.45} \block{Ciao}{\lipsum[1]}
\end{columns}

\end{document}

在此处输入图像描述

于 2021-06-22T14:33:19.273 回答