Skip to main content

A Sphinx extension that renders selected figures as sticky margin sidebars while scrolling.

Project description

Sphinx Sticky Margin

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.

Installation

pip install sphinx-sticky-margin

Enable Extension

In conf.py:

extensions = [
    "sphinx_sticky_margin",
]

For Jupyter Book (_config.yml):

sphinx:
  extra_extensions:
    - sphinx_sticky_margin

Usage

Enabling Sticky Margin Behavior

Add 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.

Disabling Sticky Margin Behavior

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.

Sticky Margin Behavior

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 full

If 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:

  1. bottom (smallest first)
  2. top (smallest first)
  3. left (smallest first)
  4. height (smallest first)
  5. width (smallest first)
  6. DOM order (fallback)

For partial trigger mode, the sort order is:

  1. top (smallest first)
  2. bottom (smallest first)
  3. left (smallest first)
  4. height (smallest first)
  5. width (smallest first)
  6. 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.

MyST Example

```{figure} path/to/image.png
:figclass: sticky-margin

Figure caption.
```

reStructuredText Example

.. figure:: path/to/image.png
   :figclass: sticky-margin

   Figure caption.

Hide Marker (MyST)

```{hide-sticky-margin}
```

Images

```{image} path/to/image.png
:class: sticky-margin
```

Directives with :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.

Notes

  • The sticky margin display is active from 1200px viewport width and up.
  • The extension injects sticky-margin.css and sticky-margin.js.
  • The extension removes explicit line endings (<br>, double space in markdown) from figure captions to prevent layout issues in the margin.

MathJax and Lazy Loading

MathJax lazy loading is not compatible with this extension. The sticky margin works by cloning the source element. If MathJax has not yet rendered math before cloning (which happens with lazy loading when the element scrolls off-screen before the lazy observer fires), the clone will contain empty placeholders instead of rendered math.

Jupyter Book with JupyterBook-Patches

If you are using JupyterBook-Patches, lazy loading can also be disabled in one of two ways:

  • Disable the mathjax patch entirely (note: this also disables the Firefox MathJax fix).
  • Add ui/nonlazy to config.mathjax3_config['loader']['load'] in your config file:
sphinx:
  config:
    mathjax3_config:
      loader:
        load:
          - "ui/nonlazy"

[!NOTE] ui/nonlazy is not a MathJax-defined value. It is introduced by JupyterBook-Patches specifically to allow disabling lazy loading.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sphinx_sticky_margin-1.1.4.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sphinx_sticky_margin-1.1.4-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file sphinx_sticky_margin-1.1.4.tar.gz.

File metadata

  • Download URL: sphinx_sticky_margin-1.1.4.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sphinx_sticky_margin-1.1.4.tar.gz
Algorithm Hash digest
SHA256 1a5fcb69c35d8f0b138290bccaedc39ac58d9a06fa92962c8ed0d4c7dfcde258
MD5 7d1b2969812a0b2c513ffe28477291b7
BLAKE2b-256 f32922572eac686d3d3903457008294cb3a95b7ecbcc68f3670e46deecb88d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinx_sticky_margin-1.1.4.tar.gz:

Publisher: python-publish.yml on TeachBooks/Sphinx-Sticky-Margin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinx_sticky_margin-1.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for sphinx_sticky_margin-1.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6bd9e012dfafa4b05bd0d43842a51bdacc16164facc6da9dd062243d257b8469
MD5 371931ddbde21acc91177d1a6efbd594
BLAKE2b-256 ab3853f6735ac5392534218e6832aa749501a188a9f052a9f5b7de195bb6a7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinx_sticky_margin-1.1.4-py3-none-any.whl:

Publisher: python-publish.yml on TeachBooks/Sphinx-Sticky-Margin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page