Estoy intentando crear un póster usando Tikzposter con el siguiente código:
\documentclass{tikzposter} % See Section 3
\input{Settings/Packages.tex}
\input{Settings/Administrative.tex}
\title{\myTitle} \institute{} % See Section 4.1
\author{Emanuel Enberg} \titlegraphic{\includegraphics[]{Files/MID_RGB.png}}
\usetheme{Autumn} % See Section 5
\usecolorstyle{Britain}
\renewcommand\thesection{}
\renewcommand\thesubsection{\arabic{subsection}}
\begin{document}
\maketitle
\begin{columns}
\column{0.37}% Width set relative to text width
\block{Abstract}{\input{Chapters/Sections/AbstractContents.tex}}
\block{Inledning}{\input{Chapters/Sections/Chapter1_Section1_Inledning.tex}}
\column{0.63}
\block{Syfte \& frågeställning}
{\input{Chapters/Sections/Chapter1_Section2_Syfte-och-fragestallningar.tex}}
\block{Bakgrund \& tidigare forskning}
{\input{Chapters/Sections/Chapter1_Section3_Bakgrund-och-tidigare-
forskning_Part1.tex}}
\begin{subcolumns}
\subcolumn{0.465}
\block{Nervcell}{\input{Chapters/Sections/Subsections/Chapter1_Section3_Subsection1_Nervcell.tex}}
\block{Maskininlärning}{\input{Chapters/Sections/Subsections/Chapter1_Section3_Subsection2_Maskininlarning.tex}}
\subcolumn{0.535}
\block{Vektorer \& matriser}{\input{Chapters/Sections/Subsections/Chapter1_Section3_Subsection3_Vektorer-och-matriser.tex}}
\block{Artificiell neuron, del 1}{\input{Chapters/Sections/Subsections/Chapter1_Section3_Subsection4_Artificiell-neuron_Part1.tex}}
\end{subcolumns}
\end{columns}
%%%%%% HERE I WOULD NEED TO MAKE A NEW PAGE/POSTER
\end{document}
Este código me da el siguiente resultado:
Sin embargo, como puedes ver en la imagen, no puedo incluir todo el contenido en una sola página. Calculo que necesitaría al menos 3 páginas en total.
Hasta ahora he intentado usar \newpage
y colocar más bloques después. Sin embargo, eso me produce algunos errores desagradables.
He considerado crear documentos separados para cada página, pero eso significaría que no puedo hacer referencia a figuras y ecuaciones de otras páginas.
¿Hay alguna forma de generar un cartel con varias páginas usando Tikzposter? Si no es así, ¿existe algún otro paquete con funcionalidad similar a Tikzposter que me permita hacerlo?
Respuesta1
Esto muestra cómo usar el paquete xr para vincular dos tikzposters. Lo complicado fue hacer que los números de las ecuaciones fueran continuos.
Primer cartel (test5.tex):
\documentclass{tikzposter}
\usepackage{xr}
\externaldocument{test6}
\makeatletter
\AtEndDocument{\immediate\write\@auxout{\string\newlabel{lasteq}{{\arabic{equation}}{\thepage}}}}
\makeatother
\begin{document}
\block{First page}{\begin{equation}\label{first}
x=a
\end{equation}
See equation (\ref{second})}
\end{document}
Segundo cartel (test6.tex):
\documentclass{tikzposter}
\usepackage{refcount}
\usepackage{xr}
\externaldocument{test5}
\AtBeginDocument{\setcounter{equation}{\getrefnumber{lasteq}}}
\begin{document}
\block{Second page}{\begin{equation}\label{second}
y=b
\end{equation}
See equation (\ref{first})}
\end{document}
Respuesta2
No, no lo hay.
A tikzposter
es básicamente un grande tikzpicture
y no se puede dividir en páginas. Por supuesto, los carteles de varias páginas no tienen sentido en primer lugar, por lo que deberías tener menos contenido, no más páginas.
Pero puedes echar un vistazo a baposter
(http://www.brian-amberg.de/uni/poster/), que parece permitir múltiples poster
entornos y, por lo tanto, múltiples páginas. Ejemplo rápido:
\documentclass[a3paper]{baposter}
\usepackage{caption}
% set default options for poster(s)
\setkeys[ba]{posterbox}{
headerborder=closed,
headerColorOne=black!30,
headerColorTwo=black!50,
borderColor=blue
}
\setkeys[ba]{poster}{
bgColorOne=black!10,
bgColorTwo=black!20,
columns=2
}
\begin{document}
\begin{poster}{}
{}
{title}
{\textsc{Author}}
{}
\headerbox{Text}{name=text,column=0,row=0}{%
\captionof{figure}{Stuff \label{a}}
}
\end{poster}
\begin{poster}{
headerheight=0pt % <- don't need space for title
}
{}
{}
{}
{}
\headerbox{Text}{name=text,column=0,row=0}{%
Ref to fig. \ref{a}
}
\end{poster}
\end{document}