微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为什么在乳胶中,列内的书写部分超出边距?

如何解决为什么在乳胶中,列内的书写部分超出边距?

为什么我专栏的文字部分在外边距?我该如何解决

\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}

如何让我专栏中的文字部分进入我的海报而不是在外面?

解决方法

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

\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}

enter image description here

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。