@@ -238,8 +238,10 @@ theorem soIndefiniteEquiv_apply {i : R} (hi : i * i = -1) (A : so' p q R) :
238238
239239It looks like this as a `2l x 2l` matrix of `l x l` blocks:
240240
241- [ 0 1 ]
242- [ 1 0 ]
241+ ```
242+ [ 0 1 ]
243+ [ 1 0 ]
244+ ```
243245-/
244246def JD : Matrix (l ⊕ l) (l ⊕ l) R :=
245247 Matrix.fromBlocks 0 1 1 0
@@ -254,9 +256,10 @@ diagonal matrix.
254256
255257It looks like this as a `2l x 2l` matrix of `l x l` blocks:
256258
257- [ 1 -1 ]
258- [ 1 1 ]
259- -/
259+ ```
260+ [ 1 -1 ]
261+ [ 1 1 ]
262+ ``` -/
260263def PD : Matrix (l ⊕ l) (l ⊕ l) R :=
261264 Matrix.fromBlocks 1 (-1 ) 1 1
262265
@@ -295,15 +298,19 @@ noncomputable def typeDEquivSo' [Fintype l] [Invertible (2 : R)] : typeD l R ≃
295298
296299It looks like this as a `(2l+1) x (2l+1)` matrix of blocks:
297300
298- [ 2 0 0 ]
299- [ 0 0 1 ]
300- [ 0 1 0 ]
301+ ```
302+ [ 2 0 0 ]
303+ [ 0 0 1 ]
304+ [ 0 1 0 ]
305+ ```
301306
302307where sizes of the blocks are:
303308
304- [`1 x 1` `1 x l` `1 x l`]
305- [`l x 1` `l x l` `l x l`]
306- [`l x 1` `l x l` `l x l`]
309+ ```
310+ [`1 x 1` `1 x l` `1 x l`]
311+ [`l x 1` `l x l` `l x l`]
312+ [`l x 1` `l x l` `l x l`]
313+ ```
307314-/
308315def JB :=
309316 Matrix.fromBlocks ((2 : R) • (1 : Matrix Unit Unit R)) 0 0 (JD l R)
@@ -318,16 +325,19 @@ almost-split-signature diagonal matrix.
318325
319326It looks like this as a `(2l+1) x (2l+1)` matrix of blocks:
320327
321- [ 1 0 0 ]
322- [ 0 1 -1 ]
323- [ 0 1 1 ]
328+ ```
329+ [ 1 0 0 ]
330+ [ 0 1 -1 ]
331+ [ 0 1 1 ]
332+ ```
324333
325334where sizes of the blocks are:
326335
327- [`1 x 1` `1 x l` `1 x l`]
328- [`l x 1` `l x l` `l x l`]
329- [`l x 1` `l x l` `l x l`]
330- -/
336+ ```
337+ [`1 x 1` `1 x l` `1 x l`]
338+ [`l x 1` `l x l` `l x l`]
339+ [`l x 1` `l x l` `l x l`]
340+ ``` -/
331341def PB :=
332342 Matrix.fromBlocks (1 : Matrix Unit Unit R) 0 0 (PD l R)
333343
0 commit comments