Files
openmlsys-zh/info/refenence_guide.md
2022-05-09 16:56:21 +08:00

36 lines
1020 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 参考文献引用方式
下面为参考文献的引用,需要注意引用时前面需要有一个空格:
1. 单篇参考文献
这篇文章参考了论文 :cite:`cnn2015`
2. 多篇参考文献可以用逗号分开
这篇文章参考了论文 :cite:`cnn2015,rnn2015`
3. 此时在对应bib中应该有如下参考文献
@inproceedings{cnn2015,
title = {CNN},
author = {xxx},
year = {2015},
keywords = {xxx}
}
@inproceedings{rnn2015,
title = {RNN},
author = {xxx},
year = {2015},
keywords = {xxx}
}
# 参考文献置于章节末尾方式
1.将章节所引用的全部参考文献生成一个chapter.pip放置于references文件夹下。
如机器人系统章节将该章节参考文献全部放在rlsys.bib并将其放在reference文件夹下。
```
参考文献目录
/references/rlsys.bib`
```
2.将对应章节参考文献引用添加至文章末尾处如机器人系统章节在summary最后加上
```
## 参考文献
:bibliography:`../references/rlsys.bib`
```