good starting point for docs

This commit is contained in:
crumbtoo
2023-11-14 09:20:25 -07:00
parent 5edbd733ac
commit 70f3b5cde2
5 changed files with 98 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
dist-newstyle/
docs/build/

20
docs/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = src
BUILDDIR = build
# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
.PHONY: help Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

View File

@@ -0,0 +1,16 @@
The *Spineless Tagless G-Machine*
=================================
WIP. Here's a typeset state transition rule describing the action of
dereferencing indirections when passed as function arguments.
.. math::
\transrule
{a : s & d & h
\begin{bmatrix}
a : \mathtt{NAp} \; a_1 \; a_2 \\
a_2 : \mathtt{NInd} \; a_3
\end{bmatrix} & f}
{a : s & d & h[a : \mathtt{NAp} \; a_1 \; a_3] & f}
:label: rule1

48
docs/src/conf.py Normal file
View File

@@ -0,0 +1,48 @@
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'rlp'
copyright = '2023, madeleine sydney ślaga'
author = 'madeleine sydney slaga'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = ['sphinx.ext.imgmath']
templates_path = ['_templates']
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'alabaster'
html_static_path = ['_static']
# -- Options for LaTeX image math --------------------------------------------
imgmath_latex_preamble = r'''
\usepackage{amsmath}
\usepackage{tabularray}
\newcommand{\transrule}[2]
{\begin{tblr}{|ccclc|}
\hline
& #1 \\
\implies & #2 \\
\hline
\end{tblr} }
'''
imgmath_image_format = 'svg'
imgmath_font_size = 14
# helps with inlining:
# https://www.sphinx-doc.org/en/master/usage/extensions/math.html#confval-imgmath_use_preview
imgmath_use_preview = True

13
docs/src/index.rst Normal file
View File

@@ -0,0 +1,13 @@
Welcome to rlp's documentation!
===============================
Contents
--------
.. toctree::
:maxdepth: 2
:caption: Commentary
:glob:
commentary/*