Skip to content

Commit 00aaea6

Browse files
committed
更新TikZ文档,添加简介、配置项和多边形示例,修复README中的链接格式
1 parent acf7b0d commit 00aaea6

File tree

4 files changed

+188
-7
lines changed

4 files changed

+188
-7
lines changed

Other/说明/tikz绘图标准.md

+181-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
tags:
33
- 数学
44
---
5+
# 简介
56
## 环境配置
67
代码类型: tikz
78
```
@@ -37,6 +38,7 @@ The following packages are available in `\usepackage{}`:
3738
会导致报错
3839

3940
---
41+
# 配置项
4042
## 颜色
4143
TikZ 内置了一些常见的颜色方案,方便绘图时使用。这些颜色可以直接引用,也可以通过 `xcolor` 包扩展。以下是主要内置颜色方案:
4244
### 常用颜色
@@ -186,7 +188,6 @@ TikZ 内置了一些常见的颜色方案,方便绘图时使用。这些颜色
186188
---
187189
## 颜色填充
188190

189-
大多数情况都失败了, 但是有一次看到了一个偶然的成功案例
190191
```
191192
% 填充阴影区域
192193
\begin{scope} \clip (0,-1.5) rectangle (1,0); \fill[black!20,opacity=0.7] plot[domain=0.01:1,smooth]({\x}, {ln(\x)}) -- (1,0) -- (0,0) -- cycle; \end{scope}
@@ -229,6 +230,88 @@ TikZ 内置了一些常见的颜色方案,方便绘图时使用。这些颜色
229230

230231

231232

