From 21168eca7ac731f4417935c8d004469f42c89c47 Mon Sep 17 00:00:00 2001 From: u1 Date: Sun, 12 Apr 2026 14:25:27 +0200 Subject: [PATCH] docs(test): add equation numbering notebook smoke test --- equation-numbering.ipynb | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 equation-numbering.ipynb diff --git a/equation-numbering.ipynb b/equation-numbering.ipynb new file mode 100644 index 0000000..7ad7ea0 --- /dev/null +++ b/equation-numbering.ipynb @@ -0,0 +1,38 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Equation Numbering Test\n", + "\n", + "Inline math: $a^2 + b^2 = c^2$.\n", + "\n", + "Manual equation tag:\n", + "\n", + "$$\n", + "\\\\int_0^1 x^2 \\\\, dx = \\\\frac{1}{3} \\\\tag{1}\n", + "$$\n", + "\n", + "Second equation:\n", + "\n", + "$$\n", + "f(x) = x^2 + 1 \\\\tag{2}\n", + "$$\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.12.0" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}