文档写作

Overleaf生成GB/T 7714国标格式参考文献的最小实现

2026-03-01 1 min read 64 chars

编译器选择XeLaTeX,新建"ref.bib"文件填入参考文献bib信息,正文"main.tex"文件内容如下。

\documentclass{article}
\usepackage{graphicx}
\usepackage{ctex}

\usepackage{gbt7714}
\bibliographystyle{gbt7714-numerical}

\begin{document}

\section{Introduction}

引用参考文献\cite{[参考文献bib]}。

\bibliography{ref} % bib文件

\end{document}

Comments.