1
1
# Internship-Report
2
2
3
- Tex template for SPEIT internship report. 巴黎高科学院工程师实习报告LaTeX模板。
3
+ Tex template for SPEIT engineer internship report. 巴黎高科学院工程师实习报告LaTeX模板。
4
4
5
5
Pull requests are appreciated. Feel free to tell me that you can't wait to be one collaborator!
6
6
@@ -34,7 +34,7 @@ Pull requests are appreciated. Feel free to tell me that you can't wait to be on
34
34
35
35
Please clone the following template on Overleaf:
36
36
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 )
38
38
39
39
then enjoy it anywhere :blush :
40
40
@@ -44,11 +44,13 @@ then enjoy it anywhere :blush:
44
44
45
45
Download source files on your laptop. Utilities recommended for writing locally on WINDOWS are as followings:
46
46
- [ 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 )
48
48
- [ font] ( https://pan.baidu.com/s/1kV68haJ ) (optional)
49
49
- [ Windows shell] ( https://babun.github.io/ ) (optional)
50
50
51
- ### Commands
51
+ ### Usage
52
+
53
+ #### No IDE, shell only
52
54
53
55
- ** make** : compile and generate ` internship.pdf `
54
56
- ** 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
57
59
58
60
:warning : Do NOT and Do NOT Need to call ` make pvc ` followed by another ` make ` !
59
61
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
61
68
62
- In shell: ` latexmk -xelatex -gg -silent internship `
69
+ For example, fill in ( * Options * --> * Configure * --> * Commands * --> * latexmk * ) with appropriate arguments:
63
70
64
- In TexStudio (Options --> Configure --> Commands --> latexmk):
65
71
` latexmk.exe -xelatex -gg -silent -synctex=1 -interaction=nonstopmode %.tex `
66
72
67
73
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
69
143
70
144
- [ SJTUThesis src] ( https://github.com/sjtug/SJTUThesis )
71
145
- [ 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 )
0 commit comments