I'm trying to use this macro for wrapping text around a figure.
Code: Select all
\newcommand{\figuremacroN}[3]{
\begin{wrapfigure}{l}{0.5\textwidth}
\centering
\includegraphics[width=0.48\textwidth]{#1}
\caption[#2]{{\small\textbf{#2} - #3}}
\label{#1}
\end{wrapfigure}
}
Code: Select all
\figuremacroN{Figure3}{Comparison A and B}{\label{file1_figure3}They are different}
Thanks for your help!