I am designing a two-column page and using tikzfigure to insert my figures. I want to have a wide figure that uses both columns. I tried what suggested in here: Displaying a wide figure in a two-column document
the figure* and setting textwidth, the figure takes both columns, but the table on the second column covers it.
How can I allocate the space, and prevent overlapping?
The code I use:
\documentclass[25pt, a0paper, portrait, blockverticalspace=-0.6cm]{campProposal}
\usepackage[utf8]{inputenc}
\usetikzlibrary{positioning}
\usepackage{diagbox}
\usepackage{xcolor}
\usepackage{color, colortbl}
\begin{columns}
\column{0.46}
\begin{tikzfigure}
\includegraphics[width=0.8\textwidth]{example-image}
\captionof{figure}{pipeline}
\end{tikzfigure}
\begin{tikzfigure}
\column{0.54}
...
\end{columns}

\documentclass{...}and ending with\end{document}. – dexteritas Sep 05 '22 at 08:57example-imageincluded in LaTeX. – hpekristiansen Sep 05 '22 at 09:19lipsumfor dummy text. See e.g. https://tex.stackexchange.com/questions/604917/blindtext-vs-lipsum. You really need to make your code compilable. – hpekristiansen Sep 05 '22 at 10:14