Created
February 5, 2020 14:35
-
-
Save rpapallas/68295e1a6d4b33d8cf14080e83089202 to your computer and use it in GitHub Desktop.
LaTeX two-column figure bottom of the first-page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% The trick is with the following package. You **need** to use the following package. | |
\usepackage{nidanfloat} | |
% .... | |
% Put your figure near the first page content. | |
\begin{figure*}[b] | |
\centering | |
\def\svgwidth{\textwidth} | |
\import{sections/images/}{some_figure.pdf_tex} | |
\caption{Some caption.} | |
\label{fig:some_label} | |
\end{figure*} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment