├── .github └── workflows │ ├── ci.yml │ ├── deploy.yml │ └── netlify-deploy.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── SUMMARY.md ├── axioms_and_computation.md ├── book.toml ├── conv.md ├── custom.js ├── dependent_type_theory.md ├── deploy.sh ├── highlight.js ├── induction_and_recursion.md ├── inductive_types.md ├── interacting_with_lean.md ├── introduction.md ├── lean-toolchain ├── propositions_and_proofs.md ├── quantifiers_and_equality.md ├── structures_and_records.md ├── tactics.md ├── title_page.md ├── type_classes.md └── unixode.sty /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/netlify-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/.github/workflows/netlify-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /axioms_and_computation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/axioms_and_computation.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/book.toml -------------------------------------------------------------------------------- /conv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/conv.md -------------------------------------------------------------------------------- /custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/custom.js -------------------------------------------------------------------------------- /dependent_type_theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/dependent_type_theory.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/deploy.sh -------------------------------------------------------------------------------- /highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/highlight.js -------------------------------------------------------------------------------- /induction_and_recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/induction_and_recursion.md -------------------------------------------------------------------------------- /inductive_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/inductive_types.md -------------------------------------------------------------------------------- /interacting_with_lean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/interacting_with_lean.md -------------------------------------------------------------------------------- /introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/introduction.md -------------------------------------------------------------------------------- /lean-toolchain: -------------------------------------------------------------------------------- 1 | leanprover/lean4:nightly -------------------------------------------------------------------------------- /propositions_and_proofs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/propositions_and_proofs.md -------------------------------------------------------------------------------- /quantifiers_and_equality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/quantifiers_and_equality.md -------------------------------------------------------------------------------- /structures_and_records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/structures_and_records.md -------------------------------------------------------------------------------- /tactics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/tactics.md -------------------------------------------------------------------------------- /title_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/title_page.md -------------------------------------------------------------------------------- /type_classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/type_classes.md -------------------------------------------------------------------------------- /unixode.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lean-zh/tp-lean-zh/HEAD/unixode.sty --------------------------------------------------------------------------------