How to put two figures (different sizes) side by side in a single block in tikzposter?
Is there a neat way of using?
\begin{tikzfigure}[Caption of figure]
\includegraphics[width = \linewidth]{image}
\end{tikzfigure}
My code is:
\begin{center}
\begin{minipage}{0.45\linewidth}
\begin{tikzfigure}[Caption of figure1]
\includegraphics[height = 10cm]{figure1}
\end{tikzfigure}
\hfill
\end{minipage}
\begin{minipage}{0.45\linewidth}
\begin{tikzfigure}[Caption of figure2]
\includegraphics[height = 10cm]{figure2}
\end{tikzfigure}
\end{minipage}
\end{center}
\noindent
but the pictures a misaligned (vertically). I tried this suggestion: LaTeX figures side by side but it did not work properly. Normally I use
\begin{figure}
...
\end{figure}
environment, but it does not work with tikzfigure.
Thank you in advance!

