├── .gitignore ├── .otim ├── content.yaml └── meta.yaml ├── LICENSE ├── README.md ├── chapters ├── 1-etale-morphisms.tex ├── 10-specialisation-fundamental-group.tex ├── 11-examples.tex ├── 12-gaga.tex ├── 13-sheaf-cohomology.tex ├── 2-smooth-morphisms.tex ├── 3-smooth-morphisms-extensions.tex ├── 4-flat-morphisms.tex ├── 5-fundamental-group.tex ├── 6-fibered-categories-descent.tex ├── 7-na.tex ├── 8-faithfully-flat-descent.tex ├── 9-descent-etale.tex └── notes.tex ├── conventions.md ├── french-version.pdf ├── includes ├── commands.tex └── preamble.tex ├── main.pdf └── main.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.otim/content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/.otim/content.yaml -------------------------------------------------------------------------------- /.otim/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/.otim/meta.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/README.md -------------------------------------------------------------------------------- /chapters/1-etale-morphisms.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/1-etale-morphisms.tex -------------------------------------------------------------------------------- /chapters/10-specialisation-fundamental-group.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/10-specialisation-fundamental-group.tex -------------------------------------------------------------------------------- /chapters/11-examples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/11-examples.tex -------------------------------------------------------------------------------- /chapters/12-gaga.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/12-gaga.tex -------------------------------------------------------------------------------- /chapters/13-sheaf-cohomology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/13-sheaf-cohomology.tex -------------------------------------------------------------------------------- /chapters/2-smooth-morphisms.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/2-smooth-morphisms.tex -------------------------------------------------------------------------------- /chapters/3-smooth-morphisms-extensions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/3-smooth-morphisms-extensions.tex -------------------------------------------------------------------------------- /chapters/4-flat-morphisms.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/4-flat-morphisms.tex -------------------------------------------------------------------------------- /chapters/5-fundamental-group.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/5-fundamental-group.tex -------------------------------------------------------------------------------- /chapters/6-fibered-categories-descent.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/6-fibered-categories-descent.tex -------------------------------------------------------------------------------- /chapters/7-na.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/7-na.tex -------------------------------------------------------------------------------- /chapters/8-faithfully-flat-descent.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/8-faithfully-flat-descent.tex -------------------------------------------------------------------------------- /chapters/9-descent-etale.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/9-descent-etale.tex -------------------------------------------------------------------------------- /chapters/notes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/chapters/notes.tex -------------------------------------------------------------------------------- /conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/conventions.md -------------------------------------------------------------------------------- /french-version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/french-version.pdf -------------------------------------------------------------------------------- /includes/commands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/includes/commands.tex -------------------------------------------------------------------------------- /includes/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/includes/preamble.tex -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/main.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmoellermath/translate-SGAI/HEAD/main.tex --------------------------------------------------------------------------------