├── .github ├── dependabot.yml └── workflows │ ├── build.yaml │ └── remind.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── cn ├── abstracts.tex ├── activities.tex ├── awards.tex ├── cv.tex ├── education.tex ├── employment.tex ├── fieldwork.tex ├── funds.tex ├── interests.tex ├── presentations.tex ├── publications.tex ├── software.tex ├── students.tex └── teaching.tex └── en ├── abstracts.tex ├── activities.tex ├── awards.tex ├── cv.tex ├── education.tex ├── employment.tex ├── fieldwork.tex ├── funds.tex ├── interests.tex ├── presentations.tex ├── publications.tex ├── software.tex ├── students.tex └── teaching.tex /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/remind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/.github/workflows/remind.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | cv.pdf 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/README.md -------------------------------------------------------------------------------- /cn/abstracts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/abstracts.tex -------------------------------------------------------------------------------- /cn/activities.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/activities.tex -------------------------------------------------------------------------------- /cn/awards.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/awards.tex -------------------------------------------------------------------------------- /cn/cv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/cv.tex -------------------------------------------------------------------------------- /cn/education.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/education.tex -------------------------------------------------------------------------------- /cn/employment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/employment.tex -------------------------------------------------------------------------------- /cn/fieldwork.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/fieldwork.tex -------------------------------------------------------------------------------- /cn/funds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/funds.tex -------------------------------------------------------------------------------- /cn/interests.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/interests.tex -------------------------------------------------------------------------------- /cn/presentations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/presentations.tex -------------------------------------------------------------------------------- /cn/publications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/publications.tex -------------------------------------------------------------------------------- /cn/software.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/software.tex -------------------------------------------------------------------------------- /cn/students.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/students.tex -------------------------------------------------------------------------------- /cn/teaching.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/cn/teaching.tex -------------------------------------------------------------------------------- /en/abstracts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/abstracts.tex -------------------------------------------------------------------------------- /en/activities.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/activities.tex -------------------------------------------------------------------------------- /en/awards.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/awards.tex -------------------------------------------------------------------------------- /en/cv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/cv.tex -------------------------------------------------------------------------------- /en/education.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/education.tex -------------------------------------------------------------------------------- /en/employment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/employment.tex -------------------------------------------------------------------------------- /en/fieldwork.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/fieldwork.tex -------------------------------------------------------------------------------- /en/funds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/funds.tex -------------------------------------------------------------------------------- /en/interests.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/interests.tex -------------------------------------------------------------------------------- /en/presentations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/presentations.tex -------------------------------------------------------------------------------- /en/publications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/publications.tex -------------------------------------------------------------------------------- /en/software.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/software.tex -------------------------------------------------------------------------------- /en/students.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/students.tex -------------------------------------------------------------------------------- /en/teaching.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seisman/cv/HEAD/en/teaching.tex --------------------------------------------------------------------------------