Skip to content

Commit 222cf1c

Browse files
committed
template available in Overleaf Gallery
1 parent c32fd6c commit 222cf1c

File tree

3 files changed

+82
-8
lines changed

3 files changed

+82
-8
lines changed

README.md

Lines changed: 82 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Internship-Report
22

3-
Tex template for SPEIT internship report. 巴黎高科学院工程师实习报告LaTeX模板。
3+
Tex template for SPEIT engineer internship report. 巴黎高科学院工程师实习报告LaTeX模板。
44

55
Pull requests are appreciated. Feel free to tell me that you can't wait to be one collaborator!
66

@@ -34,7 +34,7 @@ Pull requests are appreciated. Feel free to tell me that you can't wait to be on
3434

3535
Please clone the following template on Overleaf:
3636

37-
[Overleaf template](https://www.overleaf.com/read/ndszvjtqykzq),
37+
[![Overleaf](https://img.shields.io/badge/overleaf-SPEIT%20Internship%20Report-brightgreen)](https://www.overleaf.com/latex/templates/speit-internship-report/qtdxjrxcpbrx)
3838

3939
then enjoy it anywhere :blush:
4040

@@ -44,11 +44,13 @@ then enjoy it anywhere :blush:
4444

4545
Download source files on your laptop. Utilities recommended for writing locally on WINDOWS are as followings:
4646
- [texlive](http://mirror.hust.edu.cn/CTAN/systems/texlive/tlnet/)
47-
- [editor](https://www.texstudio.org)
47+
- [TexStudio](https://www.texstudio.org) or [LaTeX extension in VS Code](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop)
4848
- [font](https://pan.baidu.com/s/1kV68haJ)(optional)
4949
- [Windows shell](https://babun.github.io/)(optional)
5050

51-
### Commands
51+
### Usage
52+
53+
#### No IDE, shell only
5254

5355
- **make**: compile and generate `internship.pdf`
5456
- **make pvc**(recommended): continually compile and update target whenever src files change
@@ -57,15 +59,87 @@ Download source files on your laptop. Utilities recommended for writing locally
5759

5860
:warning: Do NOT and Do NOT Need to call `make pvc` followed by another `make`!
5961

60-
You may directly pass by a whole `latexmk` command in shell or in TexStudio options. For example,
62+
You may also pass by a whole `latexmk` command of your choice:
63+
64+
`latexmk -xelatex -silent internship`
65+
66+
67+
#### TexStudio
6168

62-
In shell: `latexmk -xelatex -gg -silent internship`
69+
For example, fill in (*Options* --> *Configure* --> *Commands* --> *latexmk*) with appropriate arguments:
6370

64-
In TexStudio (Options --> Configure --> Commands --> latexmk):
6571
`latexmk.exe -xelatex -gg -silent -synctex=1 -interaction=nonstopmode %.tex`
6672

6773

68-
### References
74+
#### VS Code + Latex Workshop extension
75+
76+
For example, here is my setting file of Latex Workshop:
77+
78+
```json
79+
{
80+
"latex-workshop.latex.recipes":[
81+
{
82+
"name": "latexmk 🔃",
83+
"tools": [
84+
"latexmk"
85+
]
86+
}
87+
],
88+
"latex-workshop.latex.tools":[
89+
{
90+
"name": "latexmk",
91+
"command": "latexmk",
92+
"args": [
93+
"-xelatex",
94+
"-silent",
95+
"-synctex=1",
96+
"-interaction=nonstopmode",
97+
"-file-line-error"
98+
],
99+
"env": {}
100+
}
101+
],
102+
"latex-workshop.view.pdf.viewer": "browser",
103+
"latex-workshop.intellisense.package.enabled": true,
104+
"latex-workshop.intellisense.unimathsymbols.enabled": true,
105+
"latex-workshop.latex.autoClean.run": "onFailed",
106+
"latex-workshop.synctex.afterBuild.enabled": true,
107+
"latex-workshop.showContextMenu": true,
108+
"latex-workshop.latex.autoBuild.run": "never",
109+
"latex-workshop.latex.clean.subfolder.enabled": true,
110+
"latex-workshop.latex.clean.fileTypes": [
111+
"*.aux",
112+
"*.bbl",
113+
"*.blg",
114+
"*.idx",
115+
"*.ind",
116+
"*.lof",
117+
"*.lot",
118+
"*.out",
119+
"*.toc",
120+
"*.acn",
121+
"*.acr",
122+
"*.alg",
123+
"*.glg",
124+
"*.glo",
125+
"*.gls",
126+
"*.ist",
127+
"*.fls",
128+
"*.log",
129+
"*.fdb_latexmk",
130+
"*.snm",
131+
"*.nav",
132+
"*.loa",
133+
"*.run.xml",
134+
"*.xdv",
135+
"*.thm",
136+
"*.bcf"
137+
],
138+
}
139+
```
140+
141+
142+
## References
69143

70144
- [SJTUThesis src](https://github.com/sjtug/SJTUThesis)
71145
- [SJTUThesis wiki](https://github.com/sjtug/SJTUThesis/wiki/%E6%9C%AC%E5%9C%B0%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8E)

internship.pdf

9 Bytes
Binary file not shown.

internship.synctex.gz

105 KB
Binary file not shown.

0 commit comments

Comments
 (0)