
约 657 字...
本文记录了常用的 Anaconda 命令
conda --version
或
conda -V
本文介绍了npm
, cnpm
, npx
, yarn
, pnpm
等常见的包管理器和其基本命令
Node.js
自带工具,无需手动安装npm install [包名](@[版本])
:安装指定包并添加到 package.json
中的 依赖项(dependencies)
npm install
:安装所有 package.json
中的依赖项npm install --save-dev
:安装包并添加到 package.json
中的 开发依赖项(devDependencies)npm uninstall [包名]
:卸载指定包npm run [命令名]
:执行 package.json
中定义的命令npm config set registry https://registry.npmmirror.com
:切换 淘宝源Katex是一个流行的网页数学公式渲染器
本文总结了常见的一些 katex (LaTex) 命令,以及希腊字母表
功能 | 示例 | 代码 |
---|---|---|
上标 | a2 | ^ |
下标 | x1 | _ |
分数(fraction) | 21 | \frac{分子}{分母} |
平方根(sqrt) | 2 | \sqrt{被开方数} |
根号(sqrt) | 32 | \sqrt[根指数]{被开方数} |
乘 | × | \times |
除(division) | ÷ | \div |
点乘 | ⋅ | \cdot |
圆圈(circle) | ∘ | \circ |
度 | ∘, ∘C | ^\circ , ^\circ C |
向量(vector) | a | \vec{单个字母} |
向量(上右箭头) | AB | \overrightarrow{多个字母} |
正负号(plus minus) | ± | \pm |
负正号(minus plus) | ∓ | \mp |
小于等于(less equal) | ≤ | \leq |
大于等于(greater equal) | ≥ | \geq |
不等于(not equal) | = | \neq |
约等于(approximate) | ≈ | \approx |
求和(sum) | ∑ | \sum |
连乘(product) | ∏ | \prod |
交集(帽子,cap) | ∩ | \cap |
并集(杯子,cup) | ∪ | \cup |
属于(in) | ∈ | \in |
(矩阵的)转置 | ⊤ | ^\top |
省略号(底线对齐) | … | \ldots |
横向多点(中线对齐) | ⋯ | \cdots |
纵向多点 | ⋮ | \vdots |
斜向多点 | ⋱ | \ddots |
因为 | ∵ | \because |
所以 | ∴ | \therefore |
任意 | ∀ | \forall |
存在 | ∃ | \exists |
推导出 | ⟹ | \implies |
等价于 | ⟺ | \iff |
矩阵(圆括号) | (x1x2y1y2) | \begin{pmatrix} x_1 & y_1 \\ x_2 & y_2 \end{pmatrix} |
矩阵(方括号) | [x1x2y1y2] | \begin{bmatrix} x_1 & y_1 \\ x_2 & y_2 \end{bmatrix} |
矩阵(大括号) | {x1x2y1y2} | \begin{Bmatrix} x_1 & y_1 \\ x_2 & y_2 \end{Bmatrix} |
行列式 | x1x2y1y2 | \begin{vmatrix} x_1 & y_1 \\ x_2 & y_2 \end{vmatrix} |
范数 | x1x2y1y2 | \begin{Vmatrix} x_1 & y_1 \\ x_2 & y_2 \end{Vmatrix} |