Pygments lexer for Rzk language (of proof assistant for synthetic ∞-categories).
Project description
Pygments higlighter for Rzk
This is a simple Pygments higlighter for Rzk, which can be used with minted
package when writing rzk code in LaTeX or with MkDocs to highlight code in blocks when rendering literate Rzk Markdown files.
How to use
Install
Clone this repository, and install the highlighter using pip
installer:
git clone https://github.com/fizruk/pygments-rzk.git
cd pygments-rzk # enter repository root
pip install . # install using pip
Use in MkDocs
To be done.
Use in LaTeX (via minted
)
In your LaTeX document:
- Include
minted
package:
\package{minted}
- Use
minted
environment withrzk
language, for example:
\begin{frame}[fragile]
\frametitle{\textsc{Rzk} highlighting in LaTeX with \texttt{minted}}
A basic example:
\tiny
\begin{minted}[linenos,frame=leftline,mathescape]{rzk}
#lang rzk-1
#section path-algebra
#variable A : U
#variables x y z : A
-- path reversal
#define rev uses (A x y)
(p : x = y) -- A path from x to y in A.
: y = x -- The reversal will be defined by path induction on p.
:= idJ(A, x, \y' p' -> y' = x, refl, y, p)
-- path composition by induction on the second path
#define concat
(p : x = y) -- A path from x to y in A.
(q : y = z) -- A path from y to z in A.
: (x = z)
:= idJ(A, y, \z' q' -> (x = z'), p, z, q)
#end path-algebra
\end{minted}
\end{frame}
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
pygments-rzk-0.1.0.tar.gz
(4.2 kB
view hashes)
Built Distribution
Close
Hashes for pygments_rzk-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc291d9641a5f0fbd7cef865762c019739f54e95ba4ccc2cb2b087ef2e3d07ea |
|
MD5 | 0cf3252c3eef1097a33e4237655aa5e2 |
|
BLAKE2b-256 | 6df2614fc6e2fb5a5ba94ce8a54f1c7763f83e528d973ec903893247d02e2431 |