Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyxi committed Sep 29, 2019
0 parents commit 4c29521
Show file tree
Hide file tree
Showing 11 changed files with 574 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**Minimum Working Example**
A minimum example code that can reproduce the behavior.
The overall code should generally not exceed 10 lines.

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Platform (please complete the following information):**
- OS: [e.g. Windows 10, macOS Catalina]
- TeX Distribution [e.g. TeX Live 2019, MiKTeX 2.9.7152, Overleaf]
- Application(s) [xelatex, latexmk, biber]
- Editor [e.g. Texmaker, WinEdt]


**Additional context**
Add any other context about the problem here.
62 changes: 62 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb

## Intermediate documents:
*.dvi
*.xdv
*-converted-to.*

# these rules might exclude image files for figures etc.
*.ps
*.eps
*.pdf

## Generated if empty string is given at "Please type another file name for output:"
.pdf

## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml

## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync

## Build tool directories for auxiliary files
# latexrun
latex.out/

## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa

# amsthm
*.thm

# TikZ & PGF
*.dpth
*.md5
*.auxlock

# Visual Studio Code
.vscode/
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# WHUT Bachelor's Degree Thesis LaTeX Template v 0.9

## 简介

- 编译要求:XeLaTeX & biber
- 编译环境:TeX Live 2019

本项目首次发布于2019年9月29日。

## 简明帮助

### 目录结构

本模板推荐采用的文件目录结构:
```
.
├── main.tex % 您的主 TeX 源文件
├── whut-bachelor.cls % 本项目提供的的类文件
├── ref.bib % 包含您的参考文献的文件
└── body/ % 包含您各章节 TeX 源文件的文件夹
├── abstract.tex % 包含中英文摘要部分的 TeX 源文件
├── chapter1.tex % 第一章的 TeX 源文件
├── chapter2.tex % 第二章的 TeX 源文件
├── chapter... % 后续章节的 TeX 源文件
└── acknowledgemnt.tex % 包含致谢部分的 TeX 源文件
```

## TODO

- 补充帮助
- 补充示例

如果您对本模板的各方面有意见或建议,欢迎提出 issue。
12 changes: 12 additions & 0 deletions body/abstract.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
\begin{abstract}
这里写您论文的中文摘要部分。

\keywords{中文关键词}
\end{abstract}

\begin{enabstract}
Write the English abstract of your paper here.
这里写您论文的英文摘要部分。

\enkeywords{English keywords, 英文关键词}
\end{enabstract}
3 changes: 3 additions & 0 deletions body/acknowledgement.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
\begin{acknowledgement}
这里写您论文的致谢部分。
\end{acknowledgement}
2 changes: 2 additions & 0 deletions body/appendices.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
\newpage
\appendix
5 changes: 5 additions & 0 deletions body/chapter1.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
\section{第一章的一级标题}
\subsection{第一章的二级标题}
\subsubsection{第一章的三级标题}
第一章的正文。
\cite{huangResearchU2019} %参考文献引用示例
2 changes: 2 additions & 0 deletions body/chapter2.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
\section{一级标题}
第二章正文。
26 changes: 26 additions & 0 deletions main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
\documentclass{whut-bachelor}

\title{武汉理工本科论文\LaTeX 模板} %您的论文标题
\school{信息工程学院} %您的学院
\class{通信工程(试点)1701班} %您的专业班级
\author{黄宇希} %您的姓名
\supervisor{阿尔伯特·爱因斯坦} %您的指导老师

\bibliography{ref} %载入参考文献文件

\begin{document}

\maketitle

\include{body/abstract}

\tableofcontents

\include{body/chapter1}
\include{body/chapter2}

\references %打印参考文献列表

\include{body/acknowledgement}

\end{document}
8 changes: 8 additions & 0 deletions ref.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@inproceedings{huangResearchU2019,
location = {{Haikou, China}},
title = {Research on {{UAV}}'s {{Autonomous Target Landing}} with {{Image}} and {{GPS}} under {{Complex Environment}}},
booktitle = {2019 {{International Conference}} on {{Communications}}, {{Information System}} and {{Computer Engineering}} ({{CISCE}})},
date = {2019-07},
pages = {97-102},
author = {Huang, Yuxi and Zhong, Yi and Cheng, Shuxiao and Ba, Mengyuan}
}
Loading

0 comments on commit 4c29521

Please sign in to comment.