From 0428ee4b7ea471021cbc9e0d2df3cb8b53ace2e1 Mon Sep 17 00:00:00 2001 From: Victor Vanthilt <73738005+VictorVanthilt@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:03:50 +0100 Subject: [PATCH] Make Jordan MPO matrix render properly in `MPOHamiltonian` docstring (#212) * make Jordan MPO matrix render properly in MPOHamiltonian docstring * more escaping --- src/operators/mpohamiltonian.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/operators/mpohamiltonian.jl b/src/operators/mpohamiltonian.jl index b6a02944..91bdd03d 100644 --- a/src/operators/mpohamiltonian.jl +++ b/src/operators/mpohamiltonian.jl @@ -8,9 +8,9 @@ all the sites are represented by an upper triangular block matrix of the followi ```math \\begin{pmatrix} -1 C D -0 A B -0 0 1 +1 & C & D \\\\ +0 & A & B \\\\ +0 & 0 & 1 \\end{pmatrix} ```