├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── thesis-template-list.md └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README-en.md ├── README.md ├── data ├── data.json ├── presentation.csv ├── report.csv ├── templates.json └── thesis.csv ├── requirements.txt ├── snapshot.png └── wiki ├── docs ├── assets │ └── favicon.ico └── index.md └── mkdocs.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * linguist-language=TeX 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/thesis-template-list.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 模板推荐 3 | about: 推荐LaTex等格式的学位论文模板 4 | title: "[TEMPLATE]" 5 | labels: template 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 推荐模板 11 | 12 | - 模板说明:(属于哪所高校(或通用)的模板) 13 | - 模板列表 14 | ```json 15 | [ 16 | { 17 | "genre": "", // 必填 18 | "language": "", // 必填 19 | "count": 0, 20 | "links": [ 21 | "https://github.com/aa/bb", // 必填 22 | ] 23 | } 24 | ] 25 | ``` 26 | 27 | ## 格式说明(提交时候删除这部分) 28 | 29 | 示例: 30 | - 模板说明:(属于或适合哪所高校(或通用)的模板) 31 | - 模板列表 32 | ```json 33 | [ 34 | { 35 | "genre": "thesis", 36 | "language": "latex", 37 | "count": 0, 38 | "links": [ 39 | "https://github.com/aa/bb", 40 | "https://github.com/aa/cc", 41 | "https://github.com/xx/yy" 42 | ] 43 | }, 44 | { 45 | "genre": "other", 46 | "language": "latex", 47 | "count": 0, 48 | "links": [ 49 | "https://github.com/xx/zz" 50 | ] 51 | } 52 | ] 53 | ``` 54 | 55 | JSON格式中字段说明: 56 | - `genre`允许取值: 57 | - `thesis`: 学位论文(包括dissertation) 58 | - `presentation`: 演示文档(PPT, Slides) 59 | - `paper`: 一般论文(包括期刊、会议论文等) 60 | - `report`: 论文开题报告,实验报告,课程作业报告,竞赛模板,基金、项目的申请书等 61 | - `resume`: 简历(CV) 62 | - `book`: 书籍(手册等) 63 | - `other`: 其他(不属于上面,如信件等) 64 | - `language`允许取值: 65 | - `latex`: LaTeX格式书写 66 | - `lyx`: LyX套件书写 67 | - `typst`: Typst格式书写 68 | - `markdown`: Markdown格式书写 69 | - `ms-word`: 微软Word文档 70 | - `powerpoint`: 微软PPT文档 71 | - `other`: 其他文档格式 72 | - `links`: 填写github仓库URL(不要以`/`结尾) 73 | - `count`: 自动生成,默认0即可。 74 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy Wiki 2 | 3 | on: 4 | # push: 5 | # branches: 6 | # - main 7 | # schedule: 8 | # - cron: "0 10 5,15,25 * *" 9 | repository_dispatch: 10 | types: [deploy-event] 11 | 12 | jobs: 13 | deploy: 14 | permissions: 15 | pages: write 16 | id-token: write 17 | contents: write 18 | environment: 19 | name: github-pages 20 | url: ${{ steps.deployment.outputs.page_url }} 21 | 22 | runs-on: ubuntu-latest 23 | env: 24 | PYTHON_VERSION: 3.x 25 | USER: hantang 26 | REPO: latex-data 27 | 28 | steps: 29 | - name: Checkout site 30 | uses: actions/checkout@v4 31 | - name: Checkout data 32 | uses: actions/checkout@v4 33 | with: 34 | repository: ${{ env.USER }}/${{ env.REPO }} 35 | token: ${{ secrets.GH_TOKEN }} 36 | path: ${{ env.REPO }} 37 | fetch-depth: 1 38 | ref: ${{ github.ref }} 39 | - uses: actions/setup-python@v5 40 | with: 41 | python-version: ${{ env.PYTHON_VERSION }} 42 | - name: Install Python dependencies 43 | run: pip install -r requirements.txt 44 | - name: Build 45 | run: bash ${{ env.REPO }}/deploy.sh ${{ env.REPO }} 46 | 47 | - name: Git auto commit 48 | uses: stefanzweifel/git-auto-commit-action@v5 49 | with: 50 | commit_user_name: "github-actions[bot]" 51 | commit_user_email: "41898282+github-actions[bot]@users.noreply.github.com" 52 | commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" 53 | commit_message: Automated update by github action 54 | # commit_options: '--no-verify --signoff' 55 | push_options: "--force" 56 | file_pattern: "README*.md data/" 57 | 58 | - name: Setup pages 59 | uses: actions/configure-pages@v4 60 | - name: Upload artifact 61 | uses: actions/upload-pages-artifact@v3 62 | with: 63 | path: site 64 | - name: Deploy to GitHub pages 65 | id: deployment 66 | uses: actions/deploy-pages@v4 67 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # macos 2 | .DS_Store 3 | 4 | # linux 5 | *~ 6 | 7 | # ide 8 | .vscode/ 9 | .idea/ 10 | 11 | # mkdocs 12 | site/ 13 | 14 | # python 15 | __pycache__/ 16 | __pypackages__/ 17 | *.py[cod] 18 | 19 | /latex-data 20 | /temp 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 hantang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- 1 | # Beyond LaTeX Templates 2 | 3 | [![Awesome](https://awesome.re/badge.svg)](https://github.com/hantang/latex-templates) 4 | [![Deploy Wiki](https://github.com/hantang/latex-templates/actions/workflows/deploy.yml/badge.svg)](https://github.com/hantang/latex-templates/actions/workflows/deploy.yml) 5 | ![GitHub Commit Badge](https://img.shields.io/github/last-commit/hantang/latex-templates.svg) 6 | ![GitHub License Badge](https://img.shields.io/github/license/hantang/latex-templates.svg) 7 | 8 | [English README](README-en.md) | [简体中文 README](README.md) 9 | 10 | ## Introduction 11 | 12 | Update at: *2025-05-25* 13 | 14 | An awesome list to collect all kinds of Latex thesis/dissertation, representation(beamer/slides), resume etc., 15 | as well as other format, include Microsoft Word, Typst, Markdown ... 16 | 17 | > [!IMPORTANT] 18 | > All templates click this site: 19 | > 20 | > - site link: 21 | > - [:link: templates][link-site-new] **Recommend: New** 22 | > - [:link: latex-templates][link-site] **Old** 23 | > - file(JSON format): [:card_index_dividers: templates.json][link-data] 24 | 25 | [link-site]: https://hantang.github.io/latex-templates/ 26 | [link-site-new]: https://hantang.github.io/templates/ 27 | [link-data]: ./data/templates.json 28 | 29 | --- 30 | 31 | ![](./snapshot.png) 32 | (New site snaphot) 33 | 34 | 35 | 36 | --- 37 | 38 | 39 | 40 | **Table of Contents** 41 | 42 | 43 | 44 | 45 | ## Contributing 46 | 47 | Your contributions are always welcome! 48 | 49 | Copyright © 2018-2025 Hantang 50 | 51 | ![Github](https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white) 52 | 53 | **[:top: Back to Top](#beyond-latex-templates)** 54 | -------------------------------------------------------------------------------- /data/presentation.csv: -------------------------------------------------------------------------------- 1 | 序号,中文名,外文名,GitHub仓库,已归档,Star数,Fork数,更新时间,许可证 2 | 0,通用模板,Common Templates,https://github.com/matze/mtheme,0,6573,852,2022-11-23, 3 | 1,通用模板,Common Templates,https://github.com/josephwright/beamer,0,1521,148,2025-03-31,NOASSERTION 4 | 2,通用模板,Common Templates,https://github.com/martinbjeldbak/ultimate-beamer-theme-list,0,1500,125,2025-04-14, 5 | 3,上海交通大学,Shanghai Jiaotong University,https://github.com/sjtug/SJTUBeamer,0,653,68,2025-01-19,Apache-2.0 6 | 4,通用模板,Common Templates,https://github.com/pcafrica/focus-beamertheme,0,519,44,2024-02-07,GPL-3.0 7 | 5,清华大学,Tsinghua University,https://github.com/tuna/THU-Beamer-Theme,0,392,75,2020-12-11,LPPL-1.3c 8 | 6,通用模板,Common Templates,https://github.com/Urinx/LaTeX-PPT-Template,0,389,120,2017-06-30,Apache-2.0 9 | 7,东南大学,Southeast University,https://github.com/TouchFishPioneer/SEU-Beamer-Slide,0,340,89,2021-10-15,GPL-3.0 10 | 8,通用模板,Common Templates,https://github.com/rafaelbailo/betterposter-latex-template,0,305,46,2019-09-02,GPL-3.0 11 | 9,中国科学技术大学,University of Science and Technology of China,https://github.com/ustctug/ustcbeamer,0,302,63,2022-07-26,LPPL-1.3c 12 | 10,通用模板,Common Templates,https://github.com/XiangyunHuang/awesome-beamers,0,264,81,2023-09-01, 13 | 11,通用模板,Common Templates,https://github.com/SunYanCN/Latex-Beamer-Template,0,261,60,2022-11-29,MIT 14 | 12,通用模板,Common Templates,https://github.com/piazzai/arguelles,0,232,19,2025-01-08,MIT 15 | 13,(德国)莱茵曼应用技术大学,RheinMain University of Applied Sciences*
(Hochschule RheinMain),https://github.com/benjamin-weiss/hsrmbeamertheme,0,227,64,2024-03-09, 16 | 14,通用模板,Common Templates,https://github.com/pmichaillat/latex-presentation,0,206,57,2025-05-18,MIT 17 | 15,通用模板,Common Templates,https://github.com/pm25/SimplePlus-BeamerTheme,0,205,23,2025-01-12,Unlicense 18 | 16,(美国)斯坦福大学,Stanford University,https://github.com/RylanSchaeffer/Stanford-LaTeX-Poster-Template,0,184,69,2024-01-01, 19 | 17,四川大学,Sichuan University,https://github.com/FvNCCR228/SCU-Beamer-Theme,0,133,19,2024-11-07,LPPL-1.3c 20 | 18,大连理工大学,Dalian University of Technology,https://github.com/fuujiro/DLUT-Beamer-Slide-V2,0,86,22,2021-02-04,LPPL-1.3c 21 | 19,清华大学,Tsinghua University,https://github.com/YangLaTeX/thubeamer,0,86,18,2023-11-27,LPPL-1.3c 22 | 20,(比利时)安特卫普大学,University of Antwerp*
(Universiteit Antwerpen),https://github.com/nschloe/ua-beamer,0,75,22,2016-07-31,MIT 23 | 21,通用模板,Common Templates,https://github.com/pm25/SimpleDarkBlue-BeamerTheme,0,73,13,2025-01-14,Unlicense 24 | 22,武汉大学,Wuhan University,https://github.com/hrtan99/WHU-Beamer,0,72,5,2023-11-01,LPPL-1.3c 25 | 23,(英国)牛津大学,University of Oxford,https://github.com/gbaydin/oxford-poster,0,71,43,2023-03-31,MIT 26 | 24,通用模板,Common Templates,https://github.com/gshstexsociety/gshs-format,0,65,14,2025-03-11,LPPL-1.3c 27 | 25,(美国)斯坦福大学,Stanford University,https://github.com/sanhacheong/stanford-beamer-presentation,0,58,37,2018-12-27,MIT 28 | 26,上海交通大学,Shanghai Jiaotong University,https://github.com/LogCreative/SJTUBeamermin,1,57,8,2021-11-05,Apache-2.0 29 | 27,西北工业大学,Northwestern Polytechnical University,https://github.com/phonixer/NWPU-BEAMER,0,56,10,2022-08-07, 30 | 28,浙江大学,Zhejiang University,https://github.com/qychen2001/ZJU-Beamer-Template,0,52,4,2024-10-17, 31 | 29,大连理工大学,Dalian University of Technology,https://github.com/fuujiro/DLUT-Beamer-Slide-V1,0,49,19,2021-03-18,GPL-3.0 32 | 30,(捷克)马萨里克大学,Masaryk University*
(Masarykova univerzita),https://github.com/Witiko/fibeamer,1,49,10,2021-09-24,NOASSERTION 33 | 31,武汉大学,Wuhan University,https://github.com/hamsterwk/whucs-beamer,0,49,10,2022-05-11, 34 | 32,中山大学,Sun Yat-sen University,https://github.com/yxnchen/sysu-beamer-template,0,49,9,2023-10-10,CC0-1.0 35 | 33,通用模板,Common Templates,https://github.com/makokal/beamer-themes,0,48,17,2018-04-27, 36 | 34,(瑞典)查尔姆斯理工大学,Chalmers University of Technology*
(Chalmers tekniska högskola),https://github.com/Micket/chalmers,0,45,22,2018-02-27, 37 | 35,南开大学,Nankai University,https://github.com/zshicode/LaTeX-Beamer-Nankai,0,43,18,2022-01-21, 38 | 36,(意大利)米兰理工大学,"Polytechnic University of Milan*
(Politecnico di Milano, PoliMi)",https://github.com/pcafrica/beamerthemepolimi,0,42,4,2019-06-17, 39 | 37,通用模板,Common Templates,https://github.com/klingtnet/beamer-template,0,40,16,2015-01-28,MIT 40 | 38,西交利物浦大学,Xi'an Jiaotong-Liverpool University,https://github.com/yaoshanliang/XJTLU-Beamer-Template,0,39,9,2024-11-24, 41 | 39,(澳大利亚)悉尼大学,University of Sydney,https://github.com/malramsay64/usyd-beamer-theme,0,38,21,2021-05-22,MIT 42 | 40,(美国)纽约大学,New York University,https://github.com/js8544/nyu-latex-templates,0,37,18,2019-05-10,GPL-3.0 43 | 41,西安电子科技大学,Xidian University,https://github.com/StickCui/XDUstyle-Beamer-Theme,0,37,15,2016-06-03, 44 | 42,通用模板,Common Templates,https://github.com/klb2/beamer-presentation-template,0,37,7,2023-10-21,Apache-2.0 45 | 43,(英国)剑桥大学,University of Cambridge,https://github.com/rjw57/cambridge-beamer,1,36,36,2019-04-04,MIT 46 | 44,兰州大学,Lanzhou University,https://github.com/yuhldr/SimpleBeamerLZU,0,34,7,2022-04-22, 47 | 45,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/teancake/latex-beamer-beihang,0,32,10,2021-09-13,MIT 48 | 46,华中科技大学,Huazhong University of Science,https://github.com/MatNoble/HUSTMatNobleBeamer,0,32,5,2020-07-22, 49 | 47,香港中文大学
(香港中文大學),Chinese University of Hong Kong (CUHK),https://github.com/yuehaowang/CUHK-Beamer-Template,0,31,15,2021-08-22, 50 | 48,(奥地利)约翰内斯·开普勒大学,"Johannes Kepler University Linz, JKU*
(Johannes Kepler Universität Linz)",https://github.com/michaelroland/jku-templates-presentation-latex,0,31,8,2025-01-16,MPL-2.0 51 | 49,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/Thysrael/GreenParkBeamerTheme,0,31,2,2025-03-31,CC-BY-4.0 52 | 50,浙江传媒学院,Communication University of Zhejiang,https://github.com/xiehao/cuzbeamer,0,29,8,2025-04-21, 53 | 51,(瑞士)巴塞尔大学,University of Basel*
(Universität Basel),https://github.com/ivangiangreco/basilea-beamer,0,28,15,2024-02-16,MIT 54 | 52,(挪威)卑尔根大学,University of Bergen*
(Universitetet i Bergen),https://github.com/martinhelso/UiB,0,27,24,2020-09-01,MIT 55 | 53,(英国)布里斯托大学,University of Bristol,https://github.com/dawbarton/UoB-beamer-theme,0,26,16,2024-09-27,NOASSERTION 56 | 54,(美国)康涅狄格大学,University of Connecticut,https://github.com/corybrunson/beamerthemeuconn,0,26,13,2023-10-11, 57 | 55,北京大学,Peking University,https://github.com/huxuan/pkuthss-slide,1,26,13,2016-06-05,GPL-3.0 58 | 56,(德国)波鸿鲁尔大学,Ruhr-University Bochum*
(Ruhr-Universität Bochum),https://github.com/sjewo/rub-beamer,0,26,13,2023-02-24, 59 | 57,复旦大学,Fudan University,https://github.com/zlliang/beamer-fudan,1,25,14,2021-02-15,MIT 60 | 58,(德国)斯图加特大学,University of Stuttgart*
(Universität Stuttgart),https://github.com/valentjn/uni-stuttgart-beamer-template,0,24,11,2023-07-11,MIT 61 | 59,中国人民大学,Renmin University of China,https://github.com/GohUnTsuan/RUC-Beamer-Theme,0,24,5,2021-05-12,MIT 62 | 60,东南大学,Southeast University,https://github.com/eshoyuan/SEU_Beamer_Template_Latex,0,24,2,2022-06-14, 63 | 61,香港理工大学
(香港理工大學),Hong Kong Polytechnic University (PolyU),https://github.com/fletcherjiang/Polyulatex,0,22,109,2024-06-20, 64 | 62,西安电子科技大学,Xidian University,https://github.com/103yiran/XDUtheme,0,22,8,2017-06-08,GPL-3.0 65 | 63,(波兰)什切青西波美拉尼亚理工大学,"Zachodniopomorski Uniwersytet Technologiczny w Szczecinie (ZUT)*
(West Pomeranian University of Technology, Szczecin)",https://github.com/karlosos/zut-fibeamer,0,21,4,2021-02-27, 66 | 64,北京交通大学,Beijing Jiaotong University,https://github.com/Allenpandas/BJTU-Beamer-Theme,0,21,1,2023-01-12,LPPL-1.3c 67 | 65,浙江大学,Zhejiang University,https://github.com/Jone-Wong/ZJU_Beamer,0,21,0,2023-09-21, 68 | 66,通用模板,Common Templates,https://github.com/wisdomfusion/latex-beamer-teamplates,0,20,10,2018-07-09,MIT 69 | 67,浙江大学,Zhejiang University,https://github.com/corenel/zju-beamer-theme,0,20,2,2020-03-12,MIT 70 | 68,(丹麦)哥本哈根大学,University of Copenhagen*
(Københavns Universitet),https://github.com/cbourjau/frederiksberg_beamer,0,19,9,2020-09-02, 71 | 69,(英国)曼彻斯特大学,University of Manchester,https://github.com/mundya/unofficial-university-of-manchester-beamer,0,19,9,2015-08-25, 72 | 70,中国人民大学,Renmin University of China,https://github.com/andelf/ruc-beamer-template,0,19,8,2015-03-12,CC0-1.0 73 | 71,西北农林科技大学,Northwest A&F University,https://github.com/registor/nwafuBeamerTheme,0,19,8,2022-05-22, 74 | 72,兰州大学,Lanzhou University,https://github.com/yuhldr/LZUBeamer,0,19,5,2024-05-18,GPL-3.0 75 | 73,复旦大学,Fudan University,https://github.com/GuangLun2000/FZU-latex-template,0,18,4,2023-04-05, 76 | 74,北京交通大学,Beijing Jiaotong University,https://github.com/Tang1705/BJTU-Beamer,0,18,3,2022-09-16, 77 | 75,天津大学,Tianjin University,https://github.com/EurasianEagleOwl/TJU-LaTeX-Beamer-Template,0,18,1,2022-05-29,MIT 78 | 76,(瑞典)查尔姆斯理工大学,Chalmers University of Technology*
(Chalmers tekniska högskola),https://github.com/E2-PhD-Council/ThesisTemplate,0,17,15,2025-01-31,MIT 79 | 77,吉林大学,Jilin University,https://github.com/GohUnTsuan/JLU-Beamer-Theme,0,17,3,2021-05-12,MIT 80 | 78,通用模板,Common Templates,https://github.com/jasonbian97/Academic-Report-Beamer-Template,0,17,3,2019-06-14, 81 | 79,国防科技大学,National Defense University of Science and Technology,https://github.com/yangjingo/nudtbeamer,0,17,2,2024-03-12, 82 | 80,合肥工业大学,HeFei University of Technology,https://github.com/sxhfut/Beamer-HFUT,0,16,3,2019-01-11, 83 | 81,重庆大学,Chongqing University,https://github.com/CQUtug/CQUBeamer,0,15,3,2018-05-07,MIT 84 | 82,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/peng-yq/UCAS-Beamer-Theme,0,15,2,2024-10-12,MIT 85 | 83,(美国)休斯敦大学,University of Houston*
(University of Houston),https://github.com/cainmagi/UH-beamer-templates,0,14,6,2022-12-07,GPL-3.0 86 | 84,华南师范大学,South China Normal University,https://github.com/Elitedj/SCNU_BeamerTemplate,0,14,4,2020-11-11, 87 | 85,南开大学,Nankai University,https://github.com/Hughshine/nku-beamer,0,14,1,2021-05-21, 88 | 86,浙江大学,Zhejiang University,https://github.com/pan2013e/ZJU-beamer-template,0,14,0,2022-05-19, 89 | 87,(美国)芝加哥大学,University of Chicago,https://github.com/jacksonllee/uchicago-beamer,0,13,14,2018-02-02,MIT 90 | 88,(美国)威斯康星大学麦迪逊分校,University of Wisconsin-Madison,https://github.com/travitch/uw-beamer-template,0,13,14,2013-01-18, 91 | 89,厦门大学,Xiamen University,https://github.com/iceduu/xmu-beamer,0,13,2,2023-02-02,MIT 92 | 90,西安交通大学,Xi'an Jiaotong University,https://github.com/qyxf/beamerthemeXJTU,0,12,2,2020-04-12,LPPL-1.3c 93 | 91,武汉理工大学,Wuhan University of Technology,https://github.com/LiUzHiAn/BeamerTemplateWHUT,0,11,3,2020-05-12, 94 | 92,北京科技大学,Beijing University of Science and Technology,https://github.com/ShawniLee/LaTeX-Beamer-USTB,0,11,0,2020-05-13, 95 | 93,中山大学,Sun Yat-sen University,https://github.com/yanghw8/sysubeamer-unofficial,0,10,0,2023-07-31, 96 | 94,通用模板,Common Templates,https://github.com/WQT1123/University-Presentation-Beamer,0,9,0,2024-07-22,GPL-3.0 97 | 95,上海大学,Shanghai University,https://github.com/kaleidoscope257-git/SHUbeamer,0,9,0,2021-12-01,MIT 98 | 96,(英国)思克莱德大学,University of Strathclyde,https://github.com/nitrogl/strathbeamer,0,8,13,2016-10-31,MIT 99 | 97,桂林电子科技大学,Guilin University of Electronic Science and Technology,https://github.com/wrm244/GUETBeamer,0,8,2,2023-12-22,LPPL-1.3c 100 | 98,南京理工大学,Nanjing University of Science and Technology,https://github.com/Andrew5c/NJUST-beamer-LaTeX,0,8,1,2020-12-01, 101 | 99,吉林大学,Jilin University,https://github.com/Guanyu-Li/Defense-Reporting-ppt,0,8,0,2024-07-21, 102 | 100,河海大学,Hohai University,https://github.com/Mizera-Mondo/HHU-Slides-Template,0,8,0,2025-01-19,LGPL-2.1 103 | 101,西安电子科技大学,Xidian University,https://github.com/ayhe123/XDUbeamer-unofficial,0,8,0,2022-08-09, 104 | 102,清华大学,Tsinghua University,https://github.com/luoyt14/presentationTemplete,0,8,0,2019-02-10, 105 | 103,西安交通大学,Xi'an Jiaotong University,https://github.com/swjtuhub/SWJTU_Beamer_Template,0,7,3,2020-12-11,GPL-3.0 106 | 104,河北工业大学,Hebei University of Technology,https://github.com/lime-j/HEBUT-Beamer-Theme,0,7,2,2021-04-16,LPPL-1.3c 107 | 105,合肥工业大学,HeFei University of Technology,https://github.com/HFUT-BinChen/HFUT-Beamer,0,7,1,2022-04-17, 108 | 106,上海大学,Shanghai University,https://github.com/LaneGong/SHU-Beamer-Theme,0,7,1,2024-03-30,LPPL-1.3c 109 | 107,(加拿大)多伦多大学,University of Toronto,https://github.com/alexalex222/Beamer-template-uoft,0,6,9,2019-06-14,GPL-3.0 110 | 108,西安电子科技大学,Xidian University,https://github.com/StickCui/BeamerForXidian,1,5,4,2015-11-17,GPL-2.0 111 | 109,南开大学,Nankai University,https://github.com/latexstudio/Beamer-Style-of-NKU,0,5,3,2017-12-08, 112 | 110,浙江农林大学,Zhejiang A&F University,https://github.com/Stolorzs/ZafuTemplatePublic,0,5,1,2024-06-19, 113 | 111,东北大学,Northeastern University,https://github.com/zhouyanasd/NEU-Beamer-Slide,0,5,0,2019-07-05, 114 | 112,武汉大学,Wuhan University,https://github.com/fyqqyf/WHU-Beamer-Theme,0,4,3,2022-03-12,MIT 115 | 113,中南大学,Central South University,https://github.com/Hsinyuann/CSUBeamer,0,4,2,2021-09-26, 116 | 114,中国传媒大学,Communication University of China,https://github.com/TheoCUC/Beamer_CUC,0,4,2,2021-03-15,GPL-3.0 117 | 115,西南交通大学,Southwest Jiaotong University,https://github.com/swjtutug/swjtubeamer,0,4,2,2018-03-22, 118 | 116,武汉大学,Wuhan University,https://github.com/xkwxdyy/whu-beamer,0,4,1,2023-09-16,LPPL-1.3c 119 | 117,武汉科技大学,Wuhan University of Science and Technology,https://github.com/Aegis1863/wust_beamer,0,4,0,2025-01-17,LPPL-1.3c 120 | 118,江苏大学,Jiangsu University,https://github.com/Luhuanz/beamer-,0,4,0,2022-04-05, 121 | 119,中国矿业大学,China University of Mining and Technology,https://github.com/lgy0404/CUMT-Beamer-Template,0,4,0,2023-09-06, 122 | 120,华中农业大学,Huazhong Agricultural University,https://github.com/wuenzhe/HZAUBeamer,0,4,0,2022-07-24, 123 | 121,(美国)南佛罗里达大学,University of South Florida,https://github.com/STOM-Group/USF-Beamer-Template,0,3,8,2019-11-19,MIT 124 | 122,中国人民大学,Renmin University of China,https://github.com/gux99/RUCStatBeamer,0,3,5,2021-11-21,MIT 125 | 123,湖南师范大学,Hunan Normal University,https://github.com/ljmdzyx1985/HUNNU_Beamer,0,3,3,2021-03-16, 126 | 124,西南交通大学,Southwest Jiaotong University,https://github.com/Denkiyohou/SWJTU_Slides_Template,0,3,2,2023-10-06,GPL-3.0 127 | 125,苏州大学,Soochow University,https://github.com/ymliucs/SUDA-Beamer-Theme,0,3,1,2023-04-25, 128 | 126,同济大学,Tongji University,https://github.com/BNSWT/TongjiEasyBeamer,0,3,0,2022-10-02,MIT 129 | 127,东南大学,Southeast University,https://github.com/GuanxingLu/SEU-beamer-latex-slide,0,3,0,2023-06-08, 130 | 128,广东工业大学,Guangdong University of Technology,https://github.com/MaxW322/GDUT-Beamer-Template,0,3,0,2024-05-13, 131 | 129,上海海事大学,Shanghai Maritime University,https://github.com/a645162/SHMTU-Beamer-Theme,0,3,0,2024-01-17,LPPL-1.3c 132 | 130,广东工业大学,Guangdong University of Technology,https://github.com/jiahaoli57/GDUT-Beamer-Template,0,3,0,2023-10-19,GPL-3.0 133 | 131,天津大学,Tianjin University,https://github.com/jinfanchris/TJU-Beamer-Template,0,3,0,2023-06-09, 134 | 132,石河子大学,Shihezi University,https://github.com/xunyoyo/SHZU-Beamer-Theme,0,3,0,2023-04-18, 135 | 133,华中科技大学,Huazhong University of Science,https://github.com/PercyLau/METROPOLIS_for_HUST,0,2,2,2019-06-04, 136 | 134,浙江理工大学,Zhejiang Sci-Tech University,https://github.com/spartajet/zstu-beamer,0,2,2,2021-06-20,MIT 137 | 135,南京大学,Nanjing University,https://github.com/EagleBear2002/NJUSE-Beamer-Template,0,2,1,2023-12-31,MIT 138 | 136,东南大学,Southeast University,https://github.com/njustwh2014/SEUBeamerTemplate,0,2,1,2019-09-24,GPL-3.0 139 | 137,同济大学,Tongji University,https://github.com/Andeviking/PPT_Template,0,2,0,2024-04-05,MIT 140 | 138,北京工业大学,Beijing University of Technology,https://github.com/bycore/bjut-beamer,0,2,0,2024-04-23, 141 | 139,上海科技大学,ShanghaiTech University,https://github.com/hist2/slide_template,0,2,0,2022-04-19, 142 | 140,南京林业大学,Nanjing Forestry University,https://github.com/jiangtengkexin/NJFU-Beamer-Theme,0,2,0,2024-01-10,MIT 143 | 141,西安理工大学,Xi'an University of Technology,https://github.com/shincfk/latex-slide-template-with-beamer,0,2,0,2016-09-21, 144 | 142,大连理工大学,Dalian University of Technology,https://github.com/zerlina0106/DLUT-Beamer,0,2,0,2022-08-21,MIT 145 | 143,华中科技大学,Huazhong University of Science,https://github.com/latexstudio/HUST-Beamer-Theme,0,1,1,2022-10-21, 146 | 144,南京大学,Nanjing University,https://github.com/zlc2017/NJUBeamer,0,1,1,2023-05-22, 147 | 145,武汉大学,Wuhan University,https://github.com/FlorianTseng/WHU-Beamer,0,1,0,2025-03-21,MIT 148 | 146,合肥工业大学,HeFei University of Technology,https://github.com/LaureatePoet/Beamer-HFUT-sxxy,0,1,0,2022-04-13, 149 | 147,浙大宁波理工学院,NingboTech University,https://github.com/Republic1024/NTUBeamer,0,1,0,2023-12-13, 150 | 148,西南石油大学,Southwest Petroleum University,https://github.com/befeng/swpu_beamer,0,1,0,2017-03-05, 151 | 149,华北电力大学,North China Electric Power University,https://github.com/liuzhaoze/NCEPU-beamer-template,0,1,0,2024-11-06, 152 | 150,中南大学,Central South University,https://github.com/natsumi-kitazato/XiangyaBeamer,0,1,0,2023-03-03, 153 | 151,华南理工大学,South China University of Technology,https://github.com/wanglh03/SCUT-Beamer-Theme,0,1,0,2022-12-11, 154 | 152,大连交通大学,Dalian Jiaotong University,https://github.com/4tarXu/dljt-beamer,0,0,0,2023-10-06,GPL-3.0 155 | 153,青岛理工大学,Qingdao University of Technology,https://github.com/Leev1s/QUT-Beamer-Template,0,0,0,2022-11-22,MIT 156 | 154,兰州交通大学,Lanzhou Jiaotong University,https://github.com/Neaples-redemption/LZJTU-Beamer-Template,0,0,0,2023-11-09, 157 | 155,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/RongquanHE/a-simple-unofficial-HIT-Latex-beamer-template,0,0,0,2021-09-23, 158 | 156,重庆大学,Chongqing University,https://github.com/SabatierPierre/cquslide,0,0,0,2017-05-31, 159 | 157,浙江农林大学,Zhejiang A&F University,https://github.com/favefan/ZAFUBeamer-Latex,0,0,0,2024-03-31,CC-BY-4.0 160 | 158,上海对外经贸大学,Shanghai University of Foreign Trade and Economic Cooperation,https://github.com/jason51108/SUIBEthesis,0,0,0,2024-01-05, 161 | 159,河南理工大学,Henan Polytechnic University,https://github.com/potatogood/HPU_Beamer_Template,0,0,0,2021-06-07, 162 | 160,浙江工业大学,Zhejiang University of Technology,https://github.com/sichengchen/ZJUT-Beamer-Template,0,0,0,2023-03-29,LPPL-1.3c 163 | 161,天津大学,Tianjin University,https://github.com/tevenfeng/tju-beamer-blue,0,0,0,2018-09-27,GPL-2.0 164 | 162,西湖大学,Westlake University,https://github.com/zhoubay/WestlakeU-Beamer-Theme,0,0,0,2022-03-29, 165 | -------------------------------------------------------------------------------- /data/report.csv: -------------------------------------------------------------------------------- 1 | 序号,中文名,外文名,GitHub仓库,已归档,Star数,Fork数,更新时间,许可证 2 | 0,通用模板,Common Templates,https://github.com/kourgeorge/arxiv-style,0,1280,336,2024-01-02,MIT 3 | 1,国家自然科学基金,National Natural Science Foundation of China,https://github.com/Ruzim/NSFC-application-template-latex,0,971,245,2025-03-06,MIT 4 | 2,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/mohuangrui/ucasproposal,0,658,147,2021-10-29, 5 | 3,通用模板,Common Templates,https://github.com/apoorvkh/cvpr-latex-template,0,579,184,2025-02-10, 6 | 4,国家自然科学基金,National Natural Science Foundation of China,https://github.com/huangwb8/ChineseResearchLaTeX,0,515,67,2025-03-11,MIT 7 | 5,国家自然科学基金,National Natural Science Foundation of China,https://github.com/fylimas/nsfc,0,479,129,2025-03-15, 8 | 6,国家自然科学基金,National Natural Science Foundation of China,https://github.com/YimianDai/iNSFC,0,446,192,2025-05-14,MIT 9 | 7,通用模板,Common Templates,https://github.com/jpeisenbarth/SRS-Tex,0,154,71,2022-09-14,GPL-3.0 10 | 8,西安电子科技大学,Xidian University,https://github.com/note286/xdupgtp,0,106,8,2022-03-18,LPPL-1.3c 11 | 9,通用模板,Common Templates,https://github.com/latextemplates/ieee-enhanced,0,104,37,2025-04-24,0BSD 12 | 10,浙江大学,Zhejiang University,https://github.com/megrxu/zjureport,0,102,36,2023-03-08,LPPL-1.3c 13 | 11,国防科技大学,National Defense University of Science and Technology,https://github.com/TomHeaven/nudtproposal,0,95,33,2024-04-18, 14 | 12,上海交通大学,Shanghai Jiaotong University,https://github.com/NemoYuan2008/SJTU-Thesis-Proposal,0,93,4,2024-11-15,MIT 15 | 13,通用模板,Common Templates,https://github.com/ruohoruotsi/latex-template-arxiv-preprint,0,92,22,2017-11-29,MIT 16 | 14,通用模板,Common Templates,https://github.com/quarto-journals/article-format-template,0,75,18,2025-04-17,MIT 17 | 15,同济大学,Tongji University,https://github.com/TJ-CSCCG/tongji-recommendation-template,0,73,4,2023-11-15,LPPL-1.3c 18 | 16,通用模板,Common Templates,https://github.com/cdc08x/letter-2-reviewers-LaTeX-template,0,68,24,2025-03-07,GPL-3.0 19 | 17,华北理工大学,North China University of Science and Technology,https://github.com/muyuuuu/A-customized-MCM-LaTeX-template-based-on-ctexart,0,58,18,2021-02-07,GPL-3.0 20 | 18,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/jweihe/UCAS_Latex_Template,0,58,4,2023-06-07, 21 | 19,通用模板,Common Templates,https://github.com/stoufa/ISI-LaTeX-Template,0,55,31,2020-06-14, 22 | 20,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/Htallone/JBUAA,0,54,20,2018-08-21, 23 | 21,(美国)麻省理工学院,Massachusetts Institute of Technology (MIT),https://github.com/mit-eecs-gsa/mit-eecs-thesis-proposal-template,0,52,36,2024-01-30,MIT 24 | 22,武汉理工大学,Wuhan University of Technology,https://github.com/huangyxi/whutmod,0,51,17,2024-03-14, 25 | 23,通用模板,Common Templates,https://github.com/AASJournals/AASTeX60,0,49,27,2025-01-29,LPPL-1.3c 26 | 24,西安电子科技大学,Xidian University,https://github.com/note286/xduugtp,0,49,3,2022-03-09,LPPL-1.3c 27 | 25,通用模板,Common Templates,https://github.com/AravindVasudev/Statement-of-Purpose,0,46,12,2018-12-25,MIT 28 | 26,通用模板,Common Templates,https://github.com/zshufan/UESTC_Lab_Report_LaTeX_Template,0,46,6,2019-08-02,LPPL-1.3c 29 | 27,通用模板,Common Templates,https://github.com/Korogodin/NSLReport,0,43,8,2024-07-11,GPL-3.0 30 | 28,浙江大学,Zhejiang University,https://github.com/longqianh/ZJU-experiment-report-template,0,33,6,2023-02-10,Apache-2.0 31 | 29,通用模板,Common Templates,https://github.com/Chen-Jialin/Assignment-Template,0,31,5,2024-10-06,MIT 32 | 30,东南大学,Southeast University,https://github.com/Teddy-van-Jerry/SEU-ML-Assign_LaTeX_Template,0,30,3,2022-04-15,MIT 33 | 31,通用模板,Common Templates,https://github.com/MBerkayHamurcu/VSCTeX,0,29,3,2025-05-13,CC0-1.0 34 | 32,(挪威)奥斯陆大学,University of Oslo*
(Universitetet i Oslo),https://github.com/uio-latex/mnfrontpage,0,25,3,2020-09-01,MIT 35 | 33,合肥工业大学,HeFei University of Technology,https://github.com/HFUTTUG/HFUT_Course_Report,0,24,4,2022-12-29,LPPL-1.3c 36 | 34,通用模板,Common Templates,https://github.com/Htallone/AAAS,0,24,3,2019-01-09, 37 | 35,通用模板,Common Templates,https://github.com/dpmj/alcazar,0,23,7,2025-02-09,NOASSERTION 38 | 36,中山大学,Sun Yat-sen University,https://github.com/huanyushi/SYSU-SPA-Labreport-Template,0,23,3,2025-05-12,MIT 39 | 37,中山大学,Sun Yat-sen University,https://github.com/NorthSecond/SYSU_Latex_Template,0,23,2,2024-09-26,NOASSERTION 40 | 38,通用模板,Common Templates,https://github.com/ddddavid-he/LaTeXTemplate_ActaPhysicaSinica,0,22,4,2023-01-21,MIT 41 | 39,南京大学,Nanjing University,https://github.com/nju-lug/NJURepo,0,20,7,2021-12-18, 42 | 40,通用模板,Common Templates,https://github.com/NN708/SimpleLabReport,0,20,3,2023-04-24,MIT 43 | 41,电子科技大学,University of Electronic Science and Technology of China,https://github.com/404-NOTFOUND-Coder/UESTC--report--template,0,19,0,2025-04-19, 44 | 42,浙江大学,Zhejiang University,https://github.com/corenel/ZJUProposal,0,18,6,2017-06-29,GPL-3.0 45 | 43,衡阳师范大学,Heng Yang Normal University,https://github.com/wvqusrai/hnu_exam,0,17,9,2024-12-26, 46 | 44,武汉大学,Wuhan University,https://github.com/whutug/whu-proposal,0,17,1,2024-12-04,LPPL-1.3c 47 | 45,中南大学,Central South University,https://github.com/zhong-yy/CSU_Thesis_Proposal,0,14,5,2021-11-19, 48 | 46,湖南大学,Hunan University,https://github.com/zcyeee/HNU_LaTeX_Template,0,14,0,2024-07-14,LPPL-1.3c 49 | 47,(新西兰)奥克兰大学,University of Auckland,https://github.com/jennafin/work-report-latex-sample,0,11,2,2015-07-01, 50 | 48,通用模板,Common Templates,https://github.com/chrrel/latex-report-template,0,9,13,2023-06-25,CC-BY-SA-4.0 51 | 49,西北工业大学,Northwestern Polytechnical University,https://github.com/NPUSCG/npu-dissertation-proposal,0,9,7,2022-06-04, 52 | 50,西北工业大学,Northwestern Polytechnical University,https://github.com/zzhang1987/NPUResearchProposal,0,9,6,2015-07-23, 53 | 51,东北林业大学,Northeast Forestry University,https://github.com/dustincys/NEFUThesis,0,9,2,2017-10-30, 54 | 52,西北工业大学,Northwestern Polytechnical University,https://github.com/moetayuko/NPU_PhD_proposal,0,9,1,2022-05-25, 55 | 53,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/GFCYqw/Fengrubei_LaTeX_Template,0,7,1,2025-05-22,LPPL-1.3c 56 | 54,武汉大学,Wuhan University,https://github.com/flyQQQHddd/temp-of-report,0,7,0,2024-09-18, 57 | 55,通用模板,Common Templates,https://github.com/sabirdvd/LaTeX-template-for-UPC-thesis-,0,6,7,2024-10-17, 58 | 56,通用模板,Common Templates,https://github.com/marcocrowe/thesis-templates,0,6,0,2024-09-23, 59 | 57,武汉大学,Wuhan University,https://github.com/whutug/course-report,0,6,0,2023-05-28,MIT 60 | 58,(美国)亚利桑那大学,University of Arizona,https://github.com/dafnidrake/UA_Dissertation_Template,0,5,3,2019-05-03, 61 | 59,通用模板,Common Templates,https://github.com/geraked/template-report,0,5,1,2022-07-22,MIT 62 | 60,通用模板,Common Templates,https://github.com/bernardparent/TEXCLASS,0,4,2,2020-10-11,NOASSERTION 63 | 61,北京电影学院,Beijing Film Academy,https://github.com/juneleung/BFA_MasterCourse_Paper_Template,0,4,0,2024-01-29, 64 | 62,(丹麦)奥胡斯大学,Aarhus University*
(Aarhus Universitet),https://github.com/taskbjorn/au-latex,0,4,0,2021-10-03,GPL-3.0 65 | 63,山东大学,Shandong University,https://github.com/Smera1d0/SDU-LaTeX-Template,0,3,1,2024-11-22,MIT 66 | 64,深圳大学,Shenzhen University,https://github.com/jinqKing/SZU-Physics-Experiment-Report-LaTeX-Module,0,3,1,2025-03-11, 67 | 65,北京林业大学,Beijing Forestry University,https://github.com/Bloomberg2000/BJFUThesis-outstanding,0,2,1,2021-06-18, 68 | 66,浙江传媒学院,Communication University of Zhejiang,https://github.com/xiehao/cuzexam,0,1,0,2024-12-19, 69 | 67,(新西兰)奥克兰大学,University of Auckland,https://github.com/Uni-tato/latex-report-template,0,0,0,2023-05-24, 70 | 68,内蒙古大学,Inner Mongolia University,https://github.com/lhxone/IMU_thesis,0,0,0,2023-01-17,MIT 71 | -------------------------------------------------------------------------------- /data/thesis.csv: -------------------------------------------------------------------------------- 1 | 序号,中文名,外文名,GitHub仓库,已归档,Star数,Fork数,更新时间,许可证 2 | 0,清华大学,Tsinghua University,https://github.com/tuna/thuthesis,0,4903,1116,2025-05-13,LPPL-1.3c 3 | 1,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/mohuangrui/ucasthesis,0,3641,944,2024-02-29, 4 | 2,上海交通大学,Shanghai Jiaotong University,https://github.com/sjtug/SJTUThesis,0,3551,799,2025-04-15,Apache-2.0 5 | 3,浙江大学,Zhejiang University,https://github.com/TheNetAdmin/zjuthesis,0,3019,668,2025-01-06,MIT 6 | 4,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/hithesis/hithesis,0,1878,371,2025-04-16, 7 | 5,中国科学技术大学,University of Science and Technology of China,https://github.com/ustctug/ustcthesis,0,1867,431,2025-05-05,LPPL-1.3c 8 | 6,电子科技大学,University of Electronic Science and Technology of China,https://github.com/bdebye/thesisuestc,0,1499,334,2025-04-29, 9 | 7,通用模板,Common Templates,https://github.com/AndreyAkinshin/Russian-Phd-LaTeX-Dissertation-Template,0,1403,708,2025-05-11,CC-BY-4.0 10 | 8,通用模板,Common Templates,https://github.com/ElegantLaTeX/ElegantPaper,0,1365,256,2022-12-31,LPPL-1.3c 11 | 9,通用模板,Common Templates,https://github.com/Pseudomanifold/latex-mimosis,0,1187,134,2023-11-16,MIT 12 | 10,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/BHOSC/BUAAthesis,0,1125,294,2025-01-12,NOASSERTION 13 | 11,武汉大学,Wuhan University,https://github.com/whutug/whu-thesis,0,1109,211,2025-04-28,LPPL-1.3c 14 | 12,西安电子科技大学,Xidian University,https://github.com/note286/xduts,0,938,87,2025-05-04,LPPL-1.3c 15 | 13,复旦大学,Fudan University,https://github.com/stone-zeng/fduthesis,0,923,220,2024-12-08,LPPL-1.3c 16 | 14,通用模板,Common Templates,https://github.com/derric/cleanthesis,0,916,116,2024-02-15, 17 | 15,北京理工大学,Beijing Institute of Technology,https://github.com/BITNP/BIThesis,0,880,107,2025-05-23,LPPL-1.3c 18 | 16,(英国)剑桥大学,University of Cambridge,https://github.com/kks32/phd-thesis-template,0,853,403,2023-07-30,MIT 19 | 17,通用模板,Common Templates,https://github.com/joaomlourenco/novathesis,0,852,146,2025-04-27,LPPL-1.3c 20 | 18,通用模板,Common Templates,https://github.com/suchow/Dissertate,0,731,168,2023-02-18,AGPL-3.0 21 | 19,中山大学,Sun Yat-sen University,https://github.com/SYSU-SCC/sysu-thesis,0,721,79,2025-05-17,GPL-3.0 22 | 20,电子科技大学,University of Electronic Science and Technology of China,https://github.com/shifujun/UESTCthesis,1,610,165,2023-04-24, 23 | 21,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/CheckBoxStudio/BUAAThesis,0,587,110,2024-02-01,MIT 24 | 22,北京大学,Peking University,https://github.com/CasperVector/pkuthss,0,572,194,2024-04-25, 25 | 23,南京大学,Nanjing University,https://github.com/nju-lug/NJUThesis,0,560,84,2025-05-21,LPPL-1.3c 26 | 24,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/sheng-qiang/BUPTBachelorThesis,0,519,121,2022-06-02,MIT 27 | 25,西北工业大学,Northwestern Polytechnical University,https://github.com/NWPUMetaphysicsOffice/Yet-Another-LaTeX-Template-for-NPU-Thesis,0,474,115,2025-05-22,GPL-3.0 28 | 26,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/fwalch/tum-thesis-latex,1,460,264,2022-12-20, 29 | 27,南京大学,Nanjing University,https://github.com/Haixing-Hu/nju-thesis,0,427,150,2021-03-23,GPL-2.0 30 | 28,国防科技大学,National Defense University of Science and Technology,https://github.com/liubenyuan/nudtpaper,0,423,159,2025-04-15, 31 | 29,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/rioxwang/BUPTGraduateThesis,0,409,115,2024-03-05, 32 | 30,电子科技大学,University of Electronic Science and Technology of China,https://github.com/tinoryj/UESTC-Thesis-Latex-Template,0,401,82,2025-02-08,MIT 33 | 31,北京理工大学,Beijing Institute of Technology,https://github.com/BIT-thesis/LaTeX-template,0,385,94,2024-03-21, 34 | 32,华南理工大学,South China University of Technology,https://github.com/mengchaoheng/SCUT_thesis,0,383,68,2025-05-18,GPL-3.0 35 | 33,天津大学,Tianjin University,https://github.com/a171232886/TJUThesis_master_2021,0,368,63,2022-08-26, 36 | 34,通用模板,Common Templates,https://github.com/latextemplates/scientific-thesis-template,0,367,126,2025-04-24,0BSD 37 | 35,南京大学,Nanjing University,https://github.com/njuhan/njuthesis-nju-thesis-template,0,360,108,2024-02-28,GPL-2.0 38 | 36,西安电子科技大学,Xidian University,https://github.com/note286/xdupgthesis,0,344,57,2024-04-18,LPPL-1.3c 39 | 37,南京航空航天大学,Nanjing University of Aeronautics and Astronautics,https://github.com/nuaatug/nuaathesis,0,332,73,2022-09-22,Apache-2.0 40 | 38,同济大学,Tongji University,https://github.com/marquistj13/TongjiThesis,0,329,108,2020-11-02, 41 | 39,广州大学,Guangzhou University,https://github.com/swq123459/GZHU-Report-Latex-Version,0,322,168,2020-05-09,MIT 42 | 40,华中科技大学,Huazhong University of Science,https://github.com/skinaze/HUSTPaperTemp,0,319,50,2022-04-12,MIT 43 | 41,西安交通大学,Xi'an Jiaotong University,https://github.com/obster-y/XJTU-thesis,0,304,59,2025-05-02,LPPL-1.3c 44 | 42,通用模板,Common Templates,https://github.com/pmichaillat/latex-paper,0,294,84,2025-05-18,MIT 45 | 43,重庆大学,Chongqing University,https://github.com/nanmu42/CQUThesis,0,290,66,2022-05-12,NOASSERTION 46 | 44,南方科技大学,Southern University of Science and Technology,https://github.com/iydon/sustechthesis,0,288,71,2025-03-19,LPPL-1.3c 47 | 45,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/YangLaTeX/hitszthesis,0,283,45,2025-03-10,LPPL-1.3c 48 | 46,通用模板,Common Templates,https://github.com/Larry955/Latex-Paper-Templates,0,273,56,2022-02-09, 49 | 47,西北工业大学,Northwestern Polytechnical University,https://github.com/polossk/LaTeX-Template-For-NPU-Thesis,0,272,43,2023-05-17,GPL-3.0 50 | 48,同济大学,Tongji University,https://github.com/TJ-CSCCG/tongji-undergrad-thesis,0,262,28,2025-04-21,LPPL-1.3c 51 | 49,广东工业大学,Guangdong University of Technology,https://github.com/sikouhjw/gdutthesis,0,261,43,2024-03-26,LPPL-1.3c 52 | 50,南方科技大学,Southern University of Science and Technology,https://github.com/SUSTech-CRA/sustech-master-thesis,0,251,55,2025-04-24,LPPL-1.3c 53 | 51,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/tzhuan/ntu-thesis,0,243,130,2022-04-06, 54 | 52,华南师范大学,South China Normal University,https://github.com/scnu/scnuthesis,0,239,68,2024-12-30, 55 | 53,西安交通大学,Xi'an Jiaotong University,https://github.com/Aetf/xjtuthesis,0,233,51,2024-07-09,LPPL-1.3c 56 | 54,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/xiaoyao9933/UCASthesis,0,230,87,2018-10-12, 57 | 55,华南理工大学,South China University of Technology,https://github.com/alwintsui/scutthesis,0,225,52,2025-03-12, 58 | 56,中南大学,Central South University,https://github.com/disc0ver-csu/csu-thesis,0,222,39,2023-10-04, 59 | 57,(波兰)华沙工业大学,Warsaw University of Technology*
(Politechnika Warszawska),https://github.com/ArturB/WUT-Thesis,0,220,21,2023-01-27,GPL-3.0 60 | 58,(英国)剑桥大学,University of Cambridge,https://github.com/cambridge/thesis,0,214,98,2024-04-06,NOASSERTION 61 | 59,中南大学,Central South University,https://github.com/CSUcse/CSUthesis,0,207,49,2025-04-02, 62 | 60,东南大学,Southeast University,https://github.com/Reanon/SEUThesisLatexTemplate,0,206,30,2024-04-18, 63 | 61,南方科技大学,Southern University of Science and Technology,https://github.com/SUSTC/latex-template,0,206,19,2025-01-03, 64 | 62,通用模板,Common Templates,https://github.com/Digital-Media/HagenbergThesis,0,203,48,2025-04-22,NOASSERTION 65 | 63,南京大学,Nanjing University,https://github.com/nju-lug/modern-nju-thesis,0,203,31,2025-03-30,MIT 66 | 64,四川大学,Sichuan University,https://github.com/kevinleeex/scu_thesis_2020,0,200,37,2022-06-08, 67 | 65,东南大学,Southeast University,https://github.com/TouchFishPioneer/SEU-master-thesis,0,198,47,2024-04-22,GPL-3.0 68 | 66,(德国)FOM经济与管理应用科学大学,FOM University of Applied Sciences for Economics and Management*
(FOM Hochschule für Oekonomie & Management gemeinnützige Gesellschaft mbH),https://github.com/andygrunwald/FOM-LaTeX-Template,0,197,220,2025-02-19,MIT 69 | 67,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/TUM-Dev/tum-thesis-latex,0,197,71,2025-03-22, 70 | 68,深圳大学,Shenzhen University,https://github.com/liuchengxu/szuthesis,0,194,67,2020-12-17, 71 | 69,(英国)牛津大学,University of Oxford,https://github.com/mcmanigle/OxThesis,0,192,116,2023-12-13,NOASSERTION 72 | 70,国防科技大学,National Defense University of Science and Technology,https://github.com/TomHeaven/nudt_thesis,0,190,53,2023-02-02,MIT 73 | 71,上海大学,Shanghai University,https://github.com/shuosc/SHU-Bachelor-Thesis-OSC,0,188,35,2025-05-21, 74 | 72,(丹麦)奥尔堡大学,"Aalborg University*
(Aalborg Universitet, AAU)",https://github.com/jkjaer/aauLatexTemplates,0,185,149,2025-05-10,BSD-3-Clause 75 | 73,厦门大学,Xiamen University,https://github.com/zoam/xmu-thesis-grd,0,184,43,2025-04-02, 76 | 74,华中科技大学,Huazhong University of Science,https://github.com/XinzeZhang/HUST-PhD-Thesis-Latex,0,184,41,2025-04-23, 77 | 75,西安电子科技大学,Xidian University,https://github.com/fredqi/xduthesis,0,182,35,2019-03-26, 78 | 76,(英国)伦敦大学学院,University College London (UCL),https://github.com/UCL/ucl-latex-thesis-templates,0,174,119,2022-07-06,NOASSERTION 79 | 77,西安电子科技大学,Xidian University,https://github.com/StickCui/XDUthesis-personal,0,168,69,2022-05-23, 80 | 78,南开大学,Nankai University,https://github.com/NewFuture/NKThesis,0,168,49,2025-05-08,MIT 81 | 79,(伊朗)德黑兰大学,"University of Tehran*
(دانشگاه تهران , UT)",https://github.com/sinamomken/tehran-thesis,0,166,41,2022-12-30,GPL-3.0 82 | 80,合肥工业大学,HeFei University of Technology,https://github.com/HFUTTUG/HFUT_Thesis,0,166,25,2024-09-04,LPPL-1.3c 83 | 81,华中科技大学,Huazhong University of Science,https://github.com/hust-latex/hustthesis,0,162,32,2025-05-08,LPPL-1.3c 84 | 82,兰州大学,Lanzhou University,https://github.com/yuhldr/LZUThesis2020,0,158,27,2025-05-23,AGPL-3.0 85 | 83,(新加坡)南洋理工大学,Nanyang Technological University (NTU),https://github.com/wang-chen/thesis_template_ntu,0,154,52,2021-10-14,MIT 86 | 84,通用模板,Common Templates,https://github.com/sppmg/TW_Thesis_Template,0,154,39,2023-08-07,MIT 87 | 85,浙江大学,Zhejiang University,https://github.com/zhanghai/zju-csse-undergraduate-design-latex-template,1,150,32,2017-06-04, 88 | 86,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/Hsins/NTU-Thesis-LaTeX-Template,0,144,35,2024-08-13,MIT 89 | 87,东南大学,Southeast University,https://github.com/wen-fei/seu-thesis-latex-template,0,143,39,2023-12-04, 90 | 88,(美国)加利福尼亚大学洛杉矶分校,"University of California, Los Angeles (UCLA)",https://github.com/uclathes/uclathes,0,140,86,2020-06-15, 91 | 89,中国科学技术大学,University of Science and Technology of China,https://github.com/ywgATustcbbs/ustcthesis,0,139,51,2016-02-24, 92 | 90,天津大学,Tianjin University,https://github.com/twtstudio/TJUThesisLatexTemplate,0,139,30,2024-06-13,GPL-3.0 93 | 91,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/mediaic/NTU_MS_Thesis,0,137,29,2018-08-13, 94 | 92,浙江大学,Zhejiang University,https://github.com/ZJU-Awesome/write_with_LaTeX,0,136,92,2019-01-08, 95 | 93,浙江大学,Zhejiang University,https://github.com/shuwei1204/ZJUthesis,0,133,50,2018-06-22, 96 | 94,东南大学,Southeast University,https://github.com/seucs/seuthesis,0,127,36,2020-10-28,MIT 97 | 95,(新加坡)新加坡国立大学,National University of Singapore (NUS),https://github.com/streamjoin/nusthesis,0,125,35,2022-07-01,MIT 98 | 96,南京大学,Nanjing University,https://github.com/jiangyy/njuthesis,0,123,21,2019-01-16, 99 | 97,同济大学,Tongji University,https://github.com/SXKDZ/tongjithesis,0,120,14,2020-07-12,Apache-2.0 100 | 98,(日本)名古屋大学,Nagoya University*
(名古屋大学),https://github.com/akira-okumura/MasterThesisTemplate,0,117,27,2024-12-23, 101 | 99,中国人民大学,Renmin University of China,https://github.com/ZebinWang/ructhesis,0,116,64,2022-12-07, 102 | 100,(加拿大)不列颠哥伦比亚大学,University of British Columbia,https://github.com/briandealwis/ubcdiss,0,112,104,2022-12-15,NOASSERTION 103 | 101,吉林大学,Jilin University,https://github.com/jiafeng5513/JLU_Dissertation,0,112,24,2021-06-05, 104 | 102,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/TUM-LIS/tum-dissertation-latex,0,111,53,2023-07-22,CC-BY-4.0 105 | 103,西安电子科技大学,Xidian University,https://github.com/xdlinux/xdba-thesis,1,111,42,2017-04-07,LGPL-3.0 106 | 104,(葡萄牙)阿威罗大学,University of Aveiro*
(Universidade de Aveiro),https://github.com/detiuaveiro/ua-thesis-template,0,110,42,2024-12-16,MIT 107 | 105,苏州大学,Soochow University,https://github.com/tianhaoo/Soochow-University-Thesis-Overleaf-LaTeX-Template,0,110,11,2023-05-18,MIT 108 | 106,台湾成功大学
(國立成功大學),National Cheng Kung University (NCKU),https://github.com/wengan-li/ncku-thesis-template-latex,0,108,46,2025-03-03,NOASSERTION 109 | 107,上海科技大学,ShanghaiTech University,https://github.com/lirundong/shtthesis,0,107,25,2024-01-24,GPL-3.0 110 | 108,东南大学,Southeast University,https://github.com/JosanSun/SEUThesis,0,107,23,2018-05-17,MIT 111 | 109,深圳大学,Shenzhen University,https://github.com/jonzhaocn/szu-thesis-master,0,107,18,2023-11-16, 112 | 110,南京理工大学,Nanjing University of Science and Technology,https://github.com/jiec827/njustThesis,0,106,35,2016-04-09,GPL-2.0 113 | 111,南京大学,Nanjing University,https://github.com/FengChendian/NJUThesis2021,1,106,28,2022-01-08, 114 | 112,南开大学,Nankai University,https://github.com/Tr0py/NKU-thesis-template-2020,0,106,13,2024-06-01, 115 | 113,(荷兰)代尔夫特理工大学,"Delft University of Technology*
(Technische Universiteit Delft, TU Delft)",https://github.com/Inventitech/phd-thesis-template,0,105,57,2024-06-17, 116 | 114,通用模板,Common Templates,https://github.com/mirea-ninja/Latex-Template-for-Report-Diploma-Thesis,0,104,15,2023-04-13, 117 | 115,通用模板,Common Templates,https://github.com/zarrabi/thesis-template,0,101,38,2024-08-30, 118 | 116,华东师范大学,East China Normal University,https://github.com/YijunYuan/ECNU-Undergraduate-LaTeX,1,101,20,2020-04-09,NOASSERTION 119 | 117,同济大学,Tongji University,https://github.com/wyqy/TongjiThesis_Proto,0,101,14,2025-03-05, 120 | 118,(挪威)挪威科技大学,"Norwegian University of Science and Technology*
(Norges teknisk-naturvitenskapelige universitet, NTNU)",https://github.com/COPCSE-NTNU/thesis-NTNU,0,100,394,2024-06-28,MIT 121 | 119,(瑞士)苏黎世联邦理工学院,ETH Zurich*
(Eidgenössische Technische Hochschule Zürich),https://github.com/tuxu/ethz-thesis,0,100,55,2017-03-04, 122 | 120,四川大学,Sichuan University,https://github.com/fanmcgrady/SCU-Thesis-LaTeX-Template,0,100,25,2024-04-08, 123 | 121,华东师范大学,East China Normal University,https://github.com/ECNU-ICA/ECNU_graduation_thesis_template,0,98,20,2022-03-22,MIT 124 | 122,华南理工大学,South China University of Technology,https://github.com/ShevonKuan/SCUT-thesis,1,98,8,2024-05-24, 125 | 123,四川大学,Sichuan University,https://github.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate,0,97,50,2020-11-13, 126 | 124,(俄罗斯)塞瓦斯托波尔国立技术大学,Sevastopol National Technical University*
(Севастопольський національний технічний університет),https://github.com/Amet13/master-thesis,0,97,27,2024-09-24, 127 | 125,山东大学,Shandong University,https://github.com/cnDelbert/SDU_thesis_template_for_postgraduate,0,96,33,2025-05-17, 128 | 126,东南大学,Southeast University,https://github.com/SuikaXhq/seu-bachelor-thesis-2022,0,96,4,2024-03-09,GPL-3.0 129 | 127,厦门大学,Xiamen University,https://github.com/CamuseCao/XMU-thesis,0,94,24,2021-05-21,LPPL-1.3c 130 | 128,厦门大学,Xiamen University,https://github.com/F5Soft/xmu-template,0,94,16,2025-05-07,MIT 131 | 129,东北大学,Northeastern University,https://github.com/sci-m-wang/NEU-Thesis,0,94,8,2025-02-09,Apache-2.0 132 | 130,南方科技大学,Southern University of Science and Technology,https://github.com/Peng-YM/SUSTech-Thesis,1,92,30,2019-10-15,MIT 133 | 131,东南大学,Southeast University,https://github.com/zhimengfan1990/seuthesix,0,91,52,2023-03-19,GPL-3.0 134 | 132,(希腊)雅典国家技术大学,"National Technical University of Athens, NTUA*
(Εθνικό Μετσόβιο Πολυτεχνείο)",https://github.com/estamos/NTUA-ECE-Thesis-Template,0,89,11,2024-10-12,MIT 135 | 133,湖南大学,Hunan University,https://github.com/hnuthesis/hnuthesis,0,87,24,2025-05-13,MIT 136 | 134,中国海洋大学,Ocean University of China,https://github.com/summitgao/OUC-LaTex-bachelor,0,87,17,2024-07-01, 137 | 135,通用模板,Common Templates,https://github.com/severinlandolt/latex-thesis-template,0,85,15,2022-09-20,MIT 138 | 136,(俄罗斯)莫斯科物理技术学院,"Moscow Institute of Physics and Technology*
(Московский Физико-Технический институт, MIPT)",https://github.com/yl3dy/mipt-thesis,0,84,23,2022-05-25,MIT 139 | 137,大连民族大学,Dalian Minzu University,https://github.com/neumason/DLNU,0,84,4,2024-03-10, 140 | 138,北京交通大学,Beijing Jiaotong University,https://github.com/xfdywy/bjtu-thesis-templete,0,82,25,2021-01-03, 141 | 139,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/Jimmy-L4/BUPTGraduateThesis,0,82,3,2024-07-17, 142 | 140,(印度)科泽科德国立理工学院,"National Institute of Technology Calicut, NITC*
(राष्ट्रीय प्रौद्योगिकी संस्थान कालीकट)",https://github.com/k4rtik/latex-project-report-template,0,81,47,2015-01-27, 143 | 141,上海大学,Shanghai University,https://github.com/BlueFisher/shuthesis,0,81,24,2025-03-05, 144 | 142,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/qcts33/BUPTthesis-ctex,0,80,28,2020-08-31, 145 | 143,山东大学,Shandong University,https://github.com/Liam0205/sduthesis,0,79,30,2024-04-03,NOASSERTION 146 | 144,(马耳他)马耳他大学,University of Malta*
(L-Università ta' Malta),https://github.com/jp-um/university_of_malta_LaTeX_dissertation_template,0,78,31,2025-05-05,GPL-3.0 147 | 145,中国地质大学(武汉),China University of Geosciences,https://github.com/Timozer/CUGThesis,0,78,24,2024-03-15,GPL-3.0 148 | 146,福州大学,Fuzhou University,https://github.com/siaimes/ThesisFZU,1,78,13,2024-01-23, 149 | 147,中国海洋大学,Ocean University of China,https://github.com/summitgao/OUC-LaTex-master,0,78,13,2024-07-01, 150 | 148,华中科技大学,Huazhong University of Science,https://github.com/zfengg/HUSTtex,0,78,12,2024-09-24,MIT 151 | 149,台湾阳明交通大学
(國立陽明交通大學),National Yang Ming Chiao Tung University (NYCU),https://github.com/borting/nctu-thesis,0,77,24,2021-07-26, 152 | 150,东北大学,Northeastern University,https://github.com/tzaiyang/NEUBachelorThesis,0,77,11,2018-06-18, 153 | 151,(美国)加利福尼亚大学欧文分校,"University of California, Irvine (UCI)",https://github.com/lotten/uci-thesis-latex,0,76,55,2022-04-13, 154 | 152,中南大学,Central South University,https://github.com/CSGrandeur/CSU-Thesis-LaTeX-Template,0,76,36,2022-06-27, 155 | 153,桂林电子科技大学,Guilin University of Electronic Science and Technology,https://github.com/YanMing-lxb/GUET_Thesis_LaTeX,0,76,15,2025-05-15,LPPL-1.3c 156 | 154,(美国)华盛顿大学,University of Washington (UW),https://github.com/UWIT-IAM/UWThesis,1,75,61,2021-11-09,NOASSERTION 157 | 155,香港科技大学
(香港科技大學),Hong Kong University Of Science And Technology (HUST),https://github.com/Cheedoong/hkust-latex-thesis,0,75,42,2018-01-09, 158 | 156,(加拿大)多伦多大学,University of Toronto,https://github.com/jessexknight/ut-thesis,0,75,28,2024-07-26, 159 | 157,香港大学
(香港大學),University of Hong Kong (UHK),https://github.com/monaen/HKU-Thesis-Template,0,75,12,2020-10-27, 160 | 158,台湾阳明交通大学
(國立陽明交通大學),National Yang Ming Chiao Tung University (NYCU),https://github.com/hungys/nctu-thesis-latex,0,74,29,2021-01-01, 161 | 159,(越南)河内国家大学,"Vietnam National University, Hanoi*
(Đại học Quốc gia Hà Nội)",https://github.com/leduyquang753/uet-graduation-latex,0,74,12,2024-12-31,MIT 162 | 160,(美国)加利福尼亚大学圣迭戈分校,"University of California, San Diego (UCSD)",https://github.com/ucsd-thesis/ucsd-thesis,0,73,58,2022-06-27,MIT 163 | 161,四川大学,Sichuan University,https://github.com/fatestigma/scuthesis,0,73,16,2020-04-26,LPPL-1.3c 164 | 162,华东师范大学,East China Normal University,https://github.com/Koyamin/ECNUThesis-Undergraduate,0,72,20,2024-04-16,LPPL-1.3c 165 | 163,武汉理工大学,Wuhan University of Technology,https://github.com/tsaoyu/WHUT-LaTeX-bachelor,0,71,25,2019-06-07, 166 | 164,东南大学,Southeast University,https://github.com/DansYU/SeuThesiY,0,71,20,2024-11-10,GPL-3.0 167 | 165,西北工业大学,Northwestern Polytechnical University,https://github.com/NPUSCG/nputhesis,0,70,35,2021-05-10, 168 | 166,复旦大学,Fudan University,https://github.com/Pandoxie/FDU-Thesis-Latex,0,70,20,2018-02-02,MIT 169 | 167,通用模板,Common Templates,https://github.com/emersonmello/modelos-latex,0,69,39,2025-04-30,CC0-1.0 170 | 168,复旦大学,Fudan University,https://github.com/yzbrlan/fudan-thesis-latex-template,0,69,19,2023-03-30, 171 | 169,(匈牙利)罗兰大学,"Eötvös Loránd University*
(Eötvös Loránd Tudományegyetem, ELTE)",https://github.com/mcserep/elteikthesis,0,69,16,2024-04-26,NOASSERTION 172 | 170,通用模板,Common Templates,https://github.com/wk910930/paper-template,0,68,30,2017-05-08, 173 | 171,合肥工业大学,HeFei University of Technology,https://github.com/netcan/HFUT_Thesis,0,67,20,2021-05-24, 174 | 172,台湾阳明交通大学
(國立陽明交通大學),National Yang Ming Chiao Tung University (NYCU),https://github.com/chiehmin/nctu-thesis,0,66,18,2017-09-12, 175 | 173,通用模板,Common Templates,https://github.com/XuehaiPan/LaTeX-Templates,0,66,14,2022-07-05,MIT 176 | 174,同济大学,Tongji University,https://github.com/yanjyeli/TONGJITHESIS,0,65,23,2016-04-16, 177 | 175,(俄罗斯)塞瓦斯托波尔国立技术大学,Sevastopol National Technical University*
(Севастопольський національний технічний університет),https://github.com/Amet13/bachelor-diploma,0,65,15,2017-04-17, 178 | 176,通用模板,Common Templates,https://github.com/oist/LaTeX-templates,0,64,57,2022-09-26,MIT 179 | 177,(土耳其)伊斯坦布尔科技大学,"Istanbul Technical University*
(istanbul Teknik Üniversitesi, ITU)",https://github.com/ondes/Template-Latex-ITU-Thesis,0,64,23,2023-10-21, 180 | 178,北京理工大学,Beijing Institute of Technology,https://github.com/jiandahao/BIT-thesis-LaTex,0,64,20,2020-05-06,MIT 181 | 179,河海大学,Hohai University,https://github.com/caowenhan/hhuthesis,0,64,15,2022-02-11,LPPL-1.3c 182 | 180,东北大学,Northeastern University,https://github.com/Acytoo/neu_bachelor_thesis_template,0,64,14,2019-06-11, 183 | 181,南京信息工程大学,Nanjing University of Information Engineering,https://github.com/sakronos/NUIST_Bachelor_Thesis_LaTeX_Template,0,64,10,2022-05-14,GPL-3.0 184 | 182,(美国)马萨诸塞大学,University of Massachusetts (UMass),https://github.com/umasscs/umassthesis,0,63,47,2023-10-18, 185 | 183,南京邮电大学,Nanjing University of Posts and Telecommunications,https://github.com/gzr-lgtm/NJUPThesis-Bachelor,0,63,11,2022-05-02,LPPL-1.3c 186 | 184,(荷兰)代尔夫特理工大学,"Delft University of Technology*
(Technische Universiteit Delft, TU Delft)",https://github.com/dzwaneveld/tudelft-report-thesis-template,0,62,22,2024-09-05, 187 | 185,同济大学,Tongji University,https://github.com/TJ-CSCCG/Tongji-Beamer,0,62,6,2023-11-22,LPPL-1.3c 188 | 186,(美国)麻省理工学院,Massachusetts Institute of Technology (MIT),https://github.com/kljensen/mit-phd-thesis,1,61,32,2024-02-26, 189 | 187,香港科技大学
(香港科技大學),Hong Kong University Of Science And Technology (HUST),https://github.com/fcyu/HKUST_PhD_MPhil_thesis_Latex,0,61,27,2021-10-06,GPL-3.0 190 | 188,南开大学,Nankai University,https://github.com/kongxiao0532/NKU_Bachelor_Thesis_Template,0,60,24,2019-03-13, 191 | 189,重庆大学,Chongqing University,https://github.com/neardws/My-Doctoral-Dissertation,0,60,10,2024-03-30,NOASSERTION 192 | 190,香港中文大学
(香港中文大學),Chinese University of Hong Kong (CUHK),https://github.com/lixin4ever/CUHK-PHD-Thesis-Template,0,59,24,2021-04-10, 193 | 191,上海大学,Shanghai University,https://github.com/zeakey/shu-thesis,0,59,15,2019-12-11, 194 | 192,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/Kelmory/BUAA-Thesis-BWE,1,59,8,2019-06-12,MIT 195 | 193,厦门大学,Xiamen University,https://github.com/neofung/XMU_master_and_doctor_degree_thesis,0,58,29,2016-06-23, 196 | 194,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/dustincys/PlutoThesis,0,58,28,2017-11-23, 197 | 195,北京理工大学,Beijing Institute of Technology,https://github.com/qiuzhu/BITthesis,0,58,19,2017-10-11,GPL-3.0 198 | 196,郑州大学,Zhengzhou University,https://github.com/tuxify/zzuthesis,0,57,24,2023-05-31, 199 | 197,西安交通大学,Xi'an Jiaotong University,https://github.com/Tedxz/xjtuthesis-x,0,57,19,2019-05-19, 200 | 198,(美国)斯坦福大学,Stanford University,https://github.com/dcroote/stanford-thesis-example,0,56,21,2024-03-10,MIT 201 | 199,吉林大学,Jilin University,https://github.com/maxuewei2/JLUThesis2020,0,56,13,2023-12-10, 202 | 200,通用模板,Common Templates,https://github.com/being24/latex-template-ja,0,55,59,2025-05-23,CC0-1.0 203 | 201,武汉理工大学,Wuhan University of Technology,https://github.com/huangyxi/WHUT-Bachelor,0,54,9,2025-03-14, 204 | 202,东南大学,Southeast University,https://github.com/Teddy-van-Jerry/seuthesis2024b,0,54,4,2024-08-28,MIT 205 | 203,(美国)威斯康星大学麦迪逊分校,University of Wisconsin-Madison,https://github.com/willb/wi-thesis-template,0,53,36,2016-05-17,NOASSERTION 206 | 204,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/waltsims/TUM_Thesis_Template_CSE,0,53,28,2020-05-08, 207 | 205,台湾阳明交通大学
(國立陽明交通大學),National Yang Ming Chiao Tung University (NYCU),https://github.com/Po-haoHuang/nctu-thesis,0,53,20,2023-02-19, 208 | 206,台湾阳明交通大学
(國立陽明交通大學),National Yang Ming Chiao Tung University (NYCU),https://github.com/JingWangTW/NYCU-Thesis-Template,0,53,11,2025-02-23,GPL-3.0 209 | 207,吉林大学,Jilin University,https://github.com/x86vk/JLU-CCST-Thesis,0,53,11,2018-06-10,MIT 210 | 208,北京交通大学,Beijing Jiaotong University,https://github.com/paulzhn/bjtu-bachelor-thesis,0,53,6,2022-06-28, 211 | 209,通用模板,Common Templates,https://github.com/rmathsphys/latex-templates,0,52,6,2024-09-04,MIT 212 | 210,(德国)IU国际应用科学大学,IU International University of Applied Sciences,https://github.com/markushaug/iu-latex-template,0,51,14,2025-05-08,MIT 213 | 211,(波兰)华沙工业大学,Warsaw University of Technology*
(Politechnika Warszawska),https://github.com/SP5LMA/EE-dyplom,0,51,13,2025-04-07,CC-BY-4.0 214 | 212,华南理工大学,South China University of Technology,https://github.com/OChicken/SCUT-Bachelor-Thesis-Template,0,51,12,2024-04-13, 215 | 213,上海海事大学,Shanghai Maritime University,https://github.com/hellckt/SHMTUThesis,0,50,15,2022-05-29,Apache-2.0 216 | 214,湖南大学,Hunan University,https://github.com/leaf-hsiao/HNUThesisTemplate,0,50,12,2019-12-11, 217 | 215,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/myhsia/hduthesis,0,50,1,2025-03-24, 218 | 216,南京大学,Nanjing University,https://github.com/ZLCao/NJUBachelor,0,49,21,2019-06-25, 219 | 217,香港科技大学
(香港科技大學),Hong Kong University Of Science And Technology (HUST),https://github.com/onlytailei/HKUST_latex_thesis_2019,0,49,16,2023-01-02, 220 | 218,北京科技大学,Beijing University of Science and Technology,https://github.com/Jeff-Hugh/USTBThesis,0,49,13,2022-12-01, 221 | 219,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/houluy/bupTemplate,0,49,9,2019-09-19,GPL-3.0 222 | 220,(美国)科罗拉多州立大学,Colorado State University,https://github.com/idfah/csuthesis,0,48,37,2020-05-08,NOASSERTION 223 | 221,台湾清华大学
(國立清華大學),National Tsing Hua University (NTHU),https://github.com/HW-Lee/nthu-thesis-template,0,48,29,2016-07-26, 224 | 222,天津大学,Tianjin University,https://github.com/liangzhenduo/TJU-thesis-template,0,48,16,2020-03-14, 225 | 223,江南大学,Jiangnan University,https://github.com/xen0n/JNUthesis,0,48,12,2019-06-16,GPL-2.0 226 | 224,中国海洋大学,Ocean University of China,https://github.com/OSOUC/UndergraduateThesisLaTeXTemplate,0,47,9,2022-05-01,MIT 227 | 225,北京师范大学,Beijing Normal University,https://github.com/jinyiliu/bnu-thesis-template,1,47,9,2025-03-03, 228 | 226,(挪威)特罗姆瑟大学- 挪威北极圈大学,UiT The Arctic University of Norway*
(Universitetet i Tromsø – Norges arktiske universitet),https://github.com/egraff/uit-thesis,0,46,46,2025-05-24,NOASSERTION 229 | 227,天津大学,Tianjin University,https://github.com/jiangqideng/tjuthesis_master_2016,0,46,19,2021-10-02, 230 | 228,浙江工业大学,Zhejiang University of Technology,https://github.com/zjutjh/zjutthesis,0,45,31,2023-01-30, 231 | 229,华东师范大学,East China Normal University,https://github.com/DeepTrial/ECNU-Dissertations-Latex-Template,0,45,16,2021-11-15,NOASSERTION 232 | 230,重庆邮电大学,Chongqing University of Posts and Telecommunications,https://github.com/coding-tan/CQUPTtex,0,45,3,2022-07-21, 233 | 231,西南财经大学,Southwestern University of Finance and Economics,https://github.com/sierxue/ThesisSWUFE,0,44,10,2023-01-01, 234 | 232,西南交通大学,Southwest Jiaotong University,https://github.com/Sophie10001b/swjtuThesisV3.0,0,44,9,2025-04-20, 235 | 233,西北工业大学,Northwestern Polytechnical University,https://github.com/lihanshu/NWPU-Thesis-Template,0,44,7,2025-05-13,MIT 236 | 234,暨南大学,Jinan University,https://github.com/ytZhou/JNUMasterThesis,0,43,15,2023-06-16, 237 | 235,武汉理工大学,Wuhan University of Technology,https://github.com/Jiayin-Gu/WUTthesis,0,43,12,2020-11-01, 238 | 236,中国海洋大学,Ocean University of China,https://github.com/ouc-ocean-group/oucthesis,1,43,12,2022-12-13, 239 | 237,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/yzd-v/BUAA_thesis_overleaf,0,43,5,2021-12-04,NOASSERTION 240 | 238,(新加坡)南洋理工大学,Nanyang Technological University (NTU),https://github.com/doem97/NTU-EEE-MSc-Dissertation-Template,0,43,4,2022-07-15, 241 | 239,苏州大学,Soochow University,https://github.com/shadowofgost/sudathesis-soochow-university-latex-template,0,43,3,2025-03-03,LPPL-1.3c 242 | 240,北京化工大学,Beijing University of Chemical Technology,https://github.com/the-ccsn/BUCTthesis,0,43,2,2024-07-10,LPPL-1.3c 243 | 241,西交利物浦大学,Xi'an Jiaotong-Liverpool University,https://github.com/feimax/latex_template_for_xjtlu_eee,0,42,17,2017-11-27,GPL-3.0 244 | 242,上海大学,Shanghai University,https://github.com/ahhylau/shuthesis,0,42,16,2024-01-17, 245 | 243,(日本)庆应义塾大学,Keio University*
(慶應義塾),https://github.com/ymrl/thesis-template,0,42,16,2012-12-20, 246 | 244,河海大学,Hohai University,https://github.com/davyxx3/hhu-thesis-bachelor,0,42,1,2024-06-21,MIT 247 | 245,东北大学,Northeastern University,https://github.com/mervin0502/neuthesis,0,41,20,2020-09-08,Apache-2.0 248 | 246,(德国)达姆施塔特工业大学,"Industrial University of Darmstadt*
(Technische Universität Darmstadt, TU Darmstadt)",https://github.com/zemirco/tu-darmstadt-latex-thesis,0,41,19,2013-03-03, 249 | 247,(英国)爱丁堡大学,University of Edinburgh*
(Oilthigh Dhùn Èideann),https://github.com/james-d-h/quarto-phd-thesis,0,41,16,2023-05-03,MIT 250 | 248,东北大学,Northeastern University,https://github.com/NEUAI/neuthesis-enhanced,0,41,11,2021-04-24,Apache-2.0 251 | 249,(韩国)首尔大学,"Seoul National University, SNU*
(서울대학교)",https://github.com/Zeta611/snu-ece-bsc-thesis,0,41,7,2024-07-02,MIT 252 | 250,上海交通大学,Shanghai Jiaotong University,https://github.com/zhangzhanluo/SJTU-thesis-template,0,41,4,2021-06-01, 253 | 251,(德国)斯图加特大学,University of Stuttgart*
(Universität Stuttgart),https://github.com/latextemplates/uni-stuttgart-dissertation-template,0,40,21,2025-04-24,MIT 254 | 252,中国科学院自动化研究所,"Institute of Automation, Chinese Academy of Sciences",https://github.com/phoenix1917/CASIA-Thesis,0,40,12,2018-03-06, 255 | 253,苏州大学,Soochow University,https://github.com/hinesboy/SUDA-Latex,0,40,10,2022-05-24, 256 | 254,(希腊)雅典大学,"National and Kapodistrian University of Athens, NKUA*
(Εθνικό και Καποδιστριακό Πανεπιστήμιο Αθηνών)",https://github.com/errikos/dithesis,0,40,4,2023-08-15,LPPL-1.3c 257 | 255,西南交通大学,Southwest Jiaotong University,https://github.com/Studio513/swjtuThesis,0,39,18,2015-12-08, 258 | 256,哈尔滨工程大学,Harbin Engineering University,https://github.com/Benyjuice/hrbeuthesis,0,39,9,2016-03-18, 259 | 257,四川大学,Sichuan University,https://github.com/dahakawang/scu_thesis_template,0,39,8,2021-01-08, 260 | 258,上海交通大学,Shanghai Jiaotong University,https://github.com/ZepengW/Latex-PG-SJTU,0,39,0,2023-01-04, 261 | 259,北京师范大学,Beijing Normal University,https://github.com/xysmlx/BNUBachelorThesis,0,38,20,2018-03-19, 262 | 260,台湾清华大学
(國立清華大學),National Tsing Hua University (NTHU),https://github.com/signxer/nthu-thesis-template-mod,0,38,18,2018-11-11, 263 | 261,西南交通大学,Southwest Jiaotong University,https://github.com/swjtutug/swjtuthesis,0,38,9,2019-12-09, 264 | 262,华东师范大学,East China Normal University,https://github.com/c834606877/ECNU-Paper-Template,0,38,8,2021-12-05, 265 | 263,南昌大学,Nanchang University,https://github.com/Jin-bao/NCU-thesis,0,38,3,2025-05-14,LPPL-1.3c 266 | 264,(美国)约翰斯·霍普金斯大学,Johns Hopkins University,https://github.com/weitzner/jhu-thesis-template,0,37,87,2018-07-18, 267 | 265,澳门科技大学
(澳門科技大學),Macau University of Science and Technology (MUST),https://github.com/iihciyekub/MUST-Thesis,0,37,13,2024-04-25, 268 | 266,通用模板,Common Templates,https://github.com/PKief/latex-thesis-template,0,37,9,2025-02-07, 269 | 267,深圳技术大学,Shenzhen University of Technology,https://github.com/SZTU-ACM/SZTU-Thesis-Latex-Template,0,37,9,2024-05-20,GPL-3.0 270 | 268,(加拿大)阿尔伯塔大学,University of Alberta,https://github.com/draldric/uAlberta-Thesis-LaTeX-Template,0,37,9,2025-05-08,MIT 271 | 269,北京工业大学,Beijing University of Technology,https://github.com/xiaoyaoE/bjutThesis,0,37,7,2021-01-14, 272 | 270,西安电子科技大学,Xidian University,https://github.com/Faust-Wang/XDUthesis_xelatex-master-2019,0,37,5,2020-04-24,GPL-3.0 273 | 271,武汉理工大学,Wuhan University of Technology,https://github.com/mengyuqianxun/WHUT--LaTeX-bachelor-thesis,0,37,5,2020-07-16, 274 | 272,暨南大学,Jinan University,https://github.com/Latiyas/JNUThesis,0,37,3,2025-03-31, 275 | 273,华中科技大学,Huazhong University of Science,https://github.com/pyrocat101/hust-thesis-pandoc,0,36,12,2018-11-13, 276 | 274,兰州大学,Lanzhou University,https://github.com/mosesnow/LZUthesis,0,36,11,2022-04-14, 277 | 275,上海工程技术大学,Shanghai University of Engineering and Technology,https://github.com/MobtgZhang/sues-thesis,0,36,8,2025-03-17,MIT 278 | 276,通用模板,Common Templates,https://github.com/Pinzauti/LaTeX-thesis-template,0,36,4,2024-06-26,MIT 279 | 277,上海理工大学,Shanghai University of Technology,https://github.com/FrankSFLYS/usstthesis,0,36,3,2022-03-07,Apache-2.0 280 | 278,(日本)北陆先端科学技术大学院大学,"Japan Advanced Institute of Science and Technology*
(北陸先端科学技術大学院大学, JAIST)",https://github.com/linwest/JAISTthesisLaTeX,0,35,23,2019-03-31, 281 | 279,(美国)密歇根州立大学,Michigan State University,https://github.com/amunn/msu-thesis,0,35,13,2024-07-08, 282 | 280,(德国)柏林工业大学,Technical University of Berlin*
(Technische Universität Berlin),https://github.com/holgern/TUB_PhDThesisTemplate,0,35,13,2017-11-10,MIT 283 | 281,(波兰)西里西亚理工大学,Silesian University of Technology*
(Politechnika Śląska),https://github.com/ksiminski/polsl-aei-theses,0,35,5,2025-01-09, 284 | 282,南京大学,Nanjing University,https://github.com/anyirao/NJUThesis2018,0,34,43,2018-06-24, 285 | 283,西安交通大学,Xi'an Jiaotong University,https://github.com/Ming-Zhang-XJTU/XJTU-Thesis-Template,0,34,16,2017-10-05, 286 | 284,中山大学,Sun Yat-sen University,https://github.com/guanyingc/SYSU-LaTex-Thesis,0,34,6,2017-04-03, 287 | 285,北京大学,Peking University,https://github.com/Thesharing/pkuthss,0,33,13,2020-04-16, 288 | 286,台湾科技大学
(國立臺灣科技大學),National Taiwan University of Science and Technology (NTUST),https://github.com/hadziq/ntust-thesis,0,33,13,2022-07-30,Apache-2.0 289 | 287,浙江大学,Zhejiang University,https://github.com/DelightRun/ZJUThesis-MPhil,0,33,12,2019-01-14,MIT 290 | 288,浙江传媒学院,Communication University of Zhejiang,https://github.com/xiehao/cuzthesis,0,32,9,2025-05-25, 291 | 289,北京工业大学,Beijing University of Technology,https://github.com/bjut-swift/BJUTLATEX,0,32,5,2024-03-25,Apache-2.0 292 | 290,中国科学技术大学,University of Science and Technology of China,https://github.com/acgotaku/USTC-SSE-THESIS,0,32,4,2017-03-04, 293 | 291,云南大学,Yunnan University,https://github.com/Astro-Lee/YNU-thesis-bachelor,0,32,2,2025-03-07,MIT 294 | 292,复旦大学,Fudan University,https://github.com/FHDWPB/latex-thesis-template,0,31,26,2023-12-08,Apache-2.0 295 | 293,(瑞士)西部应用科学与艺术大学,"University of Applied Sciences and Arts of Western Switzerland*
(Haute École spécialisée de Suisse occidentale, HES-SO)",https://github.com/mdemierre/hesso-latextemplate-thesis,0,31,10,2023-09-26,Apache-2.0 296 | 294,(美国)乔治·华盛顿大学,George Washington University (GWU),https://github.com/skulumani/thesis-gwu,0,30,16,2022-07-27,GPL-3.0 297 | 295,香港理工大学
(香港理工大學),Hong Kong Polytechnic University (PolyU),https://github.com/quxiaofeng/PolyU_thesis_template,0,30,15,2018-09-07, 298 | 296,(奥地利)约翰内斯·开普勒大学,"Johannes Kepler University Linz, JKU*
(Johannes Kepler Universität Linz)",https://github.com/michaelroland/jku-templates-report-latex,0,30,10,2025-01-16,MPL-2.0 299 | 297,台湾中正大学
(國立中正大學),National Chung Cheng University (CCU),https://github.com/anlit75/CCU-Thesis-LaTeX-Template,0,30,7,2025-05-05,MIT 300 | 298,苏州大学,Soochow University,https://github.com/huhamhire/sudathesis,0,30,7,2014-06-25,GPL-3.0 301 | 299,上海对外经贸大学,Shanghai University of Foreign Trade and Economic Cooperation,https://github.com/Yangruipis/SUIBEthesis,0,30,5,2023-12-05,MIT 302 | 300,湖南大学,Hunan University,https://github.com/ljmdzyx1985/HNUthesis_master,0,30,5,2019-05-29, 303 | 301,北京大学,Peking University,https://github.com/doubleZ0108/pkuthss-mac,0,30,4,2021-12-18, 304 | 302,吉林大学,Jilin University,https://github.com/jlshen025/JLUThesis,0,30,2,2024-04-24,MIT 305 | 303,深圳大学,Shenzhen University,https://github.com/yichengsu/szuthesis,0,30,2,2021-02-23, 306 | 304,北京大学,Peking University,https://github.com/qu-tan-um/PKU_EECS_UGR_THSS,0,29,24,2020-07-04, 307 | 305,桂林电子科技大学,Guilin University of Electronic Science and Technology,https://github.com/wrm244/GUEThesis,0,29,4,2024-05-23,LPPL-1.3c 308 | 306,南京信息工程大学,Nanjing University of Information Engineering,https://github.com/hy5468/NUIST-LaTeX,0,29,2,2021-04-10,MIT 309 | 307,通用模板,Common Templates,https://github.com/viafanasyev/bachelor-thesis-template,0,29,2,2023-01-15,MIT 310 | 308,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/LeoAlex0/LaTeX-HDU-Bachelor-Thesis,0,29,1,2021-05-17,MIT 311 | 309,(美国)印第安纳大学,Indiana University,https://github.com/liang-chen/IU-PhD-Thesis-Template,0,28,28,2018-05-01,MIT 312 | 310,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/iphyer/UCASThesisTemplete,0,28,12,2021-01-16,MIT 313 | 311,天津大学,Tianjin University,https://github.com/HeliosZhao/TJU-Thesis-2020,0,28,9,2020-05-12, 314 | 312,浙江大学,Zhejiang University,https://github.com/eclipselu/zjuthesis-mphil,0,28,9,2017-01-16, 315 | 313,长安大学,Chang'an University,https://github.com/xiaoleeza/chdthesis,0,28,9,2021-05-24,LPPL-1.3c 316 | 314,(新加坡)新加坡国立大学,National University of Singapore (NUS),https://github.com/saurabhg17/SPhdThesis,0,28,8,2014-06-20,NOASSERTION 317 | 315,香港中文大学
(香港中文大學),Chinese University of Hong Kong (CUHK),https://github.com/Cysu/phd-thesis,0,28,6,2017-08-29, 318 | 316,北京林业大学,Beijing Forestry University,https://github.com/DeeDive/BJFUThesis,0,28,6,2022-06-21, 319 | 317,西南石油大学,Southwest Petroleum University,https://github.com/jinggqu/swputhesis,0,28,6,2023-09-07,GPL-3.0 320 | 318,通用模板,Common Templates,https://github.com/pddg/latex-template-ja,0,28,6,2023-04-01,CC0-1.0 321 | 319,华中师范大学,Central China Normal University,https://github.com/xkwxdyy/CCNUthesis,0,28,4,2025-04-11,LPPL-1.3c 322 | 320,华南理工大学,South China University of Technology,https://github.com/yecfly/scut-thesis,0,28,4,2021-03-15, 323 | 321,中国传媒大学,Communication University of China,https://github.com/YunYouJun/cucthesis,0,28,2,2024-06-14,LPPL-1.3c 324 | 322,厦门大学,Xiamen University,https://github.com/kirainmoe/xmu-thesis-latex-template,0,28,2,2022-05-10,MIT 325 | 323,(瑞士)苏黎世应用科技大学,Zurich University of Applied Sciences (ZHAW)*
(ZHAW Zürcher Hochschule für Angewandte Wissenschaften),https://github.com/matteodelucchi/ZHAW_thesis-template,0,27,77,2024-10-28, 326 | 324,中国农业大学,China Agricultural University,https://github.com/Cdmium/CAUTemplate,0,27,13,2020-08-06, 327 | 325,中国石油大学(华东),China University of Petroleum (East China),https://github.com/walkman-z/upc-thesis-2020,0,27,5,2020-08-16,MIT 328 | 326,华东师范大学,East China Normal University,https://github.com/ddusen/ecnu-master-thesis-template,0,27,3,2023-02-23,Apache-2.0 329 | 327,南京林业大学,Nanjing Forestry University,https://github.com/iamty/thesis-NJFU,0,27,2,2023-01-09,LPPL-1.3c 330 | 328,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/wuzhouhui/ucas_ict_thesis,0,26,12,2017-04-26, 331 | 329,华东师范大学,East China Normal University,https://github.com/Baileyswu/ECNU-thesis-template,0,26,10,2023-07-16,NOASSERTION 332 | 330,(葡萄牙) 里斯本高等理工学院,"Instituto Superior Técnico*
(Instituto Superior Técnico, IST)",https://github.com/themiguelamador/ThesisIST,0,26,8,2023-06-16, 333 | 331,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/MichaelGrupp/TTT,0,26,7,2017-11-26,WTFPL 334 | 332,上海师范大学,Shanghai Normal University,https://github.com/andy123t/shnuthesis,0,26,7,2025-05-08,MIT 335 | 333,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/m13253/LaTeX-HDU-Bachelor-Thesis,0,26,7,2020-01-06,MIT 336 | 334,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/garrettj403/ThesisPlots,0,26,6,2019-02-18, 337 | 335,华北电力大学,North China Electric Power University,https://github.com/obster-y/NCEPU-thesis,0,26,6,2021-11-20,LPPL-1.3c 338 | 336,(德国)达姆施塔特工业大学,"Industrial University of Darmstadt*
(Technische Universität Darmstadt, TU Darmstadt)",https://github.com/JeyRunner/tuda-typst-templates,0,26,5,2025-05-09,MIT 339 | 337,浙江大学,Zhejiang University,https://github.com/denil1111/ZJU-Thesis-Template-for-Mac,0,26,4,2017-03-27,MIT 340 | 338,(伊朗)哈杰·纳西尔丁·图西理工大学,Khajeh Nasir Toosi University of Technology*
(دانشگاه صنعتی خواجه نصيرالدين طوسی),https://github.com/msinamsina/kntu-thesis,0,26,4,2024-03-30,GPL-3.0 341 | 339,中山大学,Sun Yat-sen University,https://github.com/irenier/sysuthesis,0,26,2,2025-04-30,BSD-3-Clause 342 | 340,北京大学,Peking University,https://github.com/wongsingfo/pku-grad-thesis,0,26,2,2022-05-15, 343 | 341,武汉大学,Wuhan University,https://github.com/yaochenzhu/whu-rsie-master-thesis,0,26,2,2022-05-19,MIT 344 | 342,重庆邮电大学,Chongqing University of Posts and Telecommunications,https://github.com/lusccc/cqupt-thesis,0,26,0,2021-02-08, 345 | 343,中山大学,Sun Yat-sen University,https://github.com/zhibo/sysuthesis,0,25,19,2013-04-15, 346 | 344,通用模板,Common Templates,https://github.com/davidptclark/phd-thesis-template,0,25,12,2022-02-19,LPPL-1.3c 347 | 345,台湾台北科技大学
(國立臺北科技大學),National Taipei University of Technology,https://github.com/ntut-xuan/NTUT-Thesis-Template,0,25,10,2025-05-18,MIT 348 | 346,南京大学,Nanjing University,https://github.com/GFrankenstein/NJU-Thesis-LaTeX-Template,0,25,9,2015-01-13, 349 | 347,上海财经大学,Shanghai University of Finance and Economics,https://github.com/sijichun/sufethesis,0,25,9,2017-12-10, 350 | 348,华东师范大学,East China Normal University,https://github.com/QiushiSun/ECNU-Undergraduate-Thesis-Template-2022,0,25,8,2022-04-22,BSD-2-Clause 351 | 349,河海大学,Hohai University,https://github.com/Vitzron/HHU-thesis,0,25,2,2021-08-16,GPL-3.0 352 | 350,(智利)费德里科圣玛利亚理工大学,"Federico Santa María Technical University*
(Universidad Técnica Federico Santa María, UTFSM)",https://github.com/autopawn/tex-thesis-template,0,24,26,2023-04-06, 353 | 351,南京大学,Nanjing University,https://github.com/solrex/njuthesis,0,24,10,2018-06-23, 354 | 352,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/shaform/ntu-thesis,0,24,6,2016-04-08, 355 | 353,湖南大学,Hunan University,https://github.com/XayahSuSuSu/Latex-HNUThesisTemplate,0,24,4,2024-05-05,Apache-2.0 356 | 354,湖南大学,Hunan University,https://github.com/Jeffrey28/HNU_DoctoralThesis_Latex,0,24,3,2024-02-26, 357 | 355,上海科技大学,ShanghaiTech University,https://github.com/Kexin-Zhang-UCAS/ShanghaiTechThesis,0,24,2,2018-07-24, 358 | 356,中南财经政法大学,Zhongnan University of Economics and Law,https://github.com/ToryDeng/ZUEL-Thesis,0,24,2,2023-01-04,GPL-3.0 359 | 357,西北工业大学,Northwestern Polytechnical University,https://github.com/jialinlvcn/LaTeX-NewTemplate-For-NPU-undergraduate-Thesis,0,24,2,2025-05-13,MIT 360 | 358,中国地质大学(武汉),China University of Geosciences,https://github.com/zguoch/cugthesis,0,24,2,2021-05-13,MIT 361 | 359,(美国)罗格斯大学,Rutgers University,https://github.com/rucsgss/thesis,0,23,16,2019-11-10, 362 | 360,清华大学,Tsinghua University,https://github.com/xueruini/thuthesis,0,23,11,2020-05-29, 363 | 361,中山大学,Sun Yat-sen University,https://github.com/chungkwong/sysu_thesis,0,23,7,2018-02-23, 364 | 362,电子科技大学,University of Electronic Science and Technology of China,https://github.com/JosephChenHub/UESTC_thesis_XeLaTeX,0,23,6,2018-03-06, 365 | 363,(埃及)艾因夏姆斯大学,Ain Shams University*
(جامعة عين شمس),https://github.com/MohamedAliRashad/Graduation-Project-Book-Template,0,23,5,2022-05-28, 366 | 364,香港大学
(香港大學),University of Hong Kong (UHK),https://github.com/guanyingc/HKU-PhD-Thesis-LaTex,0,23,4,2022-03-16, 367 | 365,天津大学,Tianjin University,https://github.com/songxiaolin2009/tjuthesis_xelatex_template,0,23,4,2021-12-10, 368 | 366,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/dcpnonstop/HDUthesis,0,23,3,2018-10-19, 369 | 367,深圳大学,Shenzhen University,https://github.com/clinyong/latex-szu,0,22,14,2018-11-13, 370 | 368,(孟加拉国)布拉克大学,"BRAC University, BracU*
(ব্র্যাক ইউনিভার্সিটি)",https://github.com/kastnerp/ElegantThesisLaTeX,0,22,9,2024-09-08,MIT 371 | 369,西安交通大学,Xi'an Jiaotong University,https://github.com/leekunhwee/XJTU_Thesis_LaTeX_2021,0,22,7,2021-09-29, 372 | 370,吉林大学,Jilin University,https://github.com/geekifan/jluthesis,0,22,5,2025-05-15,MIT 373 | 371,西北大学,Northwestern University,https://github.com/Nat-Sci/NWU-dissertation-template,0,22,3,2022-01-06, 374 | 372,山东大学,Shandong University,https://github.com/Sing-How/sduthesis,0,22,2,2024-03-11,GPL-3.0 375 | 373,浙江工业大学,Zhejiang University of Technology,https://github.com/yyz98799/zjutthesis,1,21,14,2022-08-09, 376 | 374,(英国)格拉斯哥大学,University of Glasgow,https://github.com/sdstrowes/Glasgow-Thesis-Template,0,21,13,2015-11-20, 377 | 375,(澳大利亚)昆士兰科技大学,Queensland University of Technology,https://github.com/hbristow/quthesis,0,21,12,2017-06-09,BSD-3-Clause 378 | 376,兰州大学,Lanzhou University,https://github.com/JChrysanthemum/LZUThesis2020-PgD-PhD,0,21,11,2021-05-11,AGPL-3.0 379 | 377,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/hduffddybz/HDU-thesis,0,21,11,2016-10-29, 380 | 378,(美国)俄亥俄州立大学,The Ohio State University*
(The Ohio State University),https://github.com/swarnendubiswas/ohio-state-coe-dissertation-template,0,21,10,2020-03-20, 381 | 379,大连理工大学,Dalian University of Technology,https://github.com/whufanwei/DLUT_XeLaTeX_Template_for_Maste,0,21,10,2022-07-22, 382 | 380,湘潭大学,Xiangtan University,https://github.com/MrDongdongLin/xtuthesis,0,21,9,2018-07-17, 383 | 381,华东师范大学,East China Normal University,https://github.com/programokey/ECNUUndergraduateDissertationTemplate,0,21,7,2018-04-17, 384 | 382,(俄罗斯)莫斯科罗蒙诺索夫国立大学,"Lomonosov Moscow State University*
(Московский государственный университет имени М.В.Ломоносова, MSU)",https://github.com/SweetVishnya/msu-thesis,0,21,6,2021-07-05, 385 | 383,武汉大学,Wuhan University,https://github.com/csarron/bsThesisWHU,0,21,6,2015-05-16,MIT 386 | 384,山东大学,Shandong University,https://github.com/arisukawa/SDU-Latex-Template-for-dissertations,0,21,5,2021-09-07, 387 | 385,上海大学,Shanghai University,https://github.com/bowenthefeng/SHU-Bachelor-Thesis-Template,0,21,4,2019-04-16, 388 | 386,南京理工大学,Nanjing University of Science and Technology,https://github.com/pasteller/njusttt,0,21,4,2025-04-16,MIT 389 | 387,同济大学,Tongji University,https://github.com/NotoOotori/tjuthesis,0,21,3,2023-04-16,LPPL-1.3c 390 | 388,浙江大学,Zhejiang University,https://github.com/Wangqsooooo/Latex_template,0,21,3,2019-04-09, 391 | 389,长沙理工大学,Changsha University of Technology,https://github.com/csust-latex-sig/CSUSTBachelorThesis,0,21,3,2023-07-24, 392 | 390,武汉大学,Wuhan University,https://github.com/iamywang/whu-thesis-latex-template,0,21,3,2025-02-18,MIT 393 | 391,(希腊)帕特雷大学,University of Patras*
(Πανεπιστήμιο Πατρών),https://github.com/tsikup/ece-upatras-thesis-template,0,21,3,2018-10-30,MIT 394 | 392,西安交通大学,Xi'an Jiaotong University,https://github.com/DylanXie123/Thesis-Template-for-XJTU,1,20,5,2020-11-02,GPL-3.0 395 | 393,南京理工大学,Nanjing University of Science and Technology,https://github.com/packyan/NJUST_Master_Thesis_Latex_Template,0,20,4,2020-08-21, 396 | 394,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/HIT-UOI-SR/hithesis-template,0,20,2,2021-06-17,NOASSERTION 397 | 395,广东工业大学,Guangdong University of Technology,https://github.com/Gnomeek/GDUT-UndergraduateThesis,0,20,1,2022-04-16,LPPL-1.3c 398 | 396,东南大学,Southeast University,https://github.com/Dcwjh/SEUThesis-Latex,0,20,0,2022-03-09, 399 | 397,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/UCASthesis/The-LaTeX-thesis-template-of-UCAS,0,19,13,2018-05-24, 400 | 398,(英国)纽卡斯尔大学,Newcastle University,https://github.com/AndreGuerra123/NUTT,0,19,10,2019-01-16,NOASSERTION 401 | 399,(美国)芝加哥大学,University of Chicago,https://github.com/k4rtik/uchicago-dissertation,0,19,8,2025-04-22,MIT 402 | 400,中南大学,Central South University,https://github.com/heyzbw/CSU_Thesis_Template,0,19,5,2025-04-01,Apache-2.0 403 | 401,浙江财经大学,Zhejiang University Of Finance & Economics,https://github.com/sqsssq/ZUFE-Thesis,0,19,4,2022-12-07,MIT 404 | 402,中南大学,Central South University,https://github.com/BlurryLight/CSU-Thesis-LaTeX-Template,1,19,3,2021-05-11, 405 | 403,西安电子科技大学,Xidian University,https://github.com/103yiran/XDUthesis_xelatex,0,19,2,2017-06-13,GPL-3.0 406 | 404,(德国)斯图加特大学,University of Stuttgart*
(Universität Stuttgart),https://github.com/valentjn/uni-stuttgart-phdthesis-template,0,19,2,2019-08-23,CC-BY-SA-4.0 407 | 405,香港科技大学
(香港科技大學),Hong Kong University Of Science And Technology (HUST),https://github.com/wenbinf/hkust-mphil-thesis,0,18,60,2012-08-29, 408 | 406,(英国)牛津大学,University of Oxford,https://github.com/maurovm/thesis_template,0,18,28,2023-11-28,NOASSERTION 409 | 407,(俄罗斯)南方联邦大学,Southern Federal University (SFedU)*
(Южный федеральный университет (ЮФУ)),https://github.com/mmcs-sfedu/mmcs_sfedu_thesis,0,18,23,2019-06-03, 410 | 408,大连理工大学,Dalian University of Technology,https://github.com/Khaos/DLUTThesis,0,18,11,2019-04-24,Apache-2.0 411 | 409,(美国)密歇根大学,University of Michigan,https://github.com/pettni/um-thesis,0,18,10,2022-05-28, 412 | 410,北京工业大学,Beijing University of Technology,https://github.com/fisherxt/bjutthesis,0,18,9,2024-03-31,MIT 413 | 411,通用模板,Common Templates,https://github.com/phretor/cs-phd-dissertation-latex-template,0,18,8,2012-05-14,NOASSERTION 414 | 412,复旦大学,Fudan University,https://github.com/eurekayuan/fduthesis2022,0,18,7,2024-07-28, 415 | 413,同济大学,Tongji University,https://github.com/linxdcn/TongjiThesis,0,18,7,2018-07-28,MIT 416 | 414,(德国)巴登-符腾堡州合作州立大学,"Baden-Württemberg Cooperative State University*
(Duale Hochschule Baden-Württemberg, DHBW)",https://github.com/faltfe/iodhbwm,0,18,5,2023-01-02,LPPL-1.3c 417 | 415,(韩国)高丽大学,Korea University*
(고려대학교),https://github.com/shlee-lab/KUThesis2022,0,18,4,2024-01-02, 418 | 416,上海科技大学,ShanghaiTech University,https://github.com/Haoxiaoling/shtuthesis,0,18,3,2020-01-06, 419 | 417,清华大学,Tsinghua University,https://github.com/LUKE-ZZ/thuthesis-biomedical,0,18,3,2023-09-14, 420 | 418,(德国)慕尼黑应用科技大学,Munich University of Applied Sciences*
(Hochschule für angewandte Wissenschaften München),https://github.com/Simon-Hi5/Hochschule-Muenchen-LaTeX-Template,0,18,3,2021-10-05, 421 | 419,中国地质大学(武汉),China University of Geosciences,https://github.com/benmyb/CUGThesis,0,18,3,2019-05-08, 422 | 420,西安电子科技大学,Xidian University,https://github.com/Linxius/XDUBachelorThesis,1,18,2,2019-10-17, 423 | 421,西安交通大学,Xi'an Jiaotong University,https://github.com/kohillyang/XJTUthesis-master-2020,0,18,2,2020-06-07, 424 | 422,(韩国)首尔大学,"Seoul National University, SNU*
(서울대학교)",https://github.com/ylemkimon/SNU-ECE-BSc-thesis-LaTeX-template,0,18,0,2021-06-21,Unlicense 425 | 423,大连理工大学,Dalian University of Technology,https://github.com/whufanwei/DLUT_XeLaTeX_Template_for_Doctor,0,17,18,2012-05-07, 426 | 424,(澳大利亚)悉尼大学,University of Sydney,https://github.com/danhey/thesis,0,17,16,2022-09-25, 427 | 425,(加拿大)不列颠哥伦比亚大学,University of British Columbia,https://github.com/oganm/ThesisProposal,0,17,15,2016-06-09, 428 | 426,(美国)加利福尼亚大学洛杉矶分校,"University of California, Los Angeles (UCLA)",https://github.com/louis925/uclathes,0,17,10,2017-06-13, 429 | 427,华东理工大学,East China University of Science and Technology,https://github.com/dagnaf/ecust-bachelor-thesis-template,0,17,8,2022-03-03,GPL-2.0 430 | 428,(意大利)帕多瓦大学,"University of Padua*
(Università degli Studi di Padova, UNIPD)",https://github.com/mamio1994/template-latex-unipd,0,17,7,2020-03-24,GPL-3.0 431 | 429,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/LeoJhonSong/UCAS-Dissertation,0,17,5,2025-04-01,GPL-3.0 432 | 430,北京理工大学,Beijing Institute of Technology,https://github.com/BITNP/BIThesis-scaffold,1,17,4,2022-04-07,LPPL-1.3c 433 | 431,湖南大学,Hunan University,https://github.com/Gwinel/hnuthesis,0,17,4,2023-03-28, 434 | 432,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/NTU-NCS-lab/NTU-Thesis-Writing-Template,0,17,4,2025-02-09,MIT 435 | 433,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/wennboo/HDU-latex-template-for-master,0,17,4,2025-01-08,MIT 436 | 434,江西财经大学,Jiangxi University of Finance and Economics,https://github.com/zipzou/jufe-thesis-tex,0,17,4,2020-04-01,MIT 437 | 435,云南大学,Yunnan University,https://github.com/Astro-Lee/YNUthesis,0,17,3,2025-03-07,LPPL-1.3c 438 | 436,(荷兰)乌得勒支大学,Utrecht University*
(Universiteit Utrecht),https://github.com/UtrechtUniversity/UU-dissertation-template,0,17,3,2025-01-14,MIT 439 | 437,中山大学,Sun Yat-sen University,https://github.com/DapengFeng/sysuthesis,0,17,2,2024-12-15,LPPL-1.3c 440 | 438,(英国)利物浦大学,University Of Liverpool,https://github.com/GiacomoPope/thesis-template,0,17,2,2022-07-08, 441 | 439,江苏大学,Jiangsu University,https://github.com/xtc-chen/UJS_Phdthesis,0,17,1,2025-05-09, 442 | 440,广州大学,Guangzhou University,https://github.com/WeiViming/gzhu-thesis,0,17,0,2025-03-19,MIT 443 | 441,台湾政治大学
(國立政治大學),"National Chengchi University, NCCU",https://github.com/Walker088/nccu-thesis,0,16,12,2018-07-04, 444 | 442,兰州大学,Lanzhou University,https://github.com/suchot/LZUThesis2017,0,16,11,2024-12-01, 445 | 443,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/nnedkov/tum-thesis-latex,0,16,8,2018-11-11, 446 | 444,(英国)埃克塞特大学,University of Exeter,https://github.com/georgedeath/University_of_Exeter_Thesis_Template,0,16,7,2019-12-11, 447 | 445,大连海事大学,Dalian Maritime University,https://github.com/aurora1625/dmuthesis-latex,0,16,6,2013-05-27, 448 | 446,西安交通大学,Xi'an Jiaotong University,https://github.com/1989Ryan/XJTU-Bachelor-Thesis-LaTeX-Template,0,16,5,2022-06-11,GPL-3.0 449 | 447,南方科技大学,Southern University of Science and Technology,https://github.com/Spacebody/sustcthesis,0,16,5,2019-05-31,MIT 450 | 448,(意大利)帕多瓦大学,"University of Padua*
(Università degli Studi di Padova, UNIPD)",https://github.com/mychele/unipd-latex-template,0,16,4,2017-03-11,AGPL-3.0 451 | 449,华南理工大学,South China University of Technology,https://github.com/phreer/scutthesis,0,16,3,2019-06-04,Apache-2.0 452 | 450,(印度)印度理工学院(贝拿勒斯印度教大学)瓦拉纳西分校,"Indian Institute of Technology (BHU) Varanasi, IIT-BHU*
(भारतीय प्रौद्योगिकी संस्थान (का.हि.वि.) वाराणसी)",https://github.com/sdasrc/thesis-template-iitbhu,0,16,3,2019-09-06,MIT 453 | 451,江苏大学,Jiangsu University,https://github.com/xtc-chen/UJS_Masterthesis,0,16,2,2025-05-09, 454 | 452,深圳大学,Shenzhen University,https://github.com/Jev0987/SZUThesis-2024,0,16,1,2024-02-19, 455 | 453,电子科技大学,University of Electronic Science and Technology of China,https://github.com/LeoJhonSong/UESTC-Glasgow-Final-Year-Report-Template,0,16,1,2025-01-17,GPL-3.0 456 | 454,上海大学,Shanghai University,https://github.com/SHU-CES-1008/SHU-Thesis,0,16,1,2024-09-23, 457 | 455,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/guoxiaowhu/UCAS_Thesis,0,16,1,2023-04-19, 458 | 456,(挪威)挪威科技大学,"Norwegian University of Science and Technology*
(Norges teknisk-naturvitenskapelige universitet, NTNU)",https://github.com/COPCSE-NTNU/bachelor-thesis-NTNU,0,15,52,2020-01-10, 459 | 457,(美国)加利福尼亚大学圣克鲁斯分校,"University Of California, Santa Cruz (UCSC)",https://github.com/adamnovak/ucscthesis,0,15,26,2020-12-05,NOASSERTION 460 | 458,(印度尼西亚)加查马达大学,"University of Gadjah Mada*
(Universitas Gadjah Mada, UGM)",https://github.com/canggihpw/thesisdtetiugm,0,15,24,2023-03-08,MIT 461 | 459,北京交通大学,Beijing Jiaotong University,https://github.com/chenzewei01/bjtuThesis,0,15,9,2014-11-07, 462 | 460,青岛大学,Qingdao University,https://github.com/paralevi/QDUthesis,0,15,9,2020-03-28, 463 | 461,通用模板,Common Templates,https://github.com/Cinofix/latex-scientific-templates,0,15,7,2020-03-05,MIT 464 | 462,西南科技大学,Southwest University of Science and Technology,https://github.com/japinli/swust-thesis,0,15,7,2022-02-28, 465 | 463,大连理工大学,Dalian University of Technology,https://github.com/stevewongv/DLUT_XeLaTeX_Template_For_Bachelor,0,15,6,2018-05-31,MIT 466 | 464,天津大学,Tianjin University,https://github.com/6gbluewind/Tjuthesis_phd_1.2-,0,15,4,2022-08-05,GPL-3.0 467 | 465,华南理工大学,South China University of Technology,https://github.com/h-hg/latex-scut-bachelor-thesis,0,15,4,2023-05-29,MIT 468 | 466,(加拿大)卡尔加里大学,"University of Calgary, UCalgary",https://github.com/rzach/ucalgmthesis,0,15,4,2023-04-13,MIT 469 | 467,山东大学,Shandong University,https://github.com/bearshng/sduthesis,0,15,3,2015-03-27, 470 | 468,东北师范大学,Northeast Normal University,https://github.com/tiankonguse/NENUCSThesis,0,15,3,2014-06-20, 471 | 469,重庆大学,Chongqing University,https://github.com/yinguoweiOvO/CQU_Thesis2024,0,15,3,2024-05-20,NOASSERTION 472 | 470,新疆大学,Xinjiang University,https://github.com/LeoLQF/xjuthesis,0,15,2,2019-01-12, 473 | 471,西南交通大学,Southwest Jiaotong University,https://github.com/Pungjay/swjtuThesis,0,15,2,2024-10-25, 474 | 472,华东师范大学,East China Normal University,https://github.com/jtchen2k/modern-ecnu-thesis,0,15,2,2025-04-07,MIT 475 | 473,西安交通大学,Xi'an Jiaotong University,https://github.com/ChenjieGump/XJTU-BSThesis_latex_2022,0,15,1,2023-05-04,MIT 476 | 474,云南大学,Yunnan University,https://github.com/ZhenfengLei/Yunnan-University-Thesis-Latex,0,15,1,2018-07-26, 477 | 475,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/baggiorio18/BUPTGraduateThesis,0,15,0,2015-01-03, 478 | 476,厦门大学,Xiamen University,https://github.com/xiamenwcy/LaTeXFileforXMUThesis,0,14,11,2018-11-22, 479 | 477,(美国)北卡罗来纳大学夏洛特分校,University of North Carolina at Charlotte,https://github.com/cci-grads/uncc-thesis-latex,0,14,10,2019-02-27, 480 | 478,浙江大学,Zhejiang University,https://github.com/5kg/zju-bachelor-thesis,0,14,8,2012-05-07, 481 | 479,华南师范大学,South China Normal University,https://github.com/wzpan/scnuthesis,1,14,7,2015-01-22, 482 | 480,(德国)美因茨应用科技大学,Mainz University of Applied Sciences*
(Hochschule Mainz),https://github.com/JonasBingel/HSMZ-Thesis-Template,0,14,6,2024-11-16, 483 | 481,郑州大学,Zhengzhou University,https://github.com/RonTs/zzuthesis,0,14,6,2021-03-05, 484 | 482,(德国)慕尼黑大学,"Ludwig Maximilian University of Munich, LMU*
(Ludwig-Maximilians-Universität München)",https://github.com/changkun/lmu-thesis-latex,0,14,5,2019-05-22,MIT 485 | 483,西安石油大学,Xi'an University of Petroleum,https://github.com/h2y/xsyu-latex,0,14,5,2021-06-30, 486 | 484,中国人民大学,Renmin University of China,https://github.com/HughYau/RUCthesis-for-Bachelor,0,14,4,2022-03-23, 487 | 485,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/cughmy/hduthesis,0,14,4,2019-02-19,MIT 488 | 486,四川大学,Sichuan University,https://github.com/kevinleeex/scu_thesis_template,0,14,4,2022-03-23,AGPL-3.0 489 | 487,武汉大学,Wuhan University,https://github.com/beanyoung/whu-master-thesis-template,1,14,3,2012-06-19, 490 | 488,香港城市大学
(香港城市大學),City University of Hong Kong (CityU),https://github.com/huwan/CityU_Thesis,0,14,3,2021-12-01,MIT 491 | 489,南京邮电大学,Nanjing University of Posts and Telecommunications,https://github.com/li199-code/njupt_master_thesis_latex_template,0,14,3,2024-07-18, 492 | 490,(意大利)贝加莫大学,University of Bergamo*
(Università degli studi di Bergamo),https://github.com/micheleberetta98/unibg-thesis-template,0,14,3,2025-05-23,NOASSERTION 493 | 491,(葡萄牙) 里斯本高等理工学院,"Instituto Superior Técnico*
(Instituto Superior Técnico, IST)",https://github.com/ekspek/ist-thesis,0,14,2,2020-09-22,LPPL-1.3c 494 | 492,南京工业大学,Nanjing University of Technology,https://github.com/faimerth/NJUT-Thesis-Template,0,14,2,2019-06-30,GPL-3.0 495 | 493,华南理工大学,South China University of Technology,https://github.com/sherrycattt/ScutThesis,0,14,2,2022-06-19, 496 | 494,东华大学,Donghua University,https://github.com/3000ye/dhuBachelor,0,14,1,2024-06-16, 497 | 495,广西大学,Guangxi University,https://github.com/KingwithQueen/GXU-Masters-and-PhD-Thesis-Templates,0,14,1,2025-03-03, 498 | 496,四川大学,Sichuan University,https://github.com/bennyji/SCUthesis,0,14,1,2020-04-04, 499 | 497,西安交通大学,Xi'an Jiaotong University,https://github.com/Radiance-nt/XJTU_BachelorThesis_DagRank,0,14,0,2024-06-01,GPL-3.0 500 | 498,浙江大学,Zhejiang University,https://github.com/Yirui-Wang/ZJU-CSE-Latex,0,14,0,2019-01-11, 501 | 499,通用模板,Common Templates,https://github.com/jankapunkt/master-thesis,0,13,10,2021-03-09, 502 | 500,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/HawkTom/sustech-hithesis,0,13,6,2019-07-01, 503 | 501,东南大学,Southeast University,https://github.com/cmuCoppelia/seuthesis2020,0,13,6,2020-05-07,MIT 504 | 502,(美国)北卡罗来纳州立大学,North Carolina State University,https://github.com/jhykes/ncsuthesis,0,13,6,2019-07-08, 505 | 503,中南大学,Central South University,https://github.com/zhongjingjogy/thesisthemeCSU,1,13,6,2017-12-26, 506 | 504,(瑞典)卡罗林斯卡学院,"Karolinska Institute, KI*
(Karolinska Institutet)",https://github.com/bcschiffler/phdthesis_ki,0,13,4,2017-12-06,MIT 507 | 505,(波兰)弗罗茨瓦夫理工大学,Wrocław University of Science and Technology*
(Politechnika Wrocławska),https://github.com/rkubosz/dyplompwr,0,13,4,2020-12-03,MIT 508 | 506,华东理工大学,East China University of Science and Technology,https://github.com/wjsong365/ECUST_Thesis_LaTeX,0,13,4,2023-01-15, 509 | 507,重庆大学,Chongqing University,https://github.com/cqu-bdsc/CQUThesis,0,13,3,2023-05-10,NOASSERTION 510 | 508,南京大学,Nanjing University,https://github.com/zhangchuheng123/NJUThesis,0,13,3,2016-06-01, 511 | 509,西南财经大学,Southwestern University of Finance and Economics,https://github.com/OopsYao/swufethesis,0,13,2,2024-04-25,LPPL-1.3c 512 | 510,北京林业大学,Beijing Forestry University,https://github.com/ufo5260987423/BjfuLatexTemplate,0,13,2,2018-02-18, 513 | 511,武汉大学,Wuhan University,https://github.com/BenjaminHb/whu-thesis,0,13,1,2022-06-21,MIT 514 | 512,山东师范大学,Shandong Normal University,https://github.com/RuYunW/SDNU-LaTeX-bachelor-2021,0,13,1,2022-05-16,GPL-3.0 515 | 513,南方科技大学,Southern University of Science and Technology,https://github.com/SUSTC/sustcthesis,0,13,1,2015-04-06,MIT 516 | 514,福州大学,Fuzhou University,https://github.com/chenzl23/FZUThesis,0,13,1,2024-05-27, 517 | 515,华东理工大学,East China University of Science and Technology,https://github.com/fireflylyn/Ecust_Bachelor_LaTeX_Template,0,13,1,2017-06-05, 518 | 516,郑州大学,Zhengzhou University,https://github.com/fylimas/zzuthesis,0,13,1,2024-03-20, 519 | 517,长沙理工大学,Changsha University of Technology,https://github.com/kangxiatao/CSUSTthesis,0,13,1,2024-03-04, 520 | 518,西北工业大学,Northwestern Polytechnical University,https://github.com/zyk1999/LaTeX-Template-For-NPU-Thesis-CTex,0,13,1,2022-03-12,GPL-3.0 521 | 519,南开大学,Nankai University,https://github.com/MaZhengg/NKUthesis,0,13,0,2019-03-04, 522 | 520,(波兰)罗兹理工大学,Łódź University of Technology*
(Politechnika Łódzka),https://github.com/jlokiec/FTIMS-thesis-template,0,13,0,2020-01-28,GPL-3.0 523 | 521,台湾高雄科技大学
(國立高雄科技大學),National Kaohsiung First University of Science and Technology (NKFUST),https://github.com/yuhao-kuo/NKUST-thesis-template,0,12,16,2024-09-13, 524 | 522,(印度)印度理工学院海得拉巴分校,"Indian Institute of Technology Hyderabad*
(ఇండియన్ ఇన్స్టిట్యూట్ ఆఫ్ టెక్నాలజీ, హైదరాబాద్)",https://github.com/utpalbora/IITHThesis,0,12,11,2023-05-09,MIT 525 | 523,上海交通大学,Shanghai Jiaotong University,https://github.com/dyweb/SJTUThesis,1,12,9,2017-12-26,Apache-2.0 526 | 524,(德国)波恩-莱茵-锡格应用技术大学,Hochschule Bonn-Rhein-Sieg University of Applied Sciences*
(Hochschule Bonn-Rhein-Sieg),https://github.com/MartinX3-EducationOrganization/hbrs-latex-vorlage-arbeit,0,12,8,2024-11-13,AGPL-3.0 527 | 525,(美国)斯坦福大学,Stanford University,https://github.com/twhughes/PhD_Thesis,0,12,7,2019-08-22,MIT 528 | 526,(意大利)萨莱诺大学,University of Salerno*
(Università degli Studi di Salerno),https://github.com/CiccioTecchio/Unisa-LaTeX,0,12,6,2020-04-14,GPL-3.0 529 | 527,(英国)考文垂大学,Coventry University,https://github.com/GR8DAN/coventry-thesis,0,12,6,2022-10-30,MIT 530 | 528,浙江大学,Zhejiang University,https://github.com/huoyao/ZJUThesis,0,12,6,2016-03-15,GPL-3.0 531 | 529,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/yulijia/LaTeX_UCASthesis,0,12,6,2017-11-07, 532 | 530,山东大学,Shandong University,https://github.com/Luosid0/2024sdu-latex-undergraduate,0,12,5,2024-04-06,AGPL-3.0 533 | 531,厦门大学,Xiamen University,https://github.com/naseeihity/xmu-latex-temple,0,12,5,2017-05-04, 534 | 532,西南交通大学,Southwest Jiaotong University,https://github.com/cshaowang/swjtuThesisV2.0,0,12,3,2024-06-27, 535 | 533,天津大学,Tianjin University,https://github.com/haimingz/tjuthesis,0,12,3,2025-03-27, 536 | 534,中国矿业大学,China University of Mining and Technology,https://github.com/jiandong4388/CUMTB-Latex,0,12,3,2018-05-11, 537 | 535,(韩国)首尔大学,"Seoul National University, SNU*
(서울대학교)",https://github.com/skywalker023/thesis-template-snu-cse,0,12,3,2023-04-05,MIT 538 | 536,广州大学,Guangzhou University,https://github.com/whitelok/GZHU_Latex_Template,0,12,3,2017-09-13,MIT 539 | 537,(奥地利)维也纳大学,University of Vienna*
(Universität Wien),https://github.com/ppatrzyk/UniWien-LaTeX-Thesis,0,12,2,2017-11-05,MIT 540 | 538,中央财经大学,Central University of Finance and Economics,https://github.com/Nanqiang01/CUFE_Graduate_Thesis_Template,0,12,1,2024-04-14, 541 | 539,江苏大学,Jiangsu University,https://github.com/TYZQ/ujsthesis,0,12,1,2020-08-21, 542 | 540,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/ZhuGongpu/BUAA-Graduate-Dissertation-Template,0,12,1,2018-09-28,MIT 543 | 541,东北大学,Northeastern University,https://github.com/neuljh/NEU-undergraduate-thesis-LaTeX-template,0,12,0,2024-02-12,MIT 544 | 542,(加拿大)康考迪亚大学,Concordia University,https://github.com/Tandysony/LaTeX-Thesis-Template-for-Concordia-University-Students,0,11,13,2021-03-08, 545 | 543,(法国)巴黎第十一大学,Paris-Sud University*
(Université Paris-Sud),https://github.com/stellasia/thesis-template,0,11,10,2015-06-23, 546 | 544,(意大利)特伦托大学,University of Trento*
(Università degli Studi di Trento),https://github.com/unitn-drive/thesis,0,11,8,2025-05-12,MIT 547 | 545,北京理工大学,Beijing Institute of Technology,https://github.com/zhang-datou/BIT_Thesis,0,11,8,2020-05-03, 548 | 546,南京信息工程大学,Nanjing University of Information Engineering,https://github.com/LirenW/NUIST_thesis_template_V2.0,0,11,6,2021-06-14, 549 | 547,北京交通大学,Beijing Jiaotong University,https://github.com/labusi/bjtu-thesis,0,11,4,2018-04-30,Apache-2.0 550 | 548,(加拿大)滑铁卢大学,University of Waterloo,https://github.com/mohuangrui/uwaterloothesis,0,11,4,2021-10-29, 551 | 549,兰州大学,Lanzhou University,https://github.com/szsdk/LZUthesis,0,11,4,2022-11-16, 552 | 550,通用模板,Common Templates,https://github.com/thesis-toolbox/template,0,11,4,2023-09-25,Unlicense 553 | 551,东北电力大学,Northeast Electric Power University,https://github.com/jycnb-666/NEEPUTHESIS,0,11,3,2023-02-05, 554 | 552,电子科技大学,University of Electronic Science and Technology of China,https://github.com/savicsw/ThesisUESTC,0,11,2,2021-03-30, 555 | 553,中国矿业大学,China University of Mining and Technology,https://github.com/senli1073/cumtthesis,0,11,2,2025-04-06,LPPL-1.3c 556 | 554,(印度尼西亚)印度尼西亚大学,University of Indonesia*
(Universitas Indonesia),https://github.com/rkkautsar/ui-thesis-template,0,11,1,2019-03-06,NOASSERTION 557 | 555,同济大学,Tongji University,https://github.com/HarlanHW/TongjiThesis,0,11,0,2019-05-19, 558 | 556,(美国)威斯康星大学麦迪逊分校,University of Wisconsin-Madison,https://github.com/Lodour/wisc-thesis-template,0,11,0,2024-05-04,MIT 559 | 557,中国传媒大学,Communication University of China,https://github.com/TheoCUC/CUC-LaTeX-Templates,0,11,0,2025-04-21,MIT 560 | 558,西安电子科技大学,Xidian University,https://github.com/oopsno/XDUThesis,0,11,0,2016-06-07, 561 | 559,(新加坡)新加坡国立大学,National University of Singapore (NUS),https://github.com/ramananbalakrishnan/nus-thesis-latex-template,0,10,14,2015-11-14,MIT 562 | 560,兰州理工大学,Lanzhou University of Technology,https://github.com/estivalinp/LuThesis,0,10,3,2018-06-05, 563 | 561,南京师范大学,Nanjing Normal University,https://github.com/jordanzhouda/nnuthesis,0,10,3,2018-08-10, 564 | 562,南京信息工程大学,Nanjing University of Information Engineering,https://github.com/Alrash/NUIST_Master_Thesis,0,10,2,2020-06-10,MIT 565 | 563,同济大学,Tongji University,https://github.com/C-zzZZ/TongjiThesis,0,10,2,2018-11-25, 566 | 564,武汉大学,Wuhan University,https://github.com/jwwangchn/WHU-Thesis-LaTeX,0,10,2,2021-04-14, 567 | 565,郑州大学,Zhengzhou University,https://github.com/lusongno1/-latex-,0,10,2,2019-04-19, 568 | 566,电子科技大学,University of Electronic Science and Technology of China,https://github.com/richardkwo/UESTC-bachelor-thesis-xelatex,0,10,2,2014-01-20, 569 | 567,中国传媒大学,Communication University of China,https://github.com/cucJ2014/CUC_Template-of-thesis_Latex,0,10,1,2021-11-09, 570 | 568,北京师范大学,Beijing Normal University,https://github.com/gebrilliant/BNU-Latex-Thesis,0,10,1,2020-02-07, 571 | 569,大连理工大学,Dalian University of Technology,https://github.com/hanqing0521/thesis-dut,0,10,1,2022-05-16, 572 | 570,南京信息工程大学,Nanjing University of Information Engineering,https://github.com/jtzhpf/NUIST-Bachelor-Thesis-LaTeX-Template-v2022.4,0,10,1,2022-04-21, 573 | 571,(匈牙利)罗兰大学,"Eötvös Loránd University*
(Eötvös Loránd Tudományegyetem, ELTE)",https://github.com/mcserep/elteiktdk,0,10,1,2024-04-26,MIT 574 | 572,通用模板,Common Templates,https://github.com/v97ug/Aizu-Graduation-Thesis-Template,0,10,1,2017-02-14, 575 | 573,北京交通大学,Beijing Jiaotong University,https://github.com/GhostCai/bjtu-thesis-dlc,0,10,0,2024-05-07, 576 | 574,仲恺农业工程学院,Zhongkai University of Agriculture and Engineering,https://github.com/Jin-Cheng-Ming/ZHKU_Thesis,0,10,0,2025-04-12,NOASSERTION 577 | 575,同济大学,Tongji University,https://github.com/hang-qi/tongji-thesis,0,10,0,2013-04-15, 578 | 576,华东理工大学,East China University of Science and Technology,https://github.com/lavandejoey/ECUSTThesisLatex,0,10,0,2024-01-21,MIT 579 | 577,西北农林科技大学,Northwest A&F University,https://github.com/latexstudio/nwafuthesis,0,9,18,2019-03-08, 580 | 578,中山大学,Sun Yat-sen University,https://github.com/ShevaXu/LatexThesis4SYSU,0,9,10,2014-05-27, 581 | 579,香港中文大学
(香港中文大學),Chinese University of Hong Kong (CUHK),https://github.com/cllu/CUHK-Thesis-Template,0,9,10,2016-05-18, 582 | 580,广东工业大学,Guangdong University of Technology,https://github.com/jokerdawn/GDUTThesis,1,9,10,2019-02-19, 583 | 581,中国人民大学,Renmin University of China,https://github.com/MelodyRen1998/ruc-thesis-template-via-bookdown,0,9,7,2020-03-17, 584 | 582,湖南大学,Hunan University,https://github.com/ljmdzyx1985/HNUthesis_doctor,0,9,7,2019-05-29, 585 | 583,通用模板,Common Templates,https://github.com/tdehaeze/clean-latex-template,0,9,6,2018-04-29, 586 | 584,青岛大学,Qingdao University,https://github.com/chardoncs/qdubachelor-tex,0,9,5,2025-01-01,MIT 587 | 585,中国地质大学(武汉),China University of Geosciences,https://github.com/xujinlai/CUGThesis,0,9,5,2015-06-05,GPL-2.0 588 | 586,(孟加拉国)吉大港Premier大学,"Premier University, CHATTOGRAM*
(প্রিমিয়ার ইউনিভার্সিটি)",https://github.com/ascuet/puc-report-template,0,9,4,2022-05-09, 589 | 587,(越南)芹苴大学,Can Tho University*
(Trường Đại học Cần Thơ),https://github.com/duongludien/thesis-template,0,9,4,2018-05-14,GPL-3.0 590 | 588,天津大学,Tianjin University,https://github.com/lebronyxm/TJU-master-Latex,0,9,4,2017-08-09, 591 | 589,南昌航空大学,Nanchang Aviation University,https://github.com/NCHUSC/NCHU_Bachelor_Thesis_Template,0,9,3,2025-02-15,MIT 592 | 590,(西班牙)马拉加大学,"University of Malaga*
(Universidad de Málaga, UMA)",https://github.com/benhid/TFG-UMA,0,9,3,2020-01-08,MIT 593 | 591,北京科技大学,Beijing University of Science and Technology,https://github.com/qin-nz/USTB-latex,0,9,3,2015-06-02,MIT 594 | 592,南京大学,Nanjing University,https://github.com/EdwardSaidZhou/NJU-thesis-esz,0,9,2,2022-03-25, 595 | 593,(英国)爱丁堡大学,University of Edinburgh*
(Oilthigh Dhùn Èideann),https://github.com/H0R5E/edengths,0,9,2,2024-11-18,GPL-3.0 596 | 594,苏州大学,Soochow University,https://github.com/absop/LaTeX-Template,0,9,2,2020-05-27, 597 | 595,(英国)纽卡斯尔大学,Newcastle University,https://github.com/philipdarke/simple-thesis,0,9,2,2024-10-15,MIT 598 | 596,山东大学,Shandong University,https://github.com/wangzhukang/sduthesis,0,9,2,2025-05-01, 599 | 597,大连理工大学,Dalian University of Technology,https://github.com/01xz/dlut-thesis,0,9,1,2025-03-14,LPPL-1.3c 600 | 598,国防科技大学,National Defense University of Science and Technology,https://github.com/kelvin0207/NUDT-Template,0,9,1,2024-05-16, 601 | 599,国防科技大学,National Defense University of Science and Technology,https://github.com/nonsense-j/NUDT_FinalPaper,0,9,1,2023-08-09,MIT 602 | 600,(伊朗)阿米尔·卡比尔理工大学,"University of Technology, AUT*
(دانشگاه صنعتی امیرکبیر)",https://github.com/aminrashidbeigi/BS-thesis,0,9,0,2020-10-28, 603 | 601,华东理工大学,East China University of Science and Technology,https://github.com/blanche07/ecust-master-thesis-latex,0,9,0,2024-06-04, 604 | 602,通用模板,Common Templates,https://github.com/jorgepiloto/escriba,0,9,0,2021-09-16,NOASSERTION 605 | 603,苏州大学,Soochow University,https://github.com/rgwt123/sudathesis,0,9,0,2021-03-28, 606 | 604,陕西师范大学,Shaanxi Normal University,https://github.com/yykphy/yk-snnu-thesis,0,9,0,2024-06-13, 607 | 605,西北农林科技大学,Northwest A&F University,https://github.com/Jeromezp/NorthWestThesis,0,8,3,2017-05-31,MIT 608 | 606,(西班牙)马德里理工大学,"Technical University of Madrid*
(Universidad Politécnica de Madrid, UPM)",https://github.com/eduayme/UPM-thesis-template-latex,0,8,3,2020-11-01, 609 | 607,华中科技大学,Huazhong University of Science,https://github.com/Qinnn/LaTeX-ThesisTemplatesForHUSTer,0,8,2,2015-04-22, 610 | 608,(印度)印度理工学院克勒格布尔分校,"Indian Institute of Technology Kharagpur, IIT Kharagpur*
(ਆਈ.ਆਈ.ਟੀ. ਖੜਗਪੁਰ)",https://github.com/c-i-p-h-e-r/PhinisheD,0,8,2,2018-01-04,MIT 611 | 609,同济大学,Tongji University,https://github.com/Ginufet/tongji-dissertation-master-template,0,8,1,2022-03-11, 612 | 610,复旦大学,Fudan University,https://github.com/fduxiao/format_for_fdu_math,0,8,1,2019-05-09, 613 | 611,(英国)南安普顿大学,University of Southampton,https://github.com/hlwhl/ECS_Thesis_Template_LaTex,0,8,1,2018-08-19,Apache-2.0 614 | 612,武汉大学,Wuhan University,https://github.com/liuyijiang1994/WHU-PhD-Latex,0,8,1,2024-02-17, 615 | 613,(印度)蒂鲁吉拉伯利国立理工学院,"National Institute of Technology Tiruchirappalli, NIT Trichy*
(தேசிய தொழில்நுட்பக் கழகம், திருச்சிராப்பள்ளி)",https://github.com/niki864/ThesisTemplate,0,8,1,2018-03-19,MIT 616 | 614,(日本)东京大学,University of Tokyo*
(東京大学),https://github.com/utlis/llls_depp-thesis_template,0,8,1,2024-03-26, 617 | 615,中国石油大学(华东),China University of Petroleum (East China),https://github.com/DotWang/UPCThesis_advanced,0,8,0,2019-02-14, 618 | 616,北京理工大学,Beijing Institute of Technology,https://github.com/FDUZS/BIThesis,1,8,0,2022-11-25,LPPL-1.3c 619 | 617,深圳大学,Shenzhen University,https://github.com/Yulv-git/Master-Thesis-LaTeX-Template-of-SZU,0,8,0,2022-08-08,MIT 620 | 618,重庆邮电大学,Chongqing University of Posts and Telecommunications,https://github.com/mequanwei/CQUPTThesis,0,8,0,2019-11-05, 621 | 619,(美国)爱荷华大学,University of Iowa,https://github.com/uiowa-mgb/uiowa-thesis,0,8,0,2024-05-22,ISC 622 | 620,华南农业大学,South China Agricultural University,https://github.com/wuenzhe/SCAUThesis,0,8,0,2023-03-29, 623 | 621,(美国)威廉与玛丽学院,College of William and Mary,https://github.com/yishanhe/WM-AS-thesis-latex-template,0,7,12,2024-07-17,MIT 624 | 622,(加拿大)康考迪亚大学,Concordia University*
(Université Concordia),https://github.com/raxityo/concordia-latex-template,0,7,8,2018-02-02, 625 | 623,山东大学,Shandong University,https://github.com/ChenMeng0518/sduthesis,0,7,7,2015-01-03, 626 | 624,(美国)伍斯特学院,The College of Wooster,https://github.com/jbreitenbucher/exampleis,0,7,6,2025-04-30, 627 | 625,中山大学,Sun Yat-sen University,https://github.com/guoyl6/thesis-dev,0,7,5,2018-10-16,GPL-3.0 628 | 626,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/xmlu/hduthesis,0,7,5,2025-03-15,MIT 629 | 627,中国传媒大学,Communication University of China,https://github.com/AmnesiaBeing/CUC-Thesis-Template,0,7,4,2021-06-09, 630 | 628,湘潭大学,Xiangtan University,https://github.com/ruiminshen/ThesisXTU,0,7,4,2015-05-22,GPL-2.0 631 | 629,上海工程技术大学,Shanghai University of Engineering and Technology,https://github.com/AndyYangjd/SUES-Paper,0,7,3,2020-03-09,MIT 632 | 630,通用模板,Common Templates,https://github.com/danielvartan/abnt,0,7,3,2024-08-12,MIT 633 | 631,(意大利)那不勒斯腓特烈二世大学,University of Naples Federico II*
(Università degli Studi di Napoli Federico II),https://github.com/luistar/unina-thesis-template,0,7,3,2024-10-21,LGPL-3.0 634 | 632,浙江工业大学,Zhejiang University of Technology,https://github.com/AsukaEva2/ZJUTbachelor,0,7,2,2022-09-15,GPL-3.0 635 | 633,浙江大学,Zhejiang University,https://github.com/corenel/zju-thesis,0,7,2,2020-12-06,MIT 636 | 634,通用模板,Common Templates,https://github.com/farshadrasuli/parsa,0,7,2,2021-08-09, 637 | 635,(印度)德里理工大学,"Delhi Technological University, DTU",https://github.com/gandalfsaxe/laursens-xelatex-thesis-template,0,7,2,2019-02-26, 638 | 636,通用模板,Common Templates,https://github.com/openHPI/modernthesis,0,7,2,2017-06-30, 639 | 637,南京工业大学,Nanjing University of Technology,https://github.com/AstralHope/NJTECHMasterThesis,0,7,1,2022-08-07,GPL-3.0 640 | 638,厦门大学,Xiamen University,https://github.com/DiggerWang/-Latex-,0,7,1,2019-01-30, 641 | 639,青海大学,Qinghai University,https://github.com/coffeelize/QHUthesis,0,7,1,2025-03-26, 642 | 640,(英国)赫瑞瓦特大学,Heriot-Watt University*
(Oilthigh Heriot-Watt),https://github.com/jackred/Heriot_Watt_Thesis_Template,0,7,1,2024-03-11,MIT 643 | 641,东南大学,Southeast University,https://github.com/jasonbian97/Southeast-University-Paper-Latex-Template,0,7,1,2019-06-14, 644 | 642,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/liao961120/ntuthesis2,0,7,1,2022-11-01, 645 | 643,中国石油大学(北京),China University of Petroleum (Beijing),https://github.com/linyuantiaohe/cupb-phd-thesis,0,7,1,2022-05-12, 646 | 644,(加拿大)约克大学,York University*
(Université York),https://github.com/philchalmers/York_Thesis_LyX,0,7,1,2017-06-10, 647 | 645,吉林大学,Jilin University,https://github.com/OceanPresentChao/JLU-SE-Thesis-Template,0,7,0,2024-10-13,MIT 648 | 646,(希腊)雅典大学,"National and Kapodistrian University of Athens, NKUA*
(Εθνικό και Καποδιστριακό Πανεπιστήμιο Αθηνών)",https://github.com/cnasikas/di-thesis-template,0,7,0,2018-06-27,MIT 649 | 647,武汉大学,Wuhan University,https://github.com/lh9171338/WHU-Thesis,0,7,0,2020-04-05,MIT 650 | 648,华东师范大学,East China Normal University,https://github.com/myzmh/ECNU-MASTER-S-DISSERTATION-,0,7,0,2022-05-01, 651 | 649,吉林大学,Jilin University,https://github.com/quanfan-zi/Latex-Paper-Templates,0,7,0,2024-03-14, 652 | 650,合肥工业大学,HeFei University of Technology,https://github.com/shinyypig/HFUT-Thesis,0,7,0,2024-07-05,MIT 653 | 651,南方科技大学,Southern University of Science and Technology,https://github.com/syw-robotics/SUSTechThesis2024MEE,0,7,0,2024-12-09,LPPL-1.3c 654 | 652,南方科技大学,Southern University of Science and Technology,https://github.com/whzecomjm/sustcthesis,0,6,14,2017-07-31,MIT 655 | 653,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/wugh/bupt-thesis-bachelor,0,6,9,2014-06-09, 656 | 654,(印度)印度理工学院马德拉斯分校,"Indian Institute of Technology Madras, IIT Madras",https://github.com/j-jith/iitm-thesis,0,6,8,2019-06-03, 657 | 655,北方民族大学,Northern Minzu University,https://github.com/WizenZhang/NMUThesis,0,6,7,2019-06-12,MIT 658 | 656,大连理工大学,Dalian University of Technology,https://github.com/li-xin-yi/DLUTLaTeXTemplate,0,6,7,2016-03-29, 659 | 657,东北大学,Northeastern University,https://github.com/PlayerAI/NEU_PHD_Template,0,6,6,2013-06-05, 660 | 658,北京科技大学,Beijing University of Science and Technology,https://github.com/liuzhaoboatenficomcn/Latex-template-for-University-of-Science-and-Technology-Beijing,0,6,6,2018-10-10, 661 | 659,海南大学,Hainan University,https://github.com/zoltarsun/hainuthesis,0,6,5,2017-06-25, 662 | 660,(秘鲁)国立工程大学,"National University of Engineering*
(Universidad Nacional de Ingeniería, UNI)",https://github.com/ErickChacon/uni-thesis,0,6,4,2017-04-08,MIT 663 | 661,山东师范大学,Shandong Normal University,https://github.com/SmartHelium/sdnubachelor,0,6,4,2023-03-15,GPL-3.0 664 | 662,(美国)亚利桑那州立大学,Arizona State University,https://github.com/juliantao/quarto-asu-thesis,0,6,4,2023-06-27,MIT 665 | 663,中国人民大学,Renmin University of China,https://github.com/liuqi6777/ructhesis,0,6,4,2024-04-17,MIT 666 | 664,西北工业大学,Northwestern Polytechnical University,https://github.com/lrtfm/nputhesis,0,6,4,2024-01-17, 667 | 665,西安交通大学,Xi'an Jiaotong University,https://github.com/haoyun/xjtu-thesis-BSc,1,6,3,2014-03-29,LPPL-1.3c 668 | 666,华东师范大学,East China Normal University,https://github.com/Jarvis-K/ECNU_Latex_Template,0,6,2,2019-05-08, 669 | 667,(韩国)首尔大学,"Seoul National University, SNU*
(서울대학교)",https://github.com/Zeta611/snu-cse-bsc-thesis,0,6,2,2024-06-27,MIT 670 | 668,中南大学,Central South University,https://github.com/hezhujun/CSU-Thesis-LaTeX,0,6,2,2021-06-07, 671 | 669,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/Jingxuan-Yang/YangThesis.HITSZ.Dissertation,0,6,1,2019-10-30, 672 | 670,湖南大学,Hunan University,https://github.com/LASER-Yi/HNU-Thesis-LaTeX-Template,0,6,1,2019-05-22,GPL-3.0 673 | 671,(印度)马尼帕尔理工学院,Manipal Institute of Technology,https://github.com/avnishsachar/manipal_thesis_template,0,6,1,2020-05-05, 674 | 672,贵州大学,Guizhou University,https://github.com/francisol/GZUthesis-template,0,6,1,2025-01-02, 675 | 673,(德国)哥廷根大学,University of Göttingen*
(Georg-August-Universität Göttingen),https://github.com/mhellmeier/LaTeX-Thesis-Template,0,6,1,2021-03-30,MIT 676 | 674,安徽大学,Anhui University,https://github.com/qxx/AHU_Thesis,0,6,1,2014-03-11,GPL-2.0 677 | 675,华南理工大学,South China University of Technology,https://github.com/Droliven/scut-thesis-template,0,6,0,2023-04-07,GPL-3.0 678 | 676,福州大学,Fuzhou University,https://github.com/FzuerStudio/fzu-thesis-template,0,6,0,2013-05-14, 679 | 677,上海第二工业大学,Shanghai Second University of Technology,https://github.com/JouderMin/SSPUThesis,0,6,0,2024-04-17,MIT 680 | 678,(韩国)国立釜庆大学,"Pukyong National University, PKNU*
(국립부경대학교)",https://github.com/Luminebear/PKNU-thesis-template,0,6,0,2024-05-21, 681 | 679,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/aofenghanyue/PhDThesisWordTemplate,0,6,0,2021-11-27,MIT 682 | 680,通用模板,Common Templates,https://github.com/ccauet/thesis-template,0,6,0,2016-06-07,MIT 683 | 681,大连理工大学,Dalian University of Technology,https://github.com/echoorchid/DLUT_XeLaTeX_Template_for_Master,0,6,0,2017-03-13, 684 | 682,西北工业大学,Northwestern Polytechnical University,https://github.com/jingchangshi/NPU_PhD_Thesis_LaTeXTemplate,0,6,0,2022-01-07, 685 | 683,(德国)德根多夫理工学院,Deggendorf Institute of Technology*
(Technische Hochschule Deggendorf),https://github.com/playduck/thd-thesis,0,6,0,2023-02-23,BSD-3-Clause 686 | 684,西南石油大学,Southwest Petroleum University,https://github.com/qingbyin/swputhesis,0,6,0,2022-05-15, 687 | 685,山东大学,Shandong University,https://github.com/wangkerui/sduthesis,0,6,0,2014-05-27,WTFPL 688 | 686,(英国)牛津大学,University of Oxford,https://github.com/Tinyblack/Oxford-EngSci-Thesis-Template,0,5,8,2025-02-19,MIT 689 | 687,浙江大学,Zhejiang University,https://github.com/jzhugithub/zju_thesis_latex,0,5,7,2018-04-03, 690 | 688,通用模板,Common Templates,https://github.com/Aloft-Lab/CTEX-Templates,0,5,6,2022-11-04, 691 | 689,东南大学,Southeast University,https://github.com/SouthEastUniversityofChina/seuthesis,0,5,5,2014-07-18, 692 | 690,(墨西哥)国立自治大学,"National Autonomous University of Mexico*
(Universidad Nacional Autónoma de México, UNAM)",https://github.com/jafPrudente/Tesis,0,5,5,2025-05-01, 693 | 691,同济大学,Tongji University,https://github.com/CharlieZi/TJU-Post-Graduate-Latex-Template,0,5,4,2015-03-19, 694 | 692,西南民族大学,Southwest University for Nationalities,https://github.com/changkun/SWUNThesis,0,5,4,2016-05-09,LGPL-3.0 695 | 693,吉林大学,Jilin University,https://github.com/dartall/jluthesis,0,5,4,2016-02-29, 696 | 694,通用模板,Common Templates,https://github.com/goorkamateusz/praca-dyplomowa-szablon,0,5,3,2021-12-21, 697 | 695,澳门大学
(澳門大學),University of Macau (UM),https://github.com/williamwuzeyi/UM-FST-MSc-Thesis-LaTeX-TMPL,0,5,3,2018-10-04, 698 | 696,东北大学,Northeastern University,https://github.com/NEUAI/neuthesis-en,0,5,2,2020-05-27,Apache-2.0 699 | 697,华东理工大学,East China University of Science and Technology,https://github.com/hgkdzbf6/EcustThesis,0,5,2,2019-03-05,Apache-2.0 700 | 698,华东理工大学,East China University of Science and Technology,https://github.com/liuqipei/ecust-template-latex,0,5,2,2022-03-12,GPL-2.0 701 | 699,北京林业大学,Beijing Forestry University,https://github.com/quaeast/BjfuLatexTemplate,0,5,2,2021-06-03, 702 | 700,(马来西亚)玛拉理工大学,"MARA Technological University*
(Universiti Teknologi MARA, UiTM)",https://github.com/rizauddin/uitmthesis,0,5,2,2023-04-18,LPPL-1.3c 703 | 701,(法国)巴黎第八大学「万塞讷-圣但尼大学」,Paris 8 University Vincennes-Saint-Denis*
(Université Paris 8 Vincennes-Saint-Denis),https://github.com/yzrobot/LIASD_LaTeX_Thesis_Template,0,5,2,2020-03-17,GPL-3.0 704 | 702,浙江理工大学,Zhejiang Sci-Tech University,https://github.com/Casta-mere/LaTeX-GraduationTemplate,0,5,1,2024-09-29, 705 | 703,北京大学,Peking University,https://github.com/GXIU/Easy-Templates,0,5,1,2020-07-18, 706 | 704,中山大学,Sun Yat-sen University,https://github.com/Lovely-XPP/SYSU-thesis,0,5,1,2023-05-19,GPL-3.0 707 | 705,上海工程技术大学,Shanghai University of Engineering and Technology,https://github.com/MobtgZhang/sues-mm,0,5,1,2024-05-02,MIT 708 | 706,台湾阳明交通大学
(國立陽明交通大學),National Yang Ming Chiao Tung University (NYCU),https://github.com/alex81527/latex-nctu-thesis,0,5,1,2018-02-19,GPL-3.0 709 | 707,重庆交通大学,Chongqing Jiaotong University,https://github.com/cyanray/ThesisCQJTU,0,5,1,2022-10-10, 710 | 708,山东大学,Shandong University,https://github.com/luxun59/latex_Template,0,5,1,2023-01-17, 711 | 709,(美国)科罗拉多矿业学院,Colorado School of Mines,https://github.com/miligithub/MinesThesisTemplate,0,5,1,2021-01-28, 712 | 710,上海科技大学,ShanghaiTech University,https://github.com/sslchi/SISTThesis,0,5,1,2020-09-23, 713 | 711,(挪威)奥斯陆大学,University of Oslo*
(Universitetet i Oslo),https://github.com/uio-latex/phduio-monograph,0,5,1,2023-07-23,MIT 714 | 712,中南大学,Central South University,https://github.com/ChaoYan/CSUThesis,0,5,0,2025-02-21,Apache-2.0 715 | 713,通用模板,Common Templates,https://github.com/WetenSchaap/latex-imitatie,0,5,0,2022-06-17,AGPL-3.0 716 | 714,深圳大学,Shenzhen University,https://github.com/bearcatat/SZUThesis,0,5,0,2022-01-09, 717 | 715,(意大利)罗马大学,Sapienza University of Rome*
(Sapienza - Università di Roma),https://github.com/edoardottt/sapienza-latex-thesis,0,5,0,2024-11-10,GPL-3.0 718 | 716,(越南)芽庄大学,Nha Trang University*
(Trường Đại học Nha Trang),https://github.com/nd-hung/thesis-template,0,5,0,2024-07-04, 719 | 717,(日本)九州工业大学,Kyushu Institute of Technology*
(九州工業大学),https://github.com/ravijo/kyutech-thesis-template,0,5,0,2020-06-09,MIT 720 | 718,(美国)宾夕法尼亚大学,"University of Pennsylvania, UPenn",https://github.com/shyamupa/upenn-cis-thesis-template,0,4,7,2021-02-28, 721 | 719,(美国)耶鲁大学,Yale University*
(Yale University),https://github.com/jopetty/yale-thesis,0,4,5,2017-08-13,MIT 722 | 720,(美国)田纳西大学诺克斯维尔分校,"University of Tennessee, Knoxville (UTK)",https://github.com/edponce/thesis_template,0,4,3,2023-01-25,MIT 723 | 721,南开大学,Nankai University,https://github.com/bianbian1234/NKU_latex_template,0,4,2,2022-09-28, 724 | 722,湖南师范大学,Hunan Normal University,https://github.com/ljmdzyx1985/HUNNU_Thesis,0,4,2,2021-03-23, 725 | 723,南开大学,Nankai University,https://github.com/vicky66/nkuthesis-master-mac,0,4,2,2019-01-02, 726 | 724,厦门大学,Xiamen University,https://github.com/wwwxmu/-Latex-,0,4,2,2015-05-07, 727 | 725,(印度尼西亚)印度尼西亚大学,University of Indonesia*
(Universitas Indonesia),https://github.com/yohanesgultom/ui_style,0,4,2,2017-05-03,NOASSERTION 728 | 726,中国科学技术大学,University of Science and Technology of China,https://github.com/GaZ3ll3/ustcthesis,0,4,1,2014-02-07,GPL-2.0 729 | 727,四川大学,Sichuan University,https://github.com/MrGodfrey/SCU-Thesis-LaTeX-Template,0,4,1,2025-03-04,Apache-2.0 730 | 728,成都理工大学,Chengdu University of Technology,https://github.com/cs-whh/CDUT_thesis,0,4,1,2022-01-13, 731 | 729,四川大学,Sichuan University,https://github.com/myfox1997/SCU_Thesis,0,4,1,2019-04-26, 732 | 730,杭州电子科技大学,Hangzhou University of Electronic Science and Technology,https://github.com/ydar95/HDU-Master-Thesis-Latex,0,4,1,2022-04-14, 733 | 731,东北大学,Northeastern University,https://github.com/yeqibin/neuthesis,0,4,1,2016-08-07, 734 | 732,(美国)爱荷华大学,University of Iowa,https://github.com/zhiyzuo/uiowa-thesis-dissertation,0,4,1,2019-07-10,NOASSERTION 735 | 733,中山大学,Sun Yat-sen University,https://github.com/1FCENdoge/sysuthesis,0,4,0,2025-05-11,LPPL-1.3c 736 | 734,北京师范大学,Beijing Normal University,https://github.com/Hggg/BNU-Bachelor-Template,0,4,0,2020-04-24, 737 | 735,北京航空航天大学,"Beihang University (Beijing University of Aeronautics and Astronautics, BUAA)",https://github.com/JunyiHua/latex-mould-for-BUAA-bachelor-thesis-2021,0,4,0,2021-01-12, 738 | 736,大连理工大学,Dalian University of Technology,https://github.com/Saltsmart/DUT-master-thesis,0,4,0,2023-05-06,LPPL-1.3c 739 | 737,中南财经政法大学,Zhongnan University of Economics and Law,https://github.com/YihanCao123/zuel_thesis,0,4,0,2020-05-18,MIT 740 | 738,上海师范大学,Shanghai Normal University,https://github.com/andy123t/shnubachelor,0,4,0,2024-08-22,MIT 741 | 739,南开大学,Nankai University,https://github.com/hhhhhscott/NKU_Bachelor_Thesis_EO_College_LaTeX_Template,0,4,0,2024-02-13, 742 | 740,(马来西亚)马来西亚工艺大学,"University of Technology Malaysia, UTM*
(Universiti Teknologi Malaysia)",https://github.com/kianmeng/utmthesis-context,0,4,0,2022-09-07, 743 | 741,(德国)慕尼黑工业大学,Technical University of Munich*
(Technische Universität München),https://github.com/labenbmic1/git-BachelorThesis,0,4,0,2020-10-10, 744 | 742,(瑞士)瑞士西北应用科学与艺术大学,"University of Applied Sciences and Arts Northwestern Switzerland*
(Fachhochschule Nordwestschweiz, FHNW)",https://github.com/maechler/latex-thesis-template,0,4,0,2020-04-22, 745 | 743,天津大学,Tianjin University,https://github.com/oak619/TJUthesis_xelatex-phd-2020,0,4,0,2021-05-29,GPL-3.0 746 | 744,电子科技大学,University of Electronic Science and Technology of China,https://github.com/raja21068/UESTC-THESIS,0,4,0,2019-01-25, 747 | 745,山东大学,Shandong University,https://github.com/sailist/Refined-Version-of-SDU-Thesis-Template,0,4,0,2023-02-16,MIT 748 | 746,河海大学,Hohai University,https://github.com/schochastics/hhu_thesis,0,4,0,2023-07-12, 749 | 747,重庆大学,Chongqing University,https://github.com/yinguoweiOvO/CQUThesis_20242024,0,4,0,2024-03-31,NOASSERTION 750 | 748,浙江工商大学,Zhejiang Gongshang University,https://github.com/zewei-Zhang/zjgsuthesis,0,4,0,2022-04-26,MIT 751 | 749,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/latexstudio/PhD-Thesis--LaTeX-Template-for-BUPT,0,3,10,2016-07-18, 752 | 750,(沙特阿拉伯)卡西姆大学,Qassim University*
(جامعة_القصيم),https://github.com/coc-it/qu-thesis-template,0,3,6,2023-03-06,MIT 753 | 751,南京农业大学,Nanjing Agricultural University,https://github.com/Qsion/NJAU_Thesis,0,3,4,2023-12-04,GPL-3.0 754 | 752,台湾南台科技大学
(南臺科技大學),Southern Taiwan University of Science and Technology (STUST),https://github.com/yingchaotw/STUST-thesis-template,0,3,4,2024-08-24, 755 | 753,首都师范大学,Capital Normal University,https://github.com/huwan/cnuthesis,0,3,3,2021-02-09, 756 | 754,(英国)兰卡斯特大学,Lancaster University*
(Lancaster University),https://github.com/ErickChacon/lancs-thesis,0,3,2,2019-02-04,GPL-3.0 757 | 755,北京林业大学,Beijing Forestry University,https://github.com/bjfu-projects/bjfuthesis,0,3,2,2021-07-02,GPL-3.0 758 | 756,北京语言大学,Beijing Language and Culture University,https://github.com/cunliangkong/BLCU-Thesis,1,3,2,2023-05-15, 759 | 757,(德国)帕德博恩大学,Paderborn University*
(Universität Paderborn),https://github.com/patrickrobrecht/latex-templates-upb,0,3,2,2017-12-17,GPL-3.0 760 | 758,(葡萄牙) 里斯本高等理工学院,"Instituto Superior Técnico*
(Instituto Superior Técnico, IST)",https://github.com/FilipeMar/DoctoralThesisIST,0,3,1,2019-04-04,GPL-3.0 761 | 759,(葡萄牙) 里斯本高等理工学院,"Instituto Superior Técnico*
(Instituto Superior Técnico, IST)",https://github.com/FilipeMar/Phd-Thesis-Tecnico,0,3,1,2019-04-05,GPL-3.0 762 | 760,大连理工大学,Dalian University of Technology,https://github.com/GoBigorGoHome/dutthesis,0,3,1,2017-06-09, 763 | 761,同济大学,Tongji University,https://github.com/Hl-W/TongjiThesis_modified,0,3,1,2024-05-21, 764 | 762,华南理工大学,South China University of Technology,https://github.com/KaitlynZeng/SCUT-THESIS,0,3,1,2020-05-29, 765 | 763,(伊朗)哈杰·纳西尔丁·图西理工大学,Khajeh Nasir Toosi University of Technology*
(دانشگاه صنعتی خواجه نصيرالدين طوسی),https://github.com/MJAHMADEE/KNTUThesis,0,3,1,2024-08-19,MIT 766 | 764,复旦大学,Fudan University,https://github.com/ShupeiLi/fudan-thesis-template,0,3,1,2022-04-11, 767 | 765,(新加坡)南洋理工大学,Nanyang Technological University (NTU),https://github.com/alxiong/ntu-thesis-latex,0,3,1,2025-03-27,Apache-2.0 768 | 766,对外经济贸易大学,University of International Business and Economics,https://github.com/caibengbu/uibethesis,0,3,1,2024-07-10, 769 | 767,成都理工大学,Chengdu University of Technology,https://github.com/fumeng6/CDUT-Undergraduate-Thesis-Template,0,3,1,2022-09-11, 770 | 768,湖南大学,Hunan University,https://github.com/gannerfreer/Hnu_master_thesis,0,3,1,2025-05-14, 771 | 769,浙江大学,Zhejiang University,https://github.com/junpeiz/ZJU-CS-Undergrad-Thesis-Latex-Template,0,3,1,2019-03-24, 772 | 770,(西班牙)马德里理工大学,"Technical University of Madrid*
(Universidad Politécnica de Madrid, UPM)",https://github.com/ricardolopezgr/TFG-TFM-template,0,3,1,2018-11-25,MIT 773 | 771,东北师范大学,Northeast Normal University,https://github.com/BENZJ/NNU_Latex_temple,0,3,0,2021-05-03, 774 | 772,(法国)布列塔尼-卢瓦尔大学,Brittany and Loire University*
(Université Bretagne-Loire),https://github.com/Callidon/template-thesis-ubl-mathstic,0,3,0,2020-02-14,MIT 775 | 773,厦门大学,Xiamen University,https://github.com/CamuseCao/XMU-Thesis-Overleaf,1,3,0,2020-08-11, 776 | 774,厦门大学,Xiamen University,https://github.com/CoolTowel/XMU_ThesisTemplate,0,3,0,2020-02-23,GPL-3.0 777 | 775,中国海洋大学,Ocean University of China,https://github.com/Duola-li/OUC-Latex-Thesis-master,0,3,0,2023-05-29, 778 | 776,重庆邮电大学,Chongqing University of Posts and Telecommunications,https://github.com/ElegantLee/CQUPT-Thesis-LaTex-Template,0,3,0,2023-03-12,MIT 779 | 777,中国海洋大学,Ocean University of China,https://github.com/SunYufei/oucthesis,1,3,0,2021-05-24, 780 | 778,中国人民大学,Renmin University of China,https://github.com/abuccts/ructhesis,0,3,0,2017-10-31,LPPL-1.3c 781 | 779,中南财经政法大学,Zhongnan University of Economics and Law,https://github.com/donk3yzz/zuel_zh,0,3,0,2019-04-06, 782 | 780,湖南工商大学,Hunan Industrial and Commercial University,https://github.com/ethan-phu/hutb_master_thesis_latex,0,3,0,2022-03-12, 783 | 781,(美国)西密歇根大学,Western Michigan University*
(Western Michigan University),https://github.com/jonlighthall/wmu,0,3,0,2021-01-27,MIT 784 | 782,北京电影学院,Beijing Film Academy,https://github.com/juneleung/BFA_Master_Thesis_Template,0,3,0,2024-01-29, 785 | 783,北京电影学院,Beijing Film Academy,https://github.com/juneleung/BFA_Undergraduate_Thesis_Template,0,3,0,2024-01-29, 786 | 784,(荷兰)阿姆斯特丹大学,University of Amsterdam*
(Universiteit van Amsterdam),https://github.com/m4lvin/illc-phd-thesis-template,0,3,0,2025-02-17, 787 | 785,华南理工大学,South China University of Technology,https://github.com/mengchaoheng/SCUT_course,0,3,0,2023-11-03, 788 | 786,(美国)亚利桑那州立大学,Arizona State University,https://github.com/nicole-brewer/asu-thesis,0,3,0,2023-12-21,GPL-3.0 789 | 787,(俄罗斯)南方联邦大学,Southern Federal University (SFedU)*
(Южный федеральный университет (ЮФУ)),https://github.com/sanyarnd/sfedu-mmcs-latex-thesis-template,0,3,0,2019-06-21,CC0-1.0 790 | 788,中国人民大学,Renmin University of China,https://github.com/tnoa77/RUC_Thesis_2019,0,3,0,2020-02-06, 791 | 789,清华大学,Tsinghua University,https://github.com/xavieryao/thu-ell-bachelor-thesis,0,3,0,2019-10-04, 792 | 790,台湾清华大学
(國立清華大學),National Tsing Hua University (NTHU),https://github.com/yszheda/nthu-master-thesis,0,3,0,2014-06-12,MIT 793 | 791,兰州大学,Lanzhou University,https://github.com/zmx0142857/lzuthesis,0,3,0,2020-05-31, 794 | 792,厦门大学,Xiamen University,https://github.com/liulizhi1996/XMU-Bachelor-Thesis-Templete,0,2,3,2018-05-08, 795 | 793,华东理工大学,East China University of Science and Technology,https://github.com/scottoasis/ecustthesis,0,2,3,2013-06-16, 796 | 794,哈尔滨医科大学,Harbin Medical University,https://github.com/a67878813/HMUThesis-master,0,2,2,2017-05-30,Apache-2.0 797 | 795,厦门大学,Xiamen University,https://github.com/faying/XMU-LaTeX-Template,0,2,2,2012-11-23, 798 | 796,香港城市大学
(香港城市大學),City University of Hong Kong (CityU),https://github.com/huwan/cleanthesis-cityu,0,2,2,2020-07-29, 799 | 797,(美国)马凯特大学,Marquette University,https://github.com/pdgessler/mugsthesis,1,2,2,2022-09-01, 800 | 798,复旦大学,Fudan University,https://github.com/yhyi15/FDU_PhD_Thesis_Template,0,2,2,2017-04-04, 801 | 799,西安电子科技大学,Xidian University,https://github.com/ztcxdu/xdu_MS_thesis_template,0,2,2,2020-12-22,GPL-3.0 802 | 800,(澳大利亚)新南威尔士大学,University of New South Wales,https://github.com/andrewletten/LettenPhDThesis2015,0,2,1,2017-06-10,MIT 803 | 801,台湾大学
(國立臺灣大學),National Taiwan University (NTU),https://github.com/chujay/NTU_latex,0,2,1,2017-07-27, 804 | 802,山西农业大学,Shanxi Agricultural University,https://github.com/dubuqingfeng/sxau-document,1,2,1,2016-12-13, 805 | 803,天津大学,Tianjin University,https://github.com/jinyu121/tju-thesis-simple,0,2,1,2021-05-29, 806 | 804,三峡大学,China Three Gorges University,https://github.com/sxdxyxy/smartmedical,0,2,1,2017-04-15, 807 | 805,东北大学,Northeastern University,https://github.com/w-mj/neu_cse_bachelor_thesis,0,2,1,2020-05-27, 808 | 806,通用模板,Common Templates,https://github.com/CRAG666/tectonic-latex-template,0,2,0,2024-06-14,GPL-3.0 809 | 807,天津大学,Tianjin University,https://github.com/ChrisVicky/TJU-Thesis-LaTeX-Template,0,2,0,2023-03-05,GPL-3.0 810 | 808,兰州大学,Lanzhou University,https://github.com/CosmosLiang/LZUthesis,0,2,0,2018-12-18, 811 | 809,武汉大学,Wuhan University,https://github.com/HarborYuan/whucs-thesis,0,2,0,2023-06-01, 812 | 810,吉林大学,Jilin University,https://github.com/Herbert-Gao/JLU_Graduation_Model_Bachelor,0,2,0,2022-01-10, 813 | 811,湖南大学,Hunan University,https://github.com/MaFuyan/HNU_Thesis_LaTeX_MacOS,0,2,0,2022-01-04, 814 | 812,上海工程技术大学,Shanghai University of Engineering and Technology,https://github.com/MobtgZhang/sues-thesis-bachelor,0,2,0,2024-02-21,MIT 815 | 813,大连交通大学,Dalian Jiaotong University,https://github.com/MrLQQ/DJTU-latex-thesis,0,2,0,2021-10-07,AGPL-3.0 816 | 814,江苏大学,Jiangsu University,https://github.com/NTrabbit5/UJS-thesis,0,2,0,2020-11-02, 817 | 815,苏州大学,Soochow University,https://github.com/NatureGeorge/sudathesis-bachelor,0,2,0,2021-06-03,MIT 818 | 816,北京理工大学,Beijing Institute of Technology,https://github.com/PolarLion/BIT-thesis-template,0,2,0,2022-10-03, 819 | 817,华南理工大学,South China University of Technology,https://github.com/VicoZhang/SCUT_Latex_template,0,2,0,2023-02-26,MIT 820 | 818,大连理工大学,Dalian University of Technology,https://github.com/Youxuan1/dut_essay_model,0,2,0,2022-12-11, 821 | 819,浙江理工大学,Zhejiang Sci-Tech University,https://github.com/YvonZhou/ZSTUThesis,0,2,0,2019-04-14,Apache-2.0 822 | 820,(英国)帝国理工学院,Imperial College London (IC),https://github.com/blaahhrrgg/icldiss,0,2,0,2015-07-28,MIT 823 | 821,(罗马尼亚)雅西“亚历山德鲁·杨·库扎”大学,"Alexandru Ioan Cuza University of Iasi*
(„Alexandru Ioan Cuza” University of Iași, UAIC)",https://github.com/blankdots/LatexThesisTemplate,0,2,0,2023-12-18,MIT 824 | 822,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/cnMuggle/BuptThesisBachelor_1.1,0,2,0,2015-07-18, 825 | 823,兰州大学,Lanzhou University,https://github.com/latexstudio/LZUthesis,0,2,0,2021-05-28, 826 | 824,武汉大学,Wuhan University,https://github.com/lvZic/latex,0,2,0,2018-08-16, 827 | 825,山东财经大学,Shandong University of Finance and Economics,https://github.com/mslxl/sdufe-thesis,0,2,0,2024-05-20,LPPL-1.3c 828 | 826,武汉大学,Wuhan University,https://github.com/prejudice666/whu-thesis-latex-template,0,2,0,2023-05-25, 829 | 827,江苏科技大学,Jiangsu University of Science and Technology,https://github.com/sheeplib/JustThesis,0,2,0,2018-06-23, 830 | 828,湖北经济学院,Hubei School of Economics,https://github.com/snyh/hbue_thesis,0,2,0,2019-03-19, 831 | 829,四川大学,Sichuan University,https://github.com/wonderland-dsg/scuthesis,0,2,0,2020-03-07, 832 | 830,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/yangze01/BUPT-Master-Graduation-Thesis,0,2,0,2020-01-10, 833 | 831,西北师范大学,Northwest Normal University,https://github.com/yxli8023/Graduate-Thesis-Module,0,2,0,2018-02-15, 834 | 832,(印度)印度理工学院马德拉斯分校,"Indian Institute of Technology Madras, IIT Madras",https://github.com/amitanilkulkarni/iitm-thesis-template,0,1,5,2016-04-24,MIT 835 | 833,华东理工大学,East China University of Science and Technology,https://github.com/clyce/ecust_thesis_template,0,1,2,2013-03-31, 836 | 834,天津大学,Tianjin University,https://github.com/latexstudio/tjuThesis,0,1,2,2016-01-11, 837 | 835,武汉大学,Wuhan University,https://github.com/paul-wu/whuthesis,0,1,2,2014-12-30, 838 | 836,北京化工大学,Beijing University of Chemical Technology,https://github.com/qianqianjun/UnetFCNDAE,0,1,2,2020-06-19, 839 | 837,西安交通大学,Xi'an Jiaotong University,https://github.com/4712635/xjtu_thesis_template,0,1,1,2016-10-08,GPL-3.0 840 | 838,电子科技大学,University of Electronic Science and Technology of China,https://github.com/Alan5279/UESTC_Doc_Thesis,0,1,1,2020-05-29, 841 | 839,南开大学,Nankai University,https://github.com/JerryMouseZ/NKUOverleafTemplate2021,0,1,1,2021-04-30, 842 | 840,东南大学,Southeast University,https://github.com/LingYeAI/SEUthesis2019,0,1,1,2019-05-13,MIT 843 | 841,四川大学,Sichuan University,https://github.com/QWQ-intro/SCU-Thesis-latex,0,1,1,2022-03-16,MIT 844 | 842,东南大学,Southeast University,https://github.com/RayDia/SEU-LaTeX-Thesis-Template-,0,1,1,2019-03-09, 845 | 843,郑州大学,Zhengzhou University,https://github.com/ZZUTUG/ZZU_Thesis,0,1,1,2022-02-28,LPPL-1.3c 846 | 844,宁夏大学,Ningxia University,https://github.com/baoxianyuan/NXUThesis,0,1,1,2025-03-28, 847 | 845,香港理工大学
(香港理工大學),Hong Kong Polytechnic University (PolyU),https://github.com/edwardtoday/hkputhesis,0,1,1,2013-08-07,MIT 848 | 846,淮北师范大学,Huaibei Normal University,https://github.com/everyx/HNUthesis,0,1,1,2015-06-02, 849 | 847,清华大学,Tsinghua University,https://github.com/iso9/thuthesis,0,1,1,2013-03-13, 850 | 848,华东师范大学,East China Normal University,https://github.com/rachlegend/ECNU-Template,0,1,1,2024-01-25, 851 | 849,西北工业大学,Northwestern Polytechnical University,https://github.com/tianhangnpu/npu_thesis_template,0,1,1,2020-07-05, 852 | 850,四川师范大学,Sichuan Normal University,https://github.com/yiyuezhuo/sicnu-thesis,0,1,1,2018-04-25, 853 | 851,武汉大学,Wuhan University,https://github.com/Achhhe/WHUMaster-Latex-2021,0,1,0,2022-03-26, 854 | 852,中南大学,Central South University,https://github.com/BingBLL/CSUThesis,0,1,0,2021-12-24,Apache-2.0 855 | 853,北京林业大学,Beijing Forestry University,https://github.com/Bloomberg2000/bjfuthesis_old,0,1,0,2021-06-17, 856 | 854,中国科学院大学,University of Chinese Academy of Sciences,https://github.com/FirstPotato/IUE-Thesis,0,1,0,2020-07-01, 857 | 855,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/FutureForMe/HIT_thesis,0,1,0,2022-08-28, 858 | 856,(捷克)捷克生命科学大学,"Czech University of Life Sciences Prague*
(Česká zemědělská univerzita v Praze, ČZU/CULS)",https://github.com/Harvie/CULS-Thesis,0,1,0,2021-07-11,MIT 859 | 857,南开大学,Nankai University,https://github.com/JH-Wei/NKUThesis,0,1,0,2016-04-26, 860 | 858,吉林大学,Jilin University,https://github.com/Katzen-D/JLUThesis_D,0,1,0,2021-02-01, 861 | 859,天津大学,Tianjin University,https://github.com/Rien190/TJU-Paper-template,0,1,0,2022-05-17, 862 | 860,北京外国语大学,Beijing Foreign Studies University,https://github.com/Ryan-the-hito/BFSU-paper,0,1,0,2023-11-02,MIT 863 | 861,南京审计大学,Nanjing University of Audit,https://github.com/SuperposedWave/NauThesis,0,1,0,2023-03-23, 864 | 862,武汉科技大学,Wuhan University of Science and Technology,https://github.com/YuanXinCherry/wust-thesis,0,1,0,2021-12-12,MIT 865 | 863,南开大学,Nankai University,https://github.com/benhaotang/NKThesis,0,1,0,2023-04-30,MPL-2.0 866 | 864,华东师范大学,East China Normal University,https://github.com/chguw/ecnuphd,0,1,0,2023-04-11,BSD-3-Clause 867 | 865,上海第二工业大学,Shanghai Second University of Technology,https://github.com/chuxubank/ssputhesis,0,1,0,2019-05-17,Apache-2.0 868 | 866,海南师范大学,Hainan Normal University,https://github.com/cliffigor/hainnu-thesis,0,1,0,2022-10-19,MIT 869 | 867,湖南大学,Hunan University,https://github.com/davendw49/HNUbFinalThesis_template,0,1,0,2019-05-21, 870 | 868,哈尔滨工业大学,Harbin Institute of Technology,https://github.com/dustincys/hithesis,0,1,0,2025-03-19, 871 | 869,(阿根廷)托尔夸托迪特利亚大学,Torcuato di Tella University*
(Universidad Torcuato Di Tella),https://github.com/federicoduca/latex-templates,0,1,0,2024-02-23, 872 | 870,山东大学,Shandong University,https://github.com/lichuanxiang/SDUGradThesis,0,1,0,2022-01-27,MIT 873 | 871,南京信息工程大学,Nanjing University of Information Engineering,https://github.com/liyuwang2016/NUIST_Latex,0,1,0,2019-01-07, 874 | 872,吉林大学,Jilin University,https://github.com/lyjslay/JLU-EE-template,0,1,0,2021-12-12, 875 | 873,浙江师范大学,Zhejiang Normal University,https://github.com/minqimao/zjnu_thesis,0,1,0,2017-01-27,GPL-2.0 876 | 874,(白俄罗斯)国立信息和无线电电子大学,"Belarusian State University of Informatics and Radioelectronics, BSUIR*
(Беларускі дзяржаўны ўніверсітэт інфарматыкі і радыёэлектронікі)",https://github.com/nadevko/bsuir-TeX-1,0,1,0,2025-05-04,GPL-3.0 877 | 875,西安交通大学,Xi'an Jiaotong University,https://github.com/smartsrh/xjtubachelor,0,1,0,2016-06-12,MIT 878 | 876,南开大学,Nankai University,https://github.com/tensor-matrix/NKUThesis,0,1,0,2023-05-06, 879 | 877,大连理工大学,Dalian University of Technology,https://github.com/wendy2003888/DLUT_XeLatex_TemplateForBachelor,0,1,0,2017-06-29, 880 | 878,东北师范大学,Northeast Normal University,https://github.com/wuyanglee/LaTeX_template_for_Thesis_NENU,0,1,0,2022-04-13, 881 | 879,西安交通大学,Xi'an Jiaotong University,https://github.com/zzjjzzgggg/xjtuthesis,0,1,0,2016-09-18, 882 | 880,(美国)德克萨斯州大学奥斯汀分校,University of Texas at Austin,https://github.com/OttoStruve/UT-thesis,0,0,5,2018-06-27,MIT 883 | 881,(德国)康斯坦茨应用科技大学,Konstanz University of Applied Sciences*
(Hochschule Konstanz HTWG),https://github.com/AihamAbusaleh/thesis-template-latex,0,0,3,2018-07-19, 884 | 882,(美国)斯坦福大学,Stanford University,https://github.com/jbau/thesis,0,0,2,2013-05-21, 885 | 883,东华大学,Donghua University,https://github.com/DCMMC/DHU-Paper-Template,0,0,1,2020-12-14, 886 | 884,上海交通大学,Shanghai Jiaotong University,https://github.com/GreenTeaHua/sjtu_latex,0,0,1,2022-01-11, 887 | 885,华东师范大学,East China Normal University,https://github.com/Haskely/ECNUMasterThesisLatexTemplate,0,0,1,2022-10-01, 888 | 886,上海交通大学,Shanghai Jiaotong University,https://github.com/JingruiYu/SJTU_Thesis_21,0,0,1,2021-09-13,Unlicense 889 | 887,华东师范大学,East China Normal University,https://github.com/SmartPangzi/ECNU-Graduation-Thesis-Template,0,0,1,2020-07-04, 890 | 888,澳门大学
(澳門大學),University of Macau (UM),https://github.com/gwwang16/UM-PhD-Thesis-Latex-TMPL,0,0,1,2018-11-09, 891 | 889,武汉大学,Wuhan University,https://github.com/0xf4vul/whuBSthesis,0,0,0,2015-04-20, 892 | 890,湖南大学,Hunan University,https://github.com/AaronDavis2020/HNU-thesis,0,0,0,2022-01-27,MIT 893 | 891,北京林业大学,Beijing Forestry University,https://github.com/Bloomberg2000/BJFUThesis,0,0,0,2021-06-25, 894 | 892,中国科学技术大学,University of Science and Technology of China,https://github.com/DingyunZhang/ustc_thesis_bachelor,0,0,0,2022-04-01,LPPL-1.3c 895 | 893,南京航空航天大学,Nanjing University of Aeronautics and Astronautics,https://github.com/ForeverDavid/nuaa-thesis,0,0,0,2016-05-24,GPL-3.0 896 | 894,南京理工大学,Nanjing University of Science and Technology,https://github.com/Hobr/njust_thesis_latex_template,0,0,0,2024-05-09,LPPL-1.3c 897 | 895,山东大学,Shandong University,https://github.com/IIIIntx/-sdu-latex-,0,0,0,2023-05-19,GPL-3.0 898 | 896,山东大学,Shandong University,https://github.com/Ice0cean/sdumt,0,0,0,2015-07-26, 899 | 897,吉林大学,Jilin University,https://github.com/JLUqiankun/JLU_Graduate_Thesis_Template,0,0,0,2020-05-21, 900 | 898,中央民族大学,Minzu University of China,https://github.com/MUCVIP/mucthesis,0,0,0,2023-05-19,LPPL-1.3c 901 | 899,清华大学,Tsinghua University,https://github.com/Markshilong/THU_Thesis_Bachelor,0,0,0,2022-05-30,LPPL-1.3c 902 | 900,(奥地利)格拉茨技术大学,"Graz University of Technology*
(Technische Universität Graz, TU Graz)",https://github.com/MarkusPic/master_thesis_template,0,0,0,2019-04-02,MIT 903 | 901,(俄罗斯)莫斯科国立航空学院,"Moscow Aviation Institute*
(Московский авиационный институт, МАИ)",https://github.com/NetherQuartz/BachelorThesis,0,0,0,2022-06-05,GPL-3.0 904 | 902,山东大学,Shandong University,https://github.com/OpenMandrivaAssociation/texlive-sduthesis,0,0,0,2025-03-02, 905 | 903,上海科技大学,ShanghaiTech University,https://github.com/OpenMandrivaAssociation/texlive-shtthesis,0,0,0,2025-03-02, 906 | 904,西安电子科技大学,Xidian University,https://github.com/OpenMandrivaAssociation/texlive-xduthesis,0,0,0,2025-03-02, 907 | 905,西安电子科技大学,Xidian University,https://github.com/Qinka/xdu-ug-thesis,0,0,0,2017-08-24,LGPL-3.0 908 | 906,大连理工大学,Dalian University of Technology,https://github.com/QuYue/The-XeLaTex-Template-of-Master-Degree-Thesis-of-DUT,0,0,0,2023-02-21, 909 | 907,澳门科技大学
(澳門科技大學),Macau University of Science and Technology (MUST),https://github.com/Tim-eyes/MUST_Thesis_Template,0,0,0,2022-04-25,NOASSERTION 910 | 908,浙江大学,Zhejiang University,https://github.com/Zhejiang-University-GKC/cs-zju-thesis,0,0,0,2022-07-16,BSD-2-Clause 911 | 909,浙江大学,Zhejiang University,https://github.com/ankwinters/ZJUthesis_template,0,0,0,2019-01-02, 912 | 910,西安交通大学,Xi'an Jiaotong University,https://github.com/bys17778885154/xjtu_thesis,0,0,0,2023-02-20,LPPL-1.3c 913 | 911,东北师范大学,Northeast Normal University,https://github.com/chenpx976/nenuthesis,0,0,0,2016-02-02, 914 | 912,中国石油大学(华东),China University of Petroleum (East China),https://github.com/cr0wchen/upc-thesis-2020,0,0,0,2020-06-29, 915 | 913,通用模板,Common Templates,https://github.com/dimkirt/latex-thesis-template,0,0,0,2018-08-06, 916 | 914,中国传媒大学,Communication University of China,https://github.com/felicia-tung/My-CUC-Thesis,0,0,0,2023-11-28,LPPL-1.3c 917 | 915,兰州大学,Lanzhou University,https://github.com/fengyongkang/PgD-PHD-Thesis-Latex-template-for-Lanzhou-University,0,0,0,2021-01-26, 918 | 916,湖南师范大学,Hunan Normal University,https://github.com/gkm0120/hunnu,0,0,0,2022-09-04, 919 | 917,东华大学,Donghua University,https://github.com/godshen/dhu_thesis,0,0,0,2023-09-02, 920 | 918,南开大学,Nankai University,https://github.com/guangpintao/nku_thesis,0,0,0,2019-06-05, 921 | 919,(美国)西北大学,Northwestern University,https://github.com/h-havenga/The-unofficial-NWU-LaTeX-template,0,0,0,2018-04-05, 922 | 920,天津大学,Tianjin University,https://github.com/hanwang-15/TJUthesis_xelatex-phd-2020,0,0,0,2020-07-05,GPL-3.0 923 | 921,吉林大学,Jilin University,https://github.com/jhyutian/jlu-thesis,0,0,0,2016-02-07, 924 | 922,中国科学技术大学,University of Science and Technology of China,https://github.com/jiaopjie/ustcthesis,0,0,0,2019-02-12, 925 | 923,香港科技大学
(香港科技大學),Hong Kong University Of Science And Technology (HUST),https://github.com/junxue-zhang/hkust-latex-thesis,0,0,0,2018-01-09, 926 | 924,中山大学,Sun Yat-sen University,https://github.com/kuiqx/biyelunwen,0,0,0,2023-04-09,GPL-3.0 927 | 925,西北农林科技大学,Northwest A&F University,https://github.com/latexstudio/nwsuaf_thesis_template,0,0,0,2019-01-22, 928 | 926,东南大学,Southeast University,https://github.com/liuying1905/seu_thesis,0,0,0,2021-06-03, 929 | 927,电子科技大学,University of Electronic Science and Technology of China,https://github.com/lzcn/uestcthesis,0,0,0,2023-01-12,LPPL-1.3c 930 | 928,青岛工学院,Qingdao Institute of Technology,https://github.com/monburan/oucqdc-LaTeX-document,0,0,0,2016-12-18, 931 | 929,(英国)伦敦艺术大学,"University of the Arts London, UAL",https://github.com/natuk/ual-thesis-template,0,0,0,2015-07-08, 932 | 930,南京航空航天大学,Nanjing University of Aeronautics and Astronautics,https://github.com/nmykhan/NUAA-Thesis-Template-NASR,0,0,0,2022-12-22, 933 | 931,西安电子科技大学,Xidian University,https://github.com/oopsno/yabasky,0,0,0,2016-05-26,LGPL-3.0 934 | 932,天津大学,Tianjin University,https://github.com/pingyuer/TJUThesis,0,0,0,2022-03-21, 935 | 933,电子科技大学,University of Electronic Science and Technology of China,https://github.com/raja21068/UESTC-LATEX-THESIS-FORMAT,0,0,0,2021-03-04, 936 | 934,上海工程技术大学,Shanghai University of Engineering and Technology,https://github.com/shansicheng/sues-thesis,0,0,0,2023-05-11,MIT 937 | 935,华东师范大学,East China Normal University,https://github.com/tangyc8866/ECNU-Undergraduate-TeX-Template,0,0,0,2020-04-17, 938 | 936,东北大学,Northeastern University,https://github.com/ttimasdf/neuthesis,0,0,0,2018-03-23, 939 | 937,电子科技大学,University of Electronic Science and Technology of China,https://github.com/tzz1996/ThesisUESTC,0,0,0,2018-08-06, 940 | 938,厦门大学,Xiamen University,https://github.com/uhomelee/xmu-undergraduate-thesis,0,0,0,2019-05-27, 941 | 939,华中师范大学,Central China Normal University,https://github.com/wasphin/latex-ccnu-thesis,0,0,0,2020-01-30,GPL-3.0 942 | 940,北京邮电大学,Beijing University of Posts and Telecommunications,https://github.com/way-zer/BUPTBachelorThesis,0,0,0,2023-04-21, 943 | 941,南京航空航天大学,Nanjing University of Aeronautics and Astronautics,https://github.com/wfxyjx/nuaathesis,0,0,0,2014-03-10, 944 | 942,桂林电子科技大学,Guilin University of Electronic Science and Technology,https://github.com/wrm244/Guet_LATEX_Thesis_Template,0,0,0,2023-06-05,LPPL-1.3c 945 | 943,南开大学,Nankai University,https://github.com/zihaodong/NKU_thesis,0,0,0,2020-07-18, 946 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material 2 | -------------------------------------------------------------------------------- /snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantang/latex-templates/1d1057e04e1e129a35ba628f1c93741171b05303/snapshot.png -------------------------------------------------------------------------------- /wiki/docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantang/latex-templates/1d1057e04e1e129a35ba628f1c93741171b05303/wiki/docs/assets/favicon.ico -------------------------------------------------------------------------------- /wiki/docs/index.md: -------------------------------------------------------------------------------- 1 | # Beyond LaTeX Templates 2 | 3 | [![Awesome](https://awesome.re/badge.svg)](https://github.com/hantang/latex-templates) 4 | ![Deploy Wiki](https://github.com/hantang/latex-templates/actions/workflows/deploy.yml/badge.svg) 5 | ![GitHub Commit Badge](https://img.shields.io/github/last-commit/hantang/latex-templates.svg) 6 | ![GitHub License Badge](https://img.shields.io/github/license/hantang/latex-templates.svg) 7 | 8 | **Welcome to awesome latex-templates wiki!** 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /wiki/mkdocs.yml: -------------------------------------------------------------------------------- 1 | # Site information 2 | site_name: Beyond LaTeX Templates 3 | site_url: https://hantang.github.io/latex-templates/ 4 | site_author: hantang 5 | site_description: "Awesome latex* templates and beyond..." 6 | copyright: Copyright © 2023-2024 Hantang 7 | repo_name: latex-templates 8 | repo_url: https://github.com/hantang/latex-templates 9 | 10 | # Theme 11 | theme: 12 | name: material 13 | # custom_dir: overrides 14 | language: "zh" 15 | # favicon: assets/favicon.ico 16 | icon: 17 | logo: simple/latex 18 | repo: fontawesome/brands/square-github 19 | font: 20 | text: Open Sans, Helvetica Neue, Roboto, sans-serif, serif 21 | code: Fira Mono, Fira Code, Roboto Mono, monospace 22 | palette: 23 | - media: "(prefers-color-scheme)" 24 | toggle: 25 | icon: material/link 26 | name: Switch to light mode 27 | - media: "(prefers-color-scheme: light)" 28 | scheme: default 29 | primary: blue 30 | accent: blue 31 | toggle: 32 | icon: material/toggle-switch 33 | name: Switch to dark mode 34 | - media: "(prefers-color-scheme: dark)" 35 | scheme: slate 36 | primary: black 37 | accent: indigo 38 | toggle: 39 | icon: material/toggle-switch-off 40 | name: Switch to system preference 41 | features: 42 | - navigation.footer 43 | - navigation.path 44 | - navigation.tabs 45 | - navigation.top 46 | - navigation.sections 47 | - search.highlight 48 | - search.suggest 49 | - toc.follow 50 | - toc.integrate 51 | 52 | markdown_extensions: 53 | - abbr 54 | - admonition 55 | - attr_list 56 | - def_list 57 | - footnotes 58 | - md_in_html 59 | - tables 60 | - toc: 61 | permalink: true 62 | slugify: !!python/object/apply:pymdownx.slugs.slugify 63 | kwds: 64 | case: lower 65 | # Python Markdown Extensions 66 | - pymdownx.arithmatex: 67 | generic: true 68 | - pymdownx.betterem: 69 | smart_enable: all 70 | - pymdownx.caret 71 | - pymdownx.details 72 | - pymdownx.emoji: 73 | emoji_index: !!python/name:material.extensions.emoji.twemoji 74 | emoji_generator: !!python/name:material.extensions.emoji.to_svg 75 | - pymdownx.highlight 76 | - pymdownx.inlinehilite 77 | - pymdownx.keys 78 | - pymdownx.mark 79 | - pymdownx.smartsymbols 80 | - pymdownx.superfences 81 | - pymdownx.tabbed: 82 | alternate_style: true 83 | - pymdownx.tasklist: 84 | custom_checkbox: true 85 | - pymdownx.tilde 86 | 87 | # extra_javascript: 88 | # extra_css: 89 | 90 | extra: 91 | social: 92 | - icon: fontawesome/brands/github 93 | link: https://github.com/hantang 94 | 95 | plugins: 96 | - search: 97 | lang: 98 | - en 99 | - zh 100 | separator: '[\s\-,:!=\[\]()"/\u200b]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;' 101 | 102 | nav: 103 | - 主页: index.md 104 | # START-NAV 105 | # END-NAV 106 | --------------------------------------------------------------------------------