-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Half-width or text-wrapped figures? #65
Comments
A similar option for figure-less inline images would be useful. Either of these just change headers/trailers in either LaTeX or HTML. |
For half-width figures, we may use the following: \begin{minipage}{\columnwidth}
\includegraphics[width=\linewidth,height=0.28\textheight]{...}
\caption{ ... }
\label{...}
\end{minipage} For text-wrapped figure, we need the following (see https://www.overleaf.com/learn/latex/Wrapping_text_around_figures): \begin{wrapfigure}[lineheight]{position}{width}
...
\end{wrapfigure} And add this to \usepackage{wrapfig} For inline images, we just dispense with One could make mutually exclusive options |
|
@LaurentRDC The problem with |
It would be nice to add an option to select the environment that changes the figures into half-width or text-wrapped.
Now it may be only achieved by using a generic re-definition of environment, as far as I know.
The text was updated successfully, but these errors were encountered: