Figure Management
Figczar is a pandoc filter that adds power to pandoc’s ability to display figures in LaTeX documents. It handles figure wrapping, multi-column figures, and label-based references.
Figure labels
Section titled “Figure labels”Refer to figures by LaTeX label instead of by number, making reordering easy:
Refer to figures elsewhere with \ref{label}.
Wrapfig
Section titled “Wrapfig”Wrap figures using the LaTeX wrapfig package by appending {wrap=X}:
{wrap=82mm}Specify the width in any LaTeX-compatible format.
Full-width figures
Section titled “Full-width figures”Use {fullwidth=t} to create a \figure* environment, making figures span columns in multi-column templates:
{fullwidth=t}Positioning options
Section titled “Positioning options”h— here: Place where the figure environment is, if there’s roomt— top: Place at the top of a pageb— bottom: Place at the bottom of a pagep— page: Place on a page containing only floats!— force: Ignore parameters for float placement
Example: {fullwidth=b} places a full-width figure at the bottom.