写博客技巧

markdown

小记:

二级标题:框架,数学符号,数学公式,字体颜色,图片

其他都是已忘记的是 五级别标题

学习博客:传送门1

字体颜色

更多RGB颜色查询

c l a s s i f y o d e ( e q , f ( x ) ) \color{#00FB99}{classify_ode(eq, f(x))} $color{#00FB99}{classify_ode(eq, f(x))}$

c l a s s i f y o d e ( e q , f ( x ) ) \color{#00FB45}{classify_ode(eq, f(x))} $\color{#00FB45}{classify_ode(eq, f(x))}$

c l a s s i f y o d e ( e q , f ( x ) ) \color{#008b45}{classify_ode(eq, f(x))} $\color{#008b45}{classify_ode(eq, f(x))}$ 喜欢这个

c l a s s i f y o d e ( e q , f ( x ) ) \color{#008b43}{classify_ode(eq, f(x))} $\color{#008b43}{classify_ode(eq, f(x))}$

框架

分割线是3个*

公式内换行 使用\
1 + 2 = 3 2 + 1 = 3 1+2=3\\ 2+1=3

内容折叠
<details>
<summary>展开查看</summary>
<pre><code>
System.out.println("Hello to see U!");
</code></pre>
</details>

展开查看

System.out.println("Hello to see U!");
## 符号
关系运算符号
\equiv $\equiv$ \because $\because$ \emptyset $\emptyset$
\mp $\mp$ \therefore $\therefore$ \in $\in$
± \pm $\pm$ \notin $\notin$
\neq $\neq$ \subset $\subset$
\leq $\leq$ \supset $\supset$
\geq $\geq$ \bigcap $\bigcap$
\approx $\approx$ \bigcup $\bigcup$

​ ∏:\prod

字母符号

λ \lambda $\lambda$

ε \varepsilon $\varepsilon$

特殊的难打字体

中间点 ·

数学公式

上下标

: a + b + c 1.0 + d 2.0 :\overbrace{a+\underbrace{b+c}{1.0}+d}^{2.0} $:\overbrace{a+\underbrace{b+c}{1.0}+d}^{2.0}$

a + b + c + d \overline{a+b+c+d} $\overline{a+b+c+d}$

写分数

7 x + 5 1 + y 2 \frac{7x+5}{1+y^2}

\frac{7x+5}{1+y^2}

markdown公式

写分段函数

f ( t ) = K e σ t + j ω t { f ( t ) = K σ = 0 , ω = 0   f ( t ) = K e σ t + j ω t σ 0 , ω 0 f(t)=K\,e^{\sigma t +j\omega t } \begin{cases} 直流信号\quad f(t)=K &\sigma=0, \omega=0 \\ 不等幅振荡正弦信号 \ f(t)=K\,e^{\sigma t+j\omega t }& \sigma\neq0, \omega \neq0 \end{cases}

$$
f(x)=
\begin{cases}
1 & x\geq 0\\
0 & x<0
\end{cases}
$$

写矩阵

<一>用jupyter

https://blog.csdn.net/xfzero/article/details/80369575

<二>用markdown

​```math
\left[
 \begin{matrix}
   x'' \\
   y'' \\
   z'' \\
   w''
  \end{matrix}
  \right] = \left[
 \begin{matrix}
   w & -z & y & x\\
   z & w & -x & y\\
   -y & x & w & z\\
   -x & -y &-z & w
  \end{matrix}
  \right] \left[
 \begin{matrix}
   x' \\
   y' \\
   z' \\
   w'
  \end{matrix}
  \right] \tag{1}

m a t h [ x y z w ] = [ w z y x z w x y y x w z x y z w ] [ x y z w ] (1) math \left[ \begin{matrix} x'' \\ y'' \\ z'' \\ w'' \end{matrix} \right] = \left[ \begin{matrix} w & -z & y & x\\ z & w & -x & y\\ -y & x & w & z\\ -x & -y &-z & w \end{matrix} \right] \left[ \begin{matrix} x' \\ y' \\ z' \\ w' \end{matrix} \right] \tag{1}

写积分

δ ( t ) ϕ ( t ) d t = ϕ ( 0 ) \begin{aligned} \int_{-∞}^{∞} \delta(t) ·\phi(t) \mathrm{d} t=\phi(0) \end{aligned}

\begin{aligned}
   \int_{-∞}^{∞} \delta(t)  ·\phi(t)  \mathrm{d} t=\phi(0)
\end{aligned}

图片

并行放图片
<figure class="second">
    <img src="https://img-blog.csdnimg.cn/20200209125120564.png" width="280"><img src="https://img-blog.csdnimg.cn/20200209135636243.png" width="280"/>
</figure>
关于图床

1.使用typore本地写博客,上传到csdn。

2.想要传图的,通常用网络链接的图片肯定更方便,

而如果用github做床图,速度慢而且好像有访问限制。

如何用github做床图

也可以把图片上传到csdn上,获得图片的网络地址

发布了145 篇原创文章 · 获赞 26 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_43235540/article/details/105208050