Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/heartacker/mynotes


https://github.com/heartacker/mynotes

git latex markdown verilog vscode

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# ❤️的菜鸟历程

- [❤️的菜鸟历程](#️的菜鸟历程)
- [学习 $\LaTeX$](#学习-latex)
- [学习Verilog](#学习verilog)
- [学习Git](#学习git)
- [学习VSCode](#学习vscode)

本项目是我学习和发布笔记的地方。当然这也是一个菜鸟历程。如果你也是刚刚入门,也刚刚好看到我这个项目,也刚刚好你也有兴趣阅读,那么感谢你。希望大家一起进步。

## 学习 $\LaTeX$

**$\LaTeX$** 是一个非常优秀的排版系统。我把我从零开始学习的笔记放在了 `01.Latex\_Frist\` 文件夹。如果你有兴趣可以到 [releases](https://github.com/heartacker/MyNotes/releases) 下载 `LaTeX小白高效入门手册.pdf` 查阅。

>注意,如果你要编译的话,请使用xelatex -> bibtex -> xelatex -> xelatex进行编译。因为使用了bib引用。否则可以直接使用 xelatex x2 编译。

## 学习Verilog
```verilog

module hellow():
endmodule
```
## 学习Git

```bash
> git add .
> git commit -m "Init"
> git push
> # git push <远程主机名> <本地分支名>:<远程分支名>
> # 如果当前分支是master。当前的默认远程是origin
> git push
> # 等价于
> git push origin master
> # 等价于
> git push origin master:master
```

## 学习VSCode

```shell
> code MyNotes.code-workspace
```