我在用fancytikz海报为了生成会议海报,我有三列,其中第一列的最后一个块节点在第二列中延续。
有没有办法定义一个没有标题部分的块节点?
我可能错过了一些简单的事情但这让我抓狂!
提前致谢。
最小工作示例:
\documentclass{a0poster}
\usepackage{fancytikzposter}
\usepackage{etoolbox}
\usepackage{float}
\usepackage{lipsum}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}
\setmargin{2}
\setblockspacing{2}
\setblocktitleheight{2}
\setcolumnnumber{3}
\usetemplate{4}
\usepackage[margin=\margin cm, paperwidth=84.1cm, paperheight=118.9cm]{geometry}
\title{A pretty poster \\
\author{A very fustrated latex user$^{1,*}$
}}
\begin{document}
\ClearShipoutPicture
\AddToShipoutPicture{\BackgroundPicture}
\noindent % to have the picture right in the center
\begin{tikzpicture}
\initializesizeandshifts
\ifthenelse{\equal{\template}{1}}{
\titleblock{72}{1}
}{
\titleblock{72}{1}
}
\blocknode{Introduction}{
\lipsum[1-7]
}
\blocknode{Data \& Methods}{
\lipsum[8]
}
%%%%%%%%%%%%% NEW COLUMN %%%%%%%%%%%%%%%
\startsecondcolumn
\blocknode{}{
What I really want is that little blue lip at the tip where the title is to go away.
}
\end{tikzpicture}
\end{document}
答案1
正如 JMP 在注释中所说,tikzposter
类已经取代了fancytikzposter
包。使用类时,标题为空的块默认不会在块中获得标题“区域”,因此无需额外工作。
\documentclass{tikzposter}
\usetheme{Envelope}
\author{A not so frustrated user}
\title{A pretty enough poster I hope}
\usepackage{lipsum}
\begin{document}
\maketitle
\begin{columns}
\column{0.3}
\block{Intro}{\lipsum[1]}
\column{0.3}
\block{}{\lipsum[2]}
\end{columns}
\end{document}