├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── hacks └── many-authors-hack.tex ├── midl-fullpaper.pdf ├── midl-fullpaper.tex ├── midl-samplebibliography.bib ├── midl-shortpaper.pdf ├── midl-shortpaper.tex ├── midl.cls ├── orcid.png └── tests ├── midl-issue10-test.tex ├── midl-issue21-test.tex └── midl-issue8-test.tex /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/README.md -------------------------------------------------------------------------------- /hacks/many-authors-hack.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/hacks/many-authors-hack.tex -------------------------------------------------------------------------------- /midl-fullpaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/midl-fullpaper.pdf -------------------------------------------------------------------------------- /midl-fullpaper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/midl-fullpaper.tex -------------------------------------------------------------------------------- /midl-samplebibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/midl-samplebibliography.bib -------------------------------------------------------------------------------- /midl-shortpaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/midl-shortpaper.pdf -------------------------------------------------------------------------------- /midl-shortpaper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/midl-shortpaper.tex -------------------------------------------------------------------------------- /midl.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/midl.cls -------------------------------------------------------------------------------- /orcid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/orcid.png -------------------------------------------------------------------------------- /tests/midl-issue10-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/tests/midl-issue10-test.tex -------------------------------------------------------------------------------- /tests/midl-issue21-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/tests/midl-issue21-test.tex -------------------------------------------------------------------------------- /tests/midl-issue8-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIDL-Conference/MIDLLatexTemplate/HEAD/tests/midl-issue8-test.tex --------------------------------------------------------------------------------