├── .github ├── FUNDING.yml ├── logo.svg └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md └── src ├── bibliography.bib ├── images └── space.jpg ├── main.tex └── my_table.tex /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tunakasif 2 | -------------------------------------------------------------------------------- /.github/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/.github/logo.svg -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/README.md -------------------------------------------------------------------------------- /src/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/src/bibliography.bib -------------------------------------------------------------------------------- /src/images/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/src/images/space.jpg -------------------------------------------------------------------------------- /src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/src/main.tex -------------------------------------------------------------------------------- /src/my_table.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunakasif/latex-ci-template/HEAD/src/my_table.tex --------------------------------------------------------------------------------