Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/verso-manual/VersoManual/Bibliography.lean
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ where
else if h : p.authors.size = 1 then
go <| Bibliography.lastName p.authors[0]
else if h : p.authors.size > 3 then
(· ++ {{<em>"et al"</em>}}) <$> go (Bibliography.lastName p.authors[0])
(· ++ {{" "<em>"et al."</em>}}) <$> go (Bibliography.lastName p.authors[0])
else andList <$> p.authors.mapM (go ∘ Bibliography.lastName)

open Verso.Doc.TeX in
Expand Down Expand Up @@ -308,7 +308,7 @@ where
else if h : p.authors.size = 1 then
go <| Bibliography.lastName p.authors[0]
else if h : p.authors.size > 3 then
(· ++ \TeX{\em{"et al"} }) <$> go (Bibliography.lastName p.authors[0])
(· ++ \TeX{" " \em{"et al."} }) <$> go (Bibliography.lastName p.authors[0])
else andListTeX <$> p.authors.mapM (go ∘ Bibliography.lastName)

private def arrayOrd (ord : Ord α) : Ord (Array α) := inferInstance
Expand Down