sphinx-sticky-margin is a Sphinx extension that adds a sticky margin copy for images, figures and other elements marked using the class sticky-margin.
When the original element scrolls above the header, a duplicate appears in the right margin (on wide screens). When the original element comes back into view, the margin copy is hidden.
pip install sphinx-sticky-marginIn conf.py:
extensions = [
"sphinx_sticky_margin",
]For Jupyter Book (_config.yml):
sphinx:
extra_extensions:
- sphinx_sticky_marginAdd the option :figclass: sticky-margin to a figure directive that should get a sticky margin clone. (For backward compatibility, :class: sticky-margin also works for figure directives.)
Add the option :class: sticky-margin to a directive that generates an HTML <div> element that should get a sticky margin clone.
Add the option :class: sticky-margin to a image directive that should get a sticky margin clone.
The sticky margin elements will appear when the original element scrolls out of view, and will disappear when the original element comes back into view.
In case of multiple (active) sticky margin elements, all will be shown in the margin.
Insert a hide-sticky-margin directive to insert a marker after which to fade out the last sticky elements during scrolling.
If a hide marker scrolls out of view at the top when scrolling down, all sticky elements defined before that marker will be hidden.
When scrolling back up, the sticky margin elements above a hide marker (but after any previous hide marker) will reappear when that hide marker scrolls back below the header.
By default the sticky margin element will appear when the original element is fully scrolled out of view, and will disappear when the original element is partially back in view.
In partial mode, the sticky margin element will appear when the original element is partially scrolled out of view, and will disappear when the original element is fully back in view.
To set the sticky margin trigger mode, add the following to conf.py:
sticky_margin["trigger"] = "partial" # or "full"Or for Jupyter Book (_config.yml):
sphinx:
config:
sticky_margin:
trigger: partial # or fullIf any value other than partial or full is set, the extension will fall back to the default full mode with a warning.
The order of the elements in the margin is determined by the order in which they are rendered and the trigger works on the actual rendered position of the original element. For full trigger mode, the sort order is:
- bottom (smallest first)
- top (smallest first)
- left (smallest first)
- height (smallest first)
- width (smallest first)
- DOM order (fallback)
For partial trigger mode, the sort order is:
- top (smallest first)
- bottom (smallest first)
- left (smallest first)
- height (smallest first)
- width (smallest first)
- DOM order (fallback)
Note
The combination of :class: sticky-margin, dropdown is not supported, as the dropdown behavior conflicts with the sticky margin behavior. If both classes are present, the sticky-margin class will be removed and a warning will be issued in the console.
```{figure} path/to/image.png
:figclass: sticky-margin
Figure caption.
```.. figure:: path/to/image.png
:figclass: sticky-margin
Figure caption.```{hide-sticky-margin}
``````{image} path/to/image.png
:class: sticky-margin
``````{admonition} This is a sticky margin admonition
:class: sticky-margin
This content will appear in the sticky margin when the original element scrolls out of view.
```When the marker scrolls above the header, the previous sticky margin elements are hidden with a fade-out.
- The sticky margin display is active from
1200pxviewport width and up. - The extension injects
sticky-margin.cssandsticky-margin.js. - MathJax content inside sticky elements is re-typeset when needed.
- The extension removes explicit line endings (
<br>, double space in markdown) from figure captions to prevent layout issues in the margin.