站点之后会较少更新,有需要可以备份
我们主要关注EDA和相关理论,它向上支持芯片设计,向下连接芯片制造
模拟电路的电路图
- \usepackage{circuitikz}
- \begin{circuitikz}[american]
- \draw (0, 0) to[ isource ] (0, 3) — (2, 3) to[R] (2, 0) — (0, 0);
- \end{circuitikz}
- \begin{circuitikz}[american]
- \draw (0, 0) to[ isource, l = $I_0$ ] (0, 3) — (2, 3) to[R = $R_1$] (2, 0) — (0, 0);
- \draw (2, 3) — (4, 3) to[R = $R_2$] (4, 0) — (2, 0);
- \end{circuitikz}
音乐的五线谱
- 在LaTeX中输入五线谱,可以使用MusiXTeX
- https://www.ctan.org/pkg/musixtex
- MusiXTeX文档提供的一个简单的例子
- \usepackage{musixtex}
- \begin{music}
- \parindent10mm
- \instrumentnumber{1} % a single instrument
- \setname1{Piano} % whose name is Piano
- \setstaffs1{2} % with two staffs
- \generalmeter{\meterfrac44} % 4/4 meter chosen
- \startextract % starting real score
- \Notes\ibu0f0\qb0{cge}\tbu0\qb0g|\hl j\en
- \Notes\ibu0f0\qb0{cge}\tbu0\qb0g|\ql l\sk\ql n\en
- \bar
- \Notes\ibu0f0\qb0{dgf}|\qlp i\en
- \notes\tbu0\qb0g|\ibbl1j3\qb1j\tbl1\qb1k\en
- \Notes\ibu0f0\qb0{cge}\tbu0\qb0g|\hl j\en
- \zendextract % terminate excerpt
- \end{music}
图元
参考资料:The TikZ and PGF Packages
- 直线
- \draw (-1.5, 0) — (1.5, 0);
- \draw (0, -1.5) — (0, 1.5);
- 曲线
- \filldraw [gray]
- (0, 0) circle [radius=2pt]
- (1, 1) circle [radius=2pt]
- (2, 1) circle [radius=2pt]
- (2, 0) circle [radius=2pt];
- \draw (0, 0) .. controls (1, 1) and (2, 1) .. (2, 0);