233+
---
234+
## Polygon
235+
236+
You can use the geometric shapes given by the shapes.geometric library
237+
238+
```latex
239+
\usetikzlibrary{shapes.geometric}
240+
241+
\begin{tikzpicture}[mystyle/.style={draw,shape=circle,fill=blue}]
242+
\def\ngon{5}
243+
\node[regular polygon,regular polygon sides=\ngon,minimum size=3cm] (p) {};
244+
\foreach\x in {1,...,\ngon}{\node[mystyle] (p\x) at (p.corner \x){};}
245+
\foreach\x in {1,...,\numexpr\ngon-1\relax}{
246+
\foreach\y in {\x,...,\ngon}{
247+
\draw (p\x) -- (p\y);
248+
}
249+
}
250+
\end{tikzpicture}
251+
```
252+
253+
---
254+
One short tikz code without use of a library.
255+
256+
```latex
257+
\documentclass[border=7mm]{standalone}
258+
\usepackage{tikz}
259+
\begin{document}
260+
\foreach \n in {3,...,7}
261+
\tikz\foreach \i in {1,...,\n}
262+
\fill (\i*360/\n:1) coordinate (n\i) circle(2 pt)
263+
\ifnum \i>1 foreach \j in {\i,...,1}{(n\i) edge (n\j)} \fi;
264+
\end{document}
265+
```
266+
267+
---
268+
For fun, a short code with `pst-poly` gets the desired result:
269+
270+
```latex
271+
\documentclass[svgnames]{standalone}
272+
273+
\usepackage{pst-poly}
274+
\usepackage{auto-pst-pdf}
275+
\begin{document}
276+
277+
\psset{unit=3.5cm, dimen=middle, linejoin=1, dotsize=12pt}
278+
\begin{pspicture}(-1,-1)(1,1)
279+
\providecommand{\PstPolygonNode}{\psdots[dotsize=12pt, linecolor=SteelBlue](1;\INode)
280+
}
281+
\rput(0,0){\PstPentagon[PolyName=A, linecolor=LightSteelBlue, linewidth=1.2pt] }
282+
\rput(0,0){\PstPentagon[PolyName=A, PolyOffset=2] }
283+
\end{pspicture}
284+
285+
\end{document}
286+
```
287+
288+
**Upgrade:** An improved version, which itself calculate all necessary data from given number of nodes and angle of the first node position:
289+
```latex
290+
\documentclass[border=3mm,tikz]{standalone}
291+
292+
\begin{document}
293+
\begin{tikzpicture}[
294+
every node/.style={draw,shape=circle,fill=blue,text=white}]
295+
%%%% variable data data
296+
\def\numpoly{8}%number of nodes
297+
\def\startangle{30}%direction of the first node
298+
\def\pradious{33mm}
299+
%------- calculations of the positions angles
300+
\pgfmathparse{int(\startangle+360/\numpoly)}%
301+
\let\nextangle=\pgfmathresult
302+
\pgfmathparse{int(\startangle-360/\numpoly+360)}%
303+
\let\endtangle=\pgfmathresult
304+
%--- nodes
305+
\foreach \i [count=\ii from 1] in {\startangle,\nextangle,...,\endtangle}
306+
\path (\i:\pradious) node (p\ii) {\ii};
307+
%--- interconnections
308+
\foreach \x in {1,...,\numpoly}
309+
\foreach \y in {\x,...,\numpoly}
310+
\draw (p\y) -- (p\x);
311+
\end{tikzpicture}
312+
\end{document}
313+
```
314+
232315
---
233316
# 案例
234317
## 2D
@@ -762,7 +845,104 @@ child {node {$y$}}
762845
```
763846

764847

848+
## Automaton
849+
850+
### tikz绘制自动机的状态转移图示例:
851+
852+
```tikz
853+
\usepackage{tikz}
854+
855+
\begin{document}
856+
\begin{tikzpicture}
857+
858+
% 定义状态
859+
\node (p0) at (0, 0) [circle, draw, double] {$p_0$}; % 接受状态
860+
\node (p1) at (3, 0) [circle, draw] {$p_1$};
861+
\node (p2) at (3, -3) [circle, draw] {$p_2$};
862+
\node (p3) at (0, -3) [circle, draw] {$p_3$};
863+
864+
% 转移路径
865+
\draw[->] (p0) to[loop above] node {0} ();
866+
\draw[->] (p0) to[bend left] node[midway, above] {1} (p1);
867+
\draw[->] (p0) to[bend left=15] node[midway, right] {2} (p2);
868+
\draw[->] (p0) to[bend right] node[midway, left] {3} (p3);
869+
870+
\draw[->] (p1) to[loop above] node {0} ();
871+
\draw[->] (p1) to[bend left] node[midway, right] {1} (p2);
872+
\draw[->] (p1) to[bend left=15] node[midway, right] {2} (p3);
873+
\draw[->] (p1) to[bend right] node[midway, above] {3} (p0);
874+
875+
\draw[->] (p2) to[loop below] node {0} ();
876+
\draw[->] (p2) to[bend left] node[midway, below] {1} (p3);
877+
\draw[->] (p2) to[bend left=15] node[midway, left] {2} (p0);
878+
\draw[->] (p2) to[bend right] node[midway, right] {3} (p1);
879+
880+
\draw[->] (p3) to[loop below] node {0} ();
881+
\draw[->] (p3) to[bend left] node[midway, left] {1} (p0);
882+
\draw[->] (p3) to[bend left=15] node[midway, left] {2} (p1);
883+
\draw[->] (p3) to[bend right] node[midway, below] {3} (p2);
884+
885+
\end{tikzpicture}
886+
\end{document}
887+
```
888+
### 多边形
889+
```tikz
890+
\usepackage{tikz}
891+
892+
\begin{document}
893+
\begin{tikzpicture}[mystyle/.style={draw, shape=circle, text=white, minimum size=6mm}
894+
]
895+
896+
% Define the center of the pentagon
897+
\coordinate (center) at (0, 0);
765898
899+
% Define nodes at equal angles around the center
900+
\foreach \i in {1, 2, 3, 4, 5} {
901+
\node[mystyle] (q\i) at ({72*\i-72}:2cm) {$q_{\i}$}; % 72° spacing for pentagon
902+
}
903+
904+
% Draw transitions between nodes
905+
\foreach \i [evaluate={\j=int(mod(\i,5)+1)}] in {1, 2, 3, 4, 5} {
906+
\draw[->] (q\i) -- (q\j); % Connect nodes in a closed loop
907+
}
908+
909+
\end{tikzpicture}
910+
\end{document}
911+
912+
```
913+
914+
### example
915+
```tikz
916+
\usepackage{tikz}
917+
918+
\begin{document}
919+
\begin{tikzpicture}[->, shorten >=1pt, auto, node distance=1.5cm, thick]
920+
921+
% Define the states
922+
\node (q2) at (180:1.5cm) [circle, draw, double] {$q_2$}; % q2 at 180° (leftmost point)
923+
924+
% Define the pentagon nodes using polar coordinates around q2
925+
\foreach \i in {1, 2, 3, 4} {
926+
\node (q\the\numexpr\i+2\relax) at ({180 - 72*\i}:1.5cm) [circle, draw] {$q_{\the\numexpr\i+2\relax}$};
927+
}
928+
\node (q1) [circle, draw, left of=q2] {$q_1$};
929+
\node (q0) [circle, draw, left of=q1] {$q_0$};
930+
931+
% Draw the transitions
932+
\path (q0) edge node {0} (q1)
933+
(q1) edge node {0} (q2)
934+
(q2) edge node {0} (q3)
935+
(q3) edge node {0} (q4)
936+
(q4) edge node {0} (q5)
937+
(q5) edge node {0} (q6)
938+
(q6) edge node {0} (q2);
939+
940+
% Start state arrow
941+
\draw[->] (-5.5, -1) -- (q0);
942+
943+
\end{tikzpicture}
944+
\end{document}
945+
```
766946

767947

768948
---

Other/说明/插件配置说明.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,6 @@ tags:
3838
此插件会导致markdown表格的公式输入bug, 暂时停止使用
3939

4040
## TikZJax
41-
2024-12-28 发现了一个新的插件可以渲染三维图像, 这在曲线曲面积分部分会很有用, 潜力待发掘
41+
[tikz绘图标准](Other/说明/tikz绘图标准.md)
42+
2024-12-28 发现了一个新的插件可以渲染三维图像, 这在曲线曲面积分部分会很有用, 潜力待发掘
43+
2025-02-25 现在使用TikzJax来绘制二维和三维函数图像,非必要不使用图片

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
10. [bootstrap方法](概率论/bootstrap方法.md)
4545
11. [随机过程及统计描述](---随机过程---.md)
4646
12. [马尔可夫链](概率论/---马尔可夫链---.md)
47-
13. [平稳随机过程](概率论/平稳随机过程.md)
47+
13. [平稳随机过程](概率论/---平稳随机过程---.md)
4848
- [高等数学进阶](Other/-高等数学进阶-.md) (本库的补充)
4949
- [复分析](Other/复分析/--复分析--.md)
5050
- [抽象代数](Other/抽象代数/--抽象代数--.md)

_assets_/todo/数一真题问题清单.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tags:
33
- todo
44
---
5-
- [ ] 有时候公式两边`$`缺失, 补全内容
5+
- [x] 有时候公式两边`$`缺失, 补全内容
66
- [x] 单行公式的正则替换处理:
77
替换表达式, 用于单行公式中添加开头的/displaystyle, 匹配lim sum int Sigma符号:
88
```
@@ -17,9 +17,8 @@ tags:
1717
- [x] 首先将图床图片转为本地图片, 存储在`_assets_/Images`路径中
1818
- [ ] 考虑能转成tikz的尽量不用图片
1919
- [ ] 使用分割线分题
20-
- [ ] 双链缺失文件
2120
- [ ] 问题和回答的标题修改
2221
例如: `## (1)` 这是问题题号(1)作为二级标题, 紧跟着是对应解答的三级标题`### (1)` , 现在改为问题和题目都使用二级标题, 而解答使用`## (1)解` 这种形式
23-
- [ ] 指向本地视频文件的时间戳的链接, 如: [03:26](file:///C:/Users/wangpanfeng/Videos/01.%E6%95%B0%E5%AD%A6%E4%B8%80/08.2021%E5%B9%B4%E6%95%B0%E4%B8%80%E7%9C%9F%E9%A2%98/01.2021%E5%B9%B4%E8%80%83%E7%A0%94%E6%95%B0%E5%AD%A6%E7%9C%9F%E9%A2%98%E9%80%89%E6%8B%A9%E9%A2%98%EF%BC%88%E6%95%B0%E4%B8%80%EF%BC%89.mp4#t=03:26) ,暂时不需要处理
24-
- [ ] 指向不存在文件的双链, 暂时不需要处理
22+
- [x] 指向本地视频文件的时间戳的链接, 如: [03:26](file:///C:/Users/wangpanfeng/Videos/01.%E6%95%B0%E5%AD%A6%E4%B8%80/08.2021%E5%B9%B4%E6%95%B0%E4%B8%80%E7%9C%9F%E9%A2%98/01.2021%E5%B9%B4%E8%80%83%E7%A0%94%E6%95%B0%E5%AD%A6%E7%9C%9F%E9%A2%98%E9%80%89%E6%8B%A9%E9%A2%98%EF%BC%88%E6%95%B0%E4%B8%80%EF%BC%89.mp4#t=03:26) ,暂时不需要处理
23+
- [x] 指向不存在文件的双链, 暂时不需要处理
2524

0 commit comments

Comments
 (0)