Discover the full documentation for "Generative AI: From Start to Surrender" online. Dive into detailed guides and resources to enhance your understanding of generative AI technologies.
We are grateful for the contributions from our community. Here are some of our key contributors:
Your contributions help make this project better. Thank you for your support!
在settings.json中添加
{
"markdown.copyFiles.destination": {
"**/*": "${documentWorkspaceFolder}/docs/images/"
},
...
}
Markdownlint 是一个对 Markdown 进行规范检查的扩展,除了给出 lint 提示外,也支持自动修复部分问题(比如空行、列表缩进等)。 打开 VS Code 设置后,可根据需要启用自动修复选项:
{
...
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"markdownlint.config": {
"default": true,
"MD033": false,
"MD049":false,
"MD022":false,
}
}
其中markdownlint.config 可以控制对特定的error选择进行忽略。选择"MD049" 对数学公式的自动修复进行忽略。
如果想引用其他的markdown 文件中的某个章节或者内容,可以添加一个anchor
<a id="elbo"></a>
#### 9.3.1-ELBO
引用时
[引用](<relative_path/to/file.md#elbo)
-
bmatrix cannot be rendered
-
Use extension "MathJax 3 Plugin for Github" to render equation
-
cannot render \mathbf
-
$$ $$ 需要换行。在 Markdown 中,单个换行符(按下 Enter)通常不会被视为换行,而是被解析为一个空格,除非渲染器明确支持换行。
行间公式保持下面的格式
text...
$$...$$
This repository contains both the book content and source code. Each is licensed separately:
-
Book Content:
- "Generative AI: From Start to Surrender – A Practical Guide to Mastering and Struggling with AI Models" 2025.
- Licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
-
Code:
- Licensed under the Apache License 2.0.
Please ensure you follow the respective license terms when using this material.