feat: Support tables in floatlefttextright

This commit is contained in:
Samuel Ortion 2024-04-19 05:15:33 +02:00
parent 1d3803d6ea
commit 447b03797c
Signed by: sortion
GPG Key ID: 9B02406F8C4FB765
1 changed files with 30 additions and 13 deletions

View File

@ -15,16 +15,13 @@
\newcommand{\flstop}{
\boolfalse{flcontinue}
}
\newcommand\@fladdfig{\relax}
\newcommand\fladdfig[1]{\global\long\def\@fladdfig{#1}}
\newcommand\@flputfig{\@fladdfig\fladdfig{\relax}}
\newcommand\@fladdfloat{\relax}
\newcommand\fladdfloat[1]{\global\long\def\@fladdfloat{#1}}
\newcommand\@flputfloat{\@fladdfloat\fladdfloat{\relax}}
\newcommand\flblankpage{%
\null
\vfill
\begin{figure}[H]
\centering
\@flputfig%
\end{figure}
\@flputfloat%
\vfill
%\thispagestyle{empty}%
\clearpage%
@ -34,19 +31,39 @@
}
}
\newcommand{\fladdfig}[1]{
\fladdfloat{
\begin{figure}[H]
\centering
#1
\end{figure}
}
}
\newcommand{\fladdtab}[1]{
\fladdfloat{
\begin{table}[H]
\centering
#1
\end{table}
}
}
\iffalse
% Example
% Add this at the beggining of the document (typically after the titlepage)
% Add this at the beginning of the document (typically after the titlepage)
\flstart
% Then for each new figure you want to add, add the following
\fladdfig{%
\includegraphics[scale=1]{Image1}
\caption{Test}
\label{Ima1}
\fladdfloat{%
\begin{figure}[H]
\includegraphics[scale=1]{Image1}
\caption{Test}
\label{Ima1}
\end{figure}
}
% At the end of the document, to avoid a unwanted late terminated loop of empty page creation, add the following
flstop
\flstop
\fi