├── README.md ├── aaai ├── aaai24.bst ├── aaai24.sty └── aaai_preamble.tex ├── abstract.tex ├── cgf ├── EG.bbx ├── cgf_ccs_keyword.tex ├── cgf_metadata.tex ├── cgf_preamble.tex ├── dfT1pcr.fd ├── dfT1phv.fd ├── dfT1ptm.fd ├── dfadobe.sty ├── eg-alpha-doi.bst ├── eg-alpha.bst ├── egpubl.cls ├── egweblnk.sty └── pg2021.sty ├── chi ├── chi_ccs_keyword.tex ├── chi_metadata.tex └── chi_preamble.tex ├── conclusion.tex ├── conf_preamble.tex ├── cvpr ├── cvpr.cls ├── cvpr.sty ├── cvpr_metadata.tex ├── cvpr_preamble.tex └── ieee_fullname.bst ├── eccv ├── eccv.sty ├── eccv_metadata.tex ├── eccv_preamble.tex ├── eccvabbrv.sty ├── llncs.cls ├── ruler.sty └── splncs04.bst ├── experiment.tex ├── figs └── 3view_0.png ├── iccv └── iccv_preamble.tex ├── iclr ├── fancyhdr.sty ├── iclr2024_conference.bst ├── iclr2024_conference.sty ├── iclr_preamble.tex ├── math_commands.tex └── natbib.sty ├── ieeetrans ├── IEEEtran.cls ├── ieeetrans_metadata.tex └── ieeetrans_preamble.tex ├── introduction.tex ├── latexmkrc ├── macro.tex ├── method.tex ├── neurips ├── neurips_2023.sty ├── neurips_metadata.tex └── neurips_preamble.tex ├── overview.tex ├── paper.bib ├── paper.tex ├── relatedwork.tex ├── siggraph ├── ACM-Reference-Format.bbx ├── ACM-Reference-Format.bst ├── ACM-Reference-Format.cbx ├── ACM-Reference-Format.dbx ├── acmart.bib ├── acmart.cls ├── acmart.dtx ├── acmart.ins ├── acmauthoryear.bbx ├── acmauthoryear.cbx ├── acmdatamodel.dbx ├── acmnumeric.bbx ├── acmnumeric.cbx ├── siggraph_ccs_keyword.tex ├── siggraph_metadata.tex └── siggraph_preamble.tex ├── tools ├── compile.py └── config.yaml └── uist ├── uist_ccs_keyword.tex ├── uist_metadata.tex └── uist_preamble.tex /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/README.md -------------------------------------------------------------------------------- /aaai/aaai24.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/aaai/aaai24.bst -------------------------------------------------------------------------------- /aaai/aaai24.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/aaai/aaai24.sty -------------------------------------------------------------------------------- /aaai/aaai_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/aaai/aaai_preamble.tex -------------------------------------------------------------------------------- /abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/abstract.tex -------------------------------------------------------------------------------- /cgf/EG.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/EG.bbx -------------------------------------------------------------------------------- /cgf/cgf_ccs_keyword.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cgf/cgf_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/cgf_metadata.tex -------------------------------------------------------------------------------- /cgf/cgf_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/cgf_preamble.tex -------------------------------------------------------------------------------- /cgf/dfT1pcr.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/dfT1pcr.fd -------------------------------------------------------------------------------- /cgf/dfT1phv.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/dfT1phv.fd -------------------------------------------------------------------------------- /cgf/dfT1ptm.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/dfT1ptm.fd -------------------------------------------------------------------------------- /cgf/dfadobe.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/dfadobe.sty -------------------------------------------------------------------------------- /cgf/eg-alpha-doi.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/eg-alpha-doi.bst -------------------------------------------------------------------------------- /cgf/eg-alpha.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/eg-alpha.bst -------------------------------------------------------------------------------- /cgf/egpubl.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/egpubl.cls -------------------------------------------------------------------------------- /cgf/egweblnk.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/egweblnk.sty -------------------------------------------------------------------------------- /cgf/pg2021.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cgf/pg2021.sty -------------------------------------------------------------------------------- /chi/chi_ccs_keyword.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/chi/chi_ccs_keyword.tex -------------------------------------------------------------------------------- /chi/chi_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/chi/chi_metadata.tex -------------------------------------------------------------------------------- /chi/chi_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/chi/chi_preamble.tex -------------------------------------------------------------------------------- /conclusion.tex: -------------------------------------------------------------------------------- 1 | \section{Conclusion} -------------------------------------------------------------------------------- /conf_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/conf_preamble.tex -------------------------------------------------------------------------------- /cvpr/cvpr.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cvpr/cvpr.cls -------------------------------------------------------------------------------- /cvpr/cvpr.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cvpr/cvpr.sty -------------------------------------------------------------------------------- /cvpr/cvpr_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cvpr/cvpr_metadata.tex -------------------------------------------------------------------------------- /cvpr/cvpr_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cvpr/cvpr_preamble.tex -------------------------------------------------------------------------------- /cvpr/ieee_fullname.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/cvpr/ieee_fullname.bst -------------------------------------------------------------------------------- /eccv/eccv.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/eccv.sty -------------------------------------------------------------------------------- /eccv/eccv_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/eccv_metadata.tex -------------------------------------------------------------------------------- /eccv/eccv_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/eccv_preamble.tex -------------------------------------------------------------------------------- /eccv/eccvabbrv.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/eccvabbrv.sty -------------------------------------------------------------------------------- /eccv/llncs.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/llncs.cls -------------------------------------------------------------------------------- /eccv/ruler.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/ruler.sty -------------------------------------------------------------------------------- /eccv/splncs04.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/eccv/splncs04.bst -------------------------------------------------------------------------------- /experiment.tex: -------------------------------------------------------------------------------- 1 | \section{Experiment} -------------------------------------------------------------------------------- /figs/3view_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/figs/3view_0.png -------------------------------------------------------------------------------- /iccv/iccv_preamble.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclr/fancyhdr.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/iclr/fancyhdr.sty -------------------------------------------------------------------------------- /iclr/iclr2024_conference.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/iclr/iclr2024_conference.bst -------------------------------------------------------------------------------- /iclr/iclr2024_conference.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/iclr/iclr2024_conference.sty -------------------------------------------------------------------------------- /iclr/iclr_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/iclr/iclr_preamble.tex -------------------------------------------------------------------------------- /iclr/math_commands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/iclr/math_commands.tex -------------------------------------------------------------------------------- /iclr/natbib.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/iclr/natbib.sty -------------------------------------------------------------------------------- /ieeetrans/IEEEtran.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/ieeetrans/IEEEtran.cls -------------------------------------------------------------------------------- /ieeetrans/ieeetrans_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/ieeetrans/ieeetrans_metadata.tex -------------------------------------------------------------------------------- /ieeetrans/ieeetrans_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/ieeetrans/ieeetrans_preamble.tex -------------------------------------------------------------------------------- /introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/introduction.tex -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/latexmkrc -------------------------------------------------------------------------------- /macro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/macro.tex -------------------------------------------------------------------------------- /method.tex: -------------------------------------------------------------------------------- 1 | \section{Method} -------------------------------------------------------------------------------- /neurips/neurips_2023.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/neurips/neurips_2023.sty -------------------------------------------------------------------------------- /neurips/neurips_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/neurips/neurips_metadata.tex -------------------------------------------------------------------------------- /neurips/neurips_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/neurips/neurips_preamble.tex -------------------------------------------------------------------------------- /overview.tex: -------------------------------------------------------------------------------- 1 | \section{Overview} -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/paper.tex -------------------------------------------------------------------------------- /relatedwork.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/relatedwork.tex -------------------------------------------------------------------------------- /siggraph/ACM-Reference-Format.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/ACM-Reference-Format.bbx -------------------------------------------------------------------------------- /siggraph/ACM-Reference-Format.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/ACM-Reference-Format.bst -------------------------------------------------------------------------------- /siggraph/ACM-Reference-Format.cbx: -------------------------------------------------------------------------------- 1 | \ProvidesFile{ACM-Reference-Format.cbx}[2017-09-27 v0.1] 2 | 3 | \RequireCitationStyle{numeric} 4 | 5 | \endinput 6 | -------------------------------------------------------------------------------- /siggraph/ACM-Reference-Format.dbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/ACM-Reference-Format.dbx -------------------------------------------------------------------------------- /siggraph/acmart.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmart.bib -------------------------------------------------------------------------------- /siggraph/acmart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmart.cls -------------------------------------------------------------------------------- /siggraph/acmart.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmart.dtx -------------------------------------------------------------------------------- /siggraph/acmart.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmart.ins -------------------------------------------------------------------------------- /siggraph/acmauthoryear.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmauthoryear.bbx -------------------------------------------------------------------------------- /siggraph/acmauthoryear.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmauthoryear.cbx -------------------------------------------------------------------------------- /siggraph/acmdatamodel.dbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmdatamodel.dbx -------------------------------------------------------------------------------- /siggraph/acmnumeric.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmnumeric.bbx -------------------------------------------------------------------------------- /siggraph/acmnumeric.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/acmnumeric.cbx -------------------------------------------------------------------------------- /siggraph/siggraph_ccs_keyword.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/siggraph_ccs_keyword.tex -------------------------------------------------------------------------------- /siggraph/siggraph_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/siggraph_metadata.tex -------------------------------------------------------------------------------- /siggraph/siggraph_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/siggraph/siggraph_preamble.tex -------------------------------------------------------------------------------- /tools/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/tools/compile.py -------------------------------------------------------------------------------- /tools/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/tools/config.yaml -------------------------------------------------------------------------------- /uist/uist_ccs_keyword.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/uist/uist_ccs_keyword.tex -------------------------------------------------------------------------------- /uist/uist_metadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/uist/uist_metadata.tex -------------------------------------------------------------------------------- /uist/uist_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdily/all_conf_template/HEAD/uist/uist_preamble.tex --------------------------------------------------------------------------------