解决方式:
1. 在没有cite文章时,使用下面代码即可
\notice{*}
2. 在文章中cite相应文献,会自动显示出cite过的文章
代码
因为Latex采用内容和样式分离的思想,所以我将文章的各个模块进行分割放置,便于管理和书写
1. 目录结构
2. 完整代码如下
master 文件
\documentclass[a4paper]{ctexrep}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{refs/thesis-ref.bib}
\ctexset{
section/format += \raggedright
}
\begin{document}
%页面信息
\include{pagers/message}
%封面
\include{pagers/cover}
%摘要(中英文)
%\include{pagers/abstractc}
%\include{pagers/abstracte}
\tableofcontents
\clearpage
%绪论
\include{pagers/intro}
%章节
\include{pagers/charpt2}
\include{pagers/charpt3}
%参考文献
\include{pagers/ref}
%致谢
%\include{pagers/ack}
\end{document}
ref 文件
\nocite{*}
\printbibliography[title=参考文献]
thesis-ref 文件(参考文献数据库文件)
@article{孙磊2017,
title={基于 GBrowse 的多源长非编码 RNA 数据可视化系统 ①},
author={孙磊 and 陈璇 and 唐红 and 魏李婷 and 姬岚洋 and 施胜飞 and 杨晓华},
year={2017}
}
@article{周琳2015生物大数据可视化的现状及挑战,
title={生物大数据可视化的现状及挑战},
author={周琳 and 孔雷 and 赵方庆},
journal={科学通报 (中文版)},
volume={60},
number={5/6},
pages={547--557},
year={2015}
}