-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.xml
More file actions
300 lines (265 loc) · 32.5 KB
/
search.xml
File metadata and controls
300 lines (265 loc) · 32.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>Hello World</title>
<url>/2024/06/29/hello-world/</url>
<content><![CDATA[<p>Welcome to <a href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p>
<h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ hexo new <span class="string">"My New Post"</span></span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/writing.html">Writing</a></p>
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/server.html">Server</a></p>
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/generating.html">Generating</a></p>
<h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>
]]></content>
</entry>
<entry>
<title>第一篇博客</title>
<url>/2024/06/29/%E7%AC%AC%E4%B8%80%E7%AF%87%E5%8D%9A%E5%AE%A2/</url>
<content><![CDATA[<h2 id="第一篇博客"><a href="#第一篇博客" class="headerlink" title="第一篇博客"></a>第一篇博客</h2><p>尝试一下</p>
]]></content>
</entry>
<entry>
<title>虚拟机SSH连接问题</title>
<url>/2024/07/05/%E8%99%9A%E6%8B%9F%E6%9C%BASSH%E8%BF%9E%E6%8E%A5%E9%97%AE%E9%A2%98/</url>
<content><![CDATA[<blockquote>
<p>今天想用 vscode 连接虚拟机,结果怎么都连接不上去。使用<code>ifconfig</code>查询 ip 地址时发现只有本机 ip 地址。经过查询相应资料,解决方法如下。</p>
</blockquote>
<ul>
<li>如果你已经配置 NetworkManager 服务以及其开机自启动,请直接从第 6 步开始。</li>
</ul>
<ol>
<li><strong>检查 NetworkManager 服务状态:</strong><br>打开终端并执行以下命令来检查 NetworkManager 服务的状态:</li>
</ol>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">systemctl status NetworkManager</span><br></pre></td></tr></table></figure>
<p> 这将显示 NetworkManager 服务的当前状态。</p>
<ol start="2">
<li><strong>启动 NetworkManager 服务:</strong><br>如果服务没有运行,你可以使用以下命令来启动它:</li>
</ol>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">sudo systemctl start NetworkManager</span><br></pre></td></tr></table></figure>
<p> 这将启动 NetworkManager 服务。</p>
<ol start="3">
<li><strong>设置 NetworkManager 服务开机自启:</strong><br>如果你希望 NetworkManager 在系统启动时自动运行,可以使用以下命令来启用它:</li>
</ol>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">sudo systemctl enable NetworkManager</span><br></pre></td></tr></table></figure>
<p> 这将确保 NetworkManager 在每次启动时自动运行。</p>
<ol start="4">
<li><strong>重新检查服务状态:</strong><br>再次检查服务状态,确保 NetworkManager 现在正在运行:</li>
</ol>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl status NetworkManager</span><br></pre></td></tr></table></figure>
<p> 如果服务已经启动,你应该会看到它的状态显示为“active (running)”。</p>
<ol start="5">
<li><strong>重启系统(如果需要):</strong><br>在某些情况下,重启系统可能有助于解决服务启动问题:</li>
</ol>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">sudo reboot</span><br></pre></td></tr></table></figure>
<p> 如果在尝试启动 NetworkManager 服务时遇到问题,你可以检查日志文件以获取可能的错误信息。使用 以下命令来检查 NetworkManager 的日志:</p>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">journalctl -u NetworkManager</span><br></pre></td></tr></table></figure>
<p> 这将显示 NetworkManager 服务的日志,你可以在这里查找任何启动错误或其他问题的线索。</p>
<p> 确保你有足够的权限来执行这些命令,如果你没有 root 权限,你可能需要在命令前加上 sudo 来获取必要 的权限。</p>
<ol start="6">
<li><strong>重新配置 ip 地址:</strong></li>
</ol>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">dhclient -v</span><br><span class="line"><span class="meta prompt_">#</span><span class="language-bash">可能是网卡未加托管</span></span><br><span class="line">nmcli n</span><br><span class="line"><span class="meta prompt_">#</span><span class="language-bash">如果是enabled 说明已经被托管;如果是disabled,说明网卡未托管</span></span><br></pre></td></tr></table></figure>
<ol start="7">
<li><strong>重新把网卡托管打开:</strong></li>
</ol>
<figure class="highlight shell"><table><tr><td class="code"><pre><span class="line">nmcli n on</span><br><span class="line"><span class="meta prompt_">#</span><span class="language-bash">将网卡托管打开</span></span><br></pre></td></tr></table></figure>
]]></content>
<categories>
<category>-Linux技巧</category>
</categories>
<tags>
<tag>-其他</tag>
</tags>
</entry>
<entry>
<title>Markdown语法汇总</title>
<url>/2024/08/25/Markdown%E8%AF%AD%E6%B3%95%E6%B1%87%E6%80%BB/</url>
<content>< 例如: [百度一下](http: // www.baidu.com)</span><br></pre></td></tr></table></figure>
<p><img src="https://pic4.zhimg.com/v2-9022c96ca2339b08bca37a67b66ec87b_b.jpg" alt="img"></p>
<p>示例结果 图 9</p>
<h2 id="八、Todo-List(待办事项列表)"><a href="#八、Todo-List(待办事项列表)" class="headerlink" title="八、Todo List(待办事项列表)"></a>八、Todo List(待办事项列表)</h2><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">- 空格 [空格] 空格 人生四大喜</span><br><span class="line">- 空格 [空格] 空格 久旱逢甘露</span><br><span class="line">- 空格 [空格] 空格 他乡遇故知</span><br><span class="line">- 空格 [空格] 空格 洞房花烛夜</span><br><span class="line">- 空格 [空格] 空格 金榜题名时</span><br></pre></td></tr></table></figure>
<p><img src="https://pic4.zhimg.com/v2-253cc391910e26f0f2b7031260b1447f_b.jpg" alt="img"></p>
<p><img src="https://pic1.zhimg.com/v2-2b12ec94b46911eab6c9b2d0b85c76c4_b.jpg" alt="img"></p>
<p>示例结果 图 10</p>
<h2 id="九、创建表格"><a href="#九、创建表格" class="headerlink" title="九、创建表格"></a>九、创建表格</h2><h3 id="(一)默认居左:在每个单元格之间添加-作为纵向分隔符,在页眉下方添加一行短划线-分隔符行中的每个单元格必须使用三个或多个短划线,-不需要垂直对齐"><a href="#(一)默认居左:在每个单元格之间添加-作为纵向分隔符,在页眉下方添加一行短划线-分隔符行中的每个单元格必须使用三个或多个短划线,-不需要垂直对齐" class="headerlink" title="(一)默认居左:在每个单元格之间添加|作为纵向分隔符,在页眉下方添加一行短划线, 分隔符行中的每个单元格必须使用三个或多个短划线,|不需要垂直对齐"></a>(一)默认居左:在每个单元格之间添加<code>|</code>作为纵向<a href="https://www.zhihu.com/search?q=%E5%88%86%E9%9A%94%E7%AC%A6&search_source=Entity&hybrid_search_source=Entity&hybrid_search_extra=%7B%22sourceType%22:%22article%22,%22sourceId%22:%22674875414%22%7D">分隔符</a>,在页眉下方添加一行短划线, 分隔符行中的每个单元格必须使用三个或多个短划线,<code>|</code>不需要垂直对齐</h3><p><img src="https://pic2.zhimg.com/v2-72b67fa81af2868db3449543c89ac3e1_b.jpg" alt="img"></p>
<p>示例结果 图 11</p>
<h3 id="(二)Center-text-in-a-column(列表居中)"><a href="#(二)Center-text-in-a-column(列表居中)" class="headerlink" title="(二)Center text in a column(列表居中)"></a><strong>(二)Center text in a column(列表居中)</strong></h3><p>若要将文本置于列的中心,请在页眉下的行中的短划线的左右两侧添加冒号<code>:</code></p>
<p><img src="https://pic2.zhimg.com/v2-439a6fa9422479ba02888c1337a792dd_b.jpg" alt="img"></p>
<p>示例结果 图 12</p>
<h3 id="(三)Right-align-the-text-in-a-column(列表居右)"><a href="#(三)Right-align-the-text-in-a-column(列表居右)" class="headerlink" title="(三)Right-align the text in a column(列表居右)"></a>(三)Right-align the text in a column(列表居右)</h3><p>To right-align the text in a column, add a colon to the right of the dashes in the row beneath the header.</p>
<p><img src="https://pic2.zhimg.com/v2-2d2e0903689dfc4394d5f711949adec1_b.jpg" alt="img"></p>
<p>示例结果 图 13</p>
<h2 id="十、灰色底框"><a href="#十、灰色底框" class="headerlink" title="十、灰色底框"></a>十、灰色底框</h2><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">1. 单行文本:`文本`</span><br><span class="line">2. 多行文本:```文本```</span><br></pre></td></tr></table></figure>
<p><img src="https://pic3.zhimg.com/v2-c9bdaee46c4960ab54e17047e1092862_b.jpg" alt="img"></p>
<p>示例结果 图 14 单行文本</p>
<p><img src="https://pic4.zhimg.com/v2-6f3d8f1172742c802bfda6a036b07f2b_b.jpg" alt="img"></p>
<p>示例结果 图 15 多行文本</p>
<h2 id="十一、下划线、加黄标记、字体颜色"><a href="#十一、下划线、加黄标记、字体颜色" class="headerlink" title="十一、下划线、加黄标记、字体颜色"></a>十一、下划线、加黄标记、字体颜色</h2><figure class="highlight text"><table><tr><td class="code"><pre><span class="line"><u>文本</u> 添加下划线</span><br><span class="line"><mark>文本</mark> 加黄标记</span><br><span class="line"><font color=red>文本</font> 字体颜色</span><br><span class="line"><font color=red>**文本**</font> 字体加粗,字体颜色为红色</span><br></pre></td></tr></table></figure>
<p><img src="https://pic3.zhimg.com/v2-170bfdcd4f45224e45195a14daf5f6e6_b.jpg" alt="img"></p>
<p>示例结果 图 16</p>
<h2 id="十二、大纲图"><a href="#十二、大纲图" class="headerlink" title="十二、大纲图"></a>十二、大纲图</h2><p><img src="https://pic3.zhimg.com/v2-0acaaceee7beb6d74d22ed8f07527732_b.jpg" alt="img"></p>
<p>源代码</p>
<p><img src="https://pic3.zhimg.com/v2-71f349c8b4253de1a8dd1f534b6f35fa_b.jpg" alt="img"></p>
<p>示例结果 图 17</p>
<h2 id="十三、带外框的文本"><a href="#十三、带外框的文本" class="headerlink" title="十三、带外框的文本"></a>十三、带外框的文本</h2><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$\boxed{文本}$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic1.zhimg.com/v2-a071bee24f9853d25f2cbbc6c8838284_b.jpg" alt="img"></p>
<p>示例结果 图 18</p>
<h2 id="十四、数学公式语法"><a href="#十四、数学公式语法" class="headerlink" title="十四、数学公式语法"></a>十四、数学公式语法</h2><p>给数学公式添加颜色:\textcolor{所需颜色}{公式或文本}</p>
<p><img src="https://pic2.zhimg.com/v2-43964d985e2c1d8628a9fb73eeed2e19_b.jpg" alt="img"></p>
<figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$增长量:Δ=B-A=A×r=B-\cfrac{B}{1+r}=\cfrac{B×r}{1+r}$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic3.zhimg.com/v2-8a2f5a5c8d5990a1371b90aecdc61eb6_b.jpg" alt="img"></p>
<p>示例结果 图 19</p>
<figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$\Rightarrow 年均增长率r=\sqrt[4]{1+R}-1$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic3.zhimg.com/v2-e5a7863ae7bbd52fecd379fabfa57312_b.jpg" alt="img"></p>
<p>示例结果 图 20</p>
<figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$\Rightarrow 总增长率R=(1+r)^4-1$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic4.zhimg.com/v2-949485cf542d759da9e803706debed0f_b.jpg" alt="img"></p>
<p>示例结果 图 21</p>
<p><img src="https://pic4.zhimg.com/v2-3906a4187293ab0c07b7eae04a4b3567_b.jpg" alt="img"></p>
<p>注:”&“表示对齐的意思</p>
<p><img src="https://pic3.zhimg.com/v2-19e0c56220bce99e7072da2f01759f56_b.jpg" alt="img"></p>
<p>示例结果 图 22</p>
<p><img src="https://pic4.zhimg.com/v2-36ef3b93553bed571defe7ad50fc4003_b.jpg" alt="img"></p>
<p>生成矩阵</p>
<p><img src="https://pic1.zhimg.com/v2-6d8a9ee45796b1bce56ec11b1331dba0_b.jpg" alt="img"></p>
<p>示例结果 图 23</p>
<p><img src="https://pic2.zhimg.com/v2-c9dcaa84f8ba299d318f5536a9815009_b.jpg" alt="img"></p>
<p>注:“l”表示左对齐,“r”表示右对齐</p>
<p><img src="https://pic3.zhimg.com/v2-a8b9e5b4490c1fa601c9539a15c4d986_b.jpg" alt="img"></p>
<p>示例结果 图 24</p>
<p><img src="https://pic3.zhimg.com/v2-a4896ebf60586bc33b72151270e885e6_b.jpg" alt="img"></p>
<p><img src="https://pic4.zhimg.com/v2-3e855a14e82237e6ef9dea2a8c021f6b_b.jpg" alt="img"></p>
<p>示例结果 图 25</p>
<p><img src="https://pic1.zhimg.com/v2-8be72474dc0c5d014da090df84ae5940_b.jpg" alt="img"></p>
<p><img src="https://pic4.zhimg.com/v2-a18d7a138151c27ff53e8e17df283f83_b.jpg" alt="img"></p>
<p>示例结果 图 26</p>
<p><img src="https://pic1.zhimg.com/v2-297ed3e85da6983a258d0a8cc882d5a8_b.jpg" alt="img"></p>
<p>示例结果 图 27</p>
<p><img src="https://pic4.zhimg.com/v2-d14b394d61c8b504d889f8c32244fbe3_b.jpg" alt="img"></p>
<p>示例结果 图 28</p>
<p><img src="https://pic3.zhimg.com/v2-88ac24de65aeb1cd1aa7c9e01f548c1e_b.jpg" alt="img"></p>
<p>示例结果 图 29</p>
<p><img src="https://pic4.zhimg.com/v2-502811a6f737119cbeaaf51703e201f3_b.jpg" alt="img"></p>
<p><img src="https://pic2.zhimg.com/v2-218ab6b9dd19e7d14c11570b88d0ff1d_b.jpg" alt="img"></p>
<p>示例结果 图 30</p>
<p><img src="https://pic2.zhimg.com/v2-b9fe41fe863e1a1dcda9ed097a8f8375_b.jpg" alt="img"></p>
<p>示例结果 图 31</p>
<h2 id="十五、对-markdown-公式的一些补充"><a href="#十五、对-markdown-公式的一些补充" class="headerlink" title="十五、对 markdown 公式的一些补充"></a>十五、对 markdown 公式的一些补充</h2><h3 id="(一)积分"><a href="#(一)积分" class="headerlink" title="(一)积分"></a>(一)积分</h3><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$ f(x)=\int_1^\infty x^{n-1}e^{-y}dx\,$ 行内公式</span><br><span class="line"></span><br><span class="line">$$ f(x)=\int_1^\infty x^{n-1}e^{-y}dx\,$$ 行间公式</span><br></pre></td></tr></table></figure>
<p><img src="https://pic1.zhimg.com/v2-46323b0bed5ac2b50483baecc0f4f928_b.jpg" alt="img"></p>
<p>示例结果 图 32 行内和行间公式</p>
<h3 id="(二)向量公式"><a href="#(二)向量公式" class="headerlink" title="(二)向量公式"></a>(二)向量公式</h3><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$$\mathbf{x}=\mathbf{v}_0t + \cfrac{1}{2}\mathbf{a}t^2$$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic4.zhimg.com/v2-48f76b074b55d89cef3e2acdfa49c307_b.jpg" alt="img"></p>
<p>示例结果 图 33</p>
<h3 id="(三)分段函数"><a href="#(三)分段函数" class="headerlink" title="(三)分段函数"></a>(三)<a href="https://www.zhihu.com/search?q=%E5%88%86%E6%AE%B5%E5%87%BD%E6%95%B0&search_source=Entity&hybrid_search_source=Entity&hybrid_search_extra=%7B%22sourceType%22:%22article%22,%22sourceId%22:%22674875414%22%7D">分段函数</a></h3><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$$</span><br><span class="line">y = \left \{</span><br><span class="line">\begin{array}{l} l—左对齐,r—右对齐,c-中心对齐</span><br><span class="line">x+y+z=1\quad&,x\leq 0\\ &在这里表示后面的内容从逗号开始对齐;\quad表示空格</span><br><span class="line">x+2y+3z=9\quad&,y>0 \\</span><br><span class="line">4x+5y+6z=27\quad&,z\geq10,\quad y\neq3</span><br><span class="line">\end{array}</span><br><span class="line">\tag{方程组1}</span><br><span class="line">\right.</span><br><span class="line">$$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic2.zhimg.com/v2-5848d10c21476819c6ce84ba62868d29_b.jpg" alt="img"></p>
<p>示例结果 图 34</p>
<h3 id="(四)偏导数"><a href="#(四)偏导数" class="headerlink" title="(四)偏导数"></a>(四)<a href="https://www.zhihu.com/search?q=%E5%81%8F%E5%AF%BC%E6%95%B0&search_source=Entity&hybrid_search_source=Entity&hybrid_search_extra=%7B%22sourceType%22:%22article%22,%22sourceId%22:%22674875414%22%7D">偏导数</a></h3><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$$</span><br><span class="line">\begin{aligned}</span><br><span class="line">\frac{\partial z}{\partial x}</span><br><span class="line">& = -\sum_{n=0}^a 6x^n \times \frac{\partial}{\partial x}(y^x-x) \\</span><br><span class="line">& = -\frac{1}{a}\prod_{n=0}^a(y^n-log_2a^y \times x^1_2) \\</span><br><span class="line">& = \mp \ln{(a+b)}^{678}=\ln{a+b} \\</span><br><span class="line">& = \pm \log_3^5x = 2\div3 = 7.8 = 1\cdot 2 \\</span><br><span class="line">& 1 \ll 10000 \simeq 10000.1 \gg 0.5 \\</span><br><span class="line">& 2 \approx 2.00005 \\ & A \cong B \\</span><br><span class="line">& C \propto D</span><br><span class="line">\end{aligned}</span><br><span class="line">\tag*{chapter 2-1}</span><br><span class="line">$$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic4.zhimg.com/v2-4ba5b166de893365c20fcb29edf9e6f7_b.jpg" alt="img"></p>
<p>示例结果 图 35</p>
<h3 id="(五)常用数学符号"><a href="#(五)常用数学符号" class="headerlink" title="(五)常用数学符号"></a>(五)常用数学符号</h3><figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$\bar{x}$</span><br><span class="line">$\vec{a}$</span><br><span class="line">$\overrightarrow{AB}$</span><br><span class="line">$\overline{a+b+c+d}$</span><br><span class="line">$\underline{e+f+g+h}$</span><br><span class="line">$\overbrace{1+2+3+4}$</span><br><span class="line">$\underbrace{5+6+7+8}$</span><br><span class="line">$\overbrace{a+\underbrace{b+c}_{2.0}+d}^{3.0}$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic1.zhimg.com/v2-b1c9ed28d49e1ca66d79624cb84b7568_b.jpg" alt="img"></p>
<p>示例结果 图 36</p>
<figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$a+b \over c+d$</span><br><span class="line">$2^3$</span><br><span class="line">$4^{3+2}$</span><br><span class="line">$\sin10 + \cos20 + \cot30^\circ + \csc40^\circ + \sec50 +\tan60$</span><br><span class="line">$A \bot C $</span><br><span class="line">$A \parallel B$</span><br><span class="line">$1 \rightarrow 2$</span><br><span class="line">$2 \longrightarrow 3$</span><br><span class="line">$3 \Longrightarrow 4$</span><br><span class="line">$4 \Longleftrightarrow 5$</span><br><span class="line">$5 \rightharpoonup 6$</span><br><span class="line">$7 \rightharpoondown 8$</span><br><span class="line">$9 \rightleftharpoons 10$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic4.zhimg.com/v2-132b73e28f95c3ba744c67ccc8ac3db7_b.jpg" alt="img"></p>
<p>示例结果 图 37</p>
<figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$\emptyset$</span><br><span class="line">$\varnothing$</span><br><span class="line">$\in$</span><br><span class="line">$\notin$</span><br><span class="line">$\ni$</span><br><span class="line">$\subseteq$</span><br><span class="line">$\subseteq$</span><br><span class="line">$\subsetneq$</span><br><span class="line">$f(x)\prime $</span><br><span class="line">$\int_0^2x^8dt$</span><br><span class="line">$\iint$</span><br><span class="line">$\iiint$</span><br><span class="line">$\oint$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic1.zhimg.com/v2-53b8a022d3210b2df76c1c077e7c1af4_b.jpg" alt="img"></p>
<p>示例结果 图 38</p>
<figure class="highlight text"><table><tr><td class="code"><pre><span class="line">$\because$</span><br><span class="line">$\therefore$</span><br><span class="line">$\exist$</span><br><span class="line">$\vee$</span><br><span class="line">$\wedge$</span><br><span class="line">$\surd$</span><br><span class="line">$\star$</span><br><span class="line">$\ast$</span><br><span class="line">$\Diamond$</span><br><span class="line">$\Alpha \alpha \Beta \beta \Delta \delta \Eta \eta \Gamma \gamma \Kappa \kappa $</span><br><span class="line">$\Lambda \lambda \Theta \theta \Nu \nu \Pi \pi \Sigma \sigma \Phi \phi \varphi $</span><br><span class="line">$\Omega \omega \Upsilon \upsilon \Rho \rho \Xi \xi \Zeta \zeta \Epsilon \epsilon$</span><br></pre></td></tr></table></figure>
<p><img src="https://pic1.zhimg.com/v2-2a6196323944b319a24d6b748dd48984_b.jpg" alt="img"></p>
<p>示例结果 图 39</p>
<h3 id="(六)矩阵"><a href="#(六)矩阵" class="headerlink" title="(六)矩阵"></a>(六)矩阵</h3><p><img src="https://pic2.zhimg.com/v2-765eefd66e68c41971cc77eb4e6d7b5d_b.jpg" alt="img"></p>
<p>示例结果 图 40</p>
<p><img src="https://pic4.zhimg.com/v2-1dbb161c2f95744710abc8b0e2197b93_b.jpg" alt="img"></p>
<p>示例结果 图 41</p>
<p><img src="https://pic4.zhimg.com/v2-7c3c163670739c2c6bfafe2715bcdbef_b.jpg" alt="img"></p>
<p>示例结果 图 42</p>
<p><img src="https://pic3.zhimg.com/v2-22daea70e968156dd91d9a85c3e1bd32_b.jpg" alt="img"></p>
<p>示例结果 图 43</p>
<p>就写到这儿吧,希望对需要的人有所帮助。</p>
<p><strong>——2024 年 1 月 3 日更</strong></p>
<h2 id="十六、对于空格间距语法的补充"><a href="#十六、对于空格间距语法的补充" class="headerlink" title="十六、对于空格间距语法的补充"></a>十六、对于空格间距语法的补充</h2><p><img src="https://pic3.zhimg.com/v2-950e96c1dde80e996420a624d9becabe_b.jpg" alt="img"></p>
<p>示例结果 图 44</p>
<p><strong>——2024 年 1 月 11 日再次补充</strong></p>
<h2 id="十七、字体样式、大小、颜色"><a href="#十七、字体样式、大小、颜色" class="headerlink" title="十七、字体样式、大小、颜色"></a>十七、字体样式、大小、颜色</h2><p><img src="https://pic1.zhimg.com/v2-4f1aec243e68f48a30d746f11c46d678_b.jpg" alt="img"></p>
<p><img src="https://pic4.zhimg.com/v2-0912ec041f9d8240875284f02b853d3f_b.jpg" alt="img"></p>
<p>示例结果 图 45</p>
<p>注:<br />为强制<a href="https://www.zhihu.com/search?q=%E6%8D%A2%E8%A1%8C%E7%AC%A6&search_source=Entity&hybrid_search_source=Entity&hybrid_search_extra=%7B%22sourceType%22:%22article%22,%22sourceId%22:%22674875414%22%7D">换行符</a>。</p>
<p><img src="https://pic4.zhimg.com/v2-d3e435e5dd8d50a5a072848b02d19927_b.jpg" alt="img"></p>
<p>内容截图部分 1</p>
<p><img src="https://pic2.zhimg.com/v2-5b679a9ed4b7c71b0efbceadd4a06161_b.jpg" alt="img"></p>
<p>内容截图部分 2</p>
<p><img src="https://pic1.zhimg.com/v2-78a32f3951cdfc136b503f81911d5794_b.jpg" alt="img"></p>
<p>内容截图部分图 3</p>
<p><img src="https://pic3.zhimg.com/v2-8302378fed452bfaeca8fc121c296126_b.jpg" alt="img"></p>
<p>示例结果 图 46</p>
]]></content>
<categories>
<category>-Markdown语法</category>
</categories>
<tags>
<tag>-其他</tag>
</tags>
</entry>
<entry>
<title>Docker教程</title>
<url>/2024/10/17/Docker%E6%95%99%E7%A8%8B/</url>
<content><![CDATA[]]></content>
</entry>
<entry>
<title>tmux命令总结</title>
<url>/2024/12/23/tmux%E5%91%BD%E4%BB%A4%E6%80%BB%E7%BB%93/</url>
<content><![CDATA[<p>原文链接:<a href="https://blog.csdn.net/weixin_44451400/article/details/115539903">tmux命令总结</a></p>
<p>杀死会话命令:<br><code>tmux kill-session -t dev(kill名为dev的session)</code></p>
]]></content>
<categories>
<category>-tmux命令</category>
</categories>
<tags>
<tag>-其他</tag>
</tags>
</entry>
</search>