This page looks best with JavaScript enabled

Tikz收藏夹

 ·  ☕ 1 min read

常用的tikz作图

经过多个点的光滑曲线

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
\documentclass{article}
\usepackage{tikz}

%% 使用tikz库
\usetikzlibrary{through,hobby}

\begin{document}

\begin{tikzpicture}[use Hobby shortcut]
    \draw[help lines] (0,0) grid (5,5);

    %% 定义坐标点
    \coordinate[label=left:$A_1$] (A1) at (0,0);
    \coordinate[label=left:$A_2$] (A2) at (1,2);
    \coordinate[label=left:$A_3$] (A3) at (2,1);
    \coordinate[label=left:$A_4$] (A4) at (4,3);
    \coordinate[label=left:$A_5$] (A5) at (5,5);

    %% 绘制曲线
    \draw[line width=.8pt] (A1) .. (A2) .. (A3) .. (A4) .. (A5);
\end{tikzpicture}

\end{document}

经过多点的光滑曲线

神经网络

Tikz三方库:

发现一个好玩的东西,在使用PlotNeuralNet的同时开着VScode,将.tex生成的文件作为VScode工作文件夹。
这样在PlotNeuralNet生成.tex的同时,Latex Workshop检测到.tex文件变动,就会自己生成相应的pdf

神经网络

问题

node节点中的文字换行

加入align=center选项,使用\进行换行

1
\node at(17,1.5,0) [align=center]{interpolated \\ slice};
Share on

MiaoMiaoYang
WRITTEN BY
MiaoMiaoYang