-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: fix web blueprint * feat: link Lean declarations in blueprint * chore: remove pdf
- Loading branch information
Showing
11 changed files
with
48 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
% This file collects all the blueprint chapters. | ||
% It is not supposed to be built standalone: | ||
% see web.tex and print.tex instead. | ||
|
||
\title{Groupoid Model of HoTT in Lean 4} | ||
\author{Authors} | ||
|
||
\begin{document} | ||
\maketitle | ||
|
||
\section{Natural Models} | ||
\input{chapter/natural_model} | ||
\section{The Groupoid Model} | ||
\input{chapter/groupoid_model} | ||
\section{Polynomial Endofunctors} | ||
\input{chapter/polynomial} | ||
|
||
\bibliography{refs.bib}{} | ||
\bibliographystyle{alpha} | ||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
outputs = { self, nixpkgs, flake-utils }: | ||
flake-utils.lib.eachDefaultSystem (system: let | ||
pkgs = nixpkgs.legacyPackages.${system}; | ||
in { | ||
devShells.default = pkgs.mkShell { | ||
packages = with pkgs; [ | ||
bashInteractive | ||
typst | ||
texlive.combined.scheme-full | ||
python3 | ||
graphviz | ||
]; | ||
}; | ||
}); | ||
} |