zepinglee / gbt7714-bibtex-style

GB/T 7714-2015 BibTeX Style
LaTeX Project Public License v1.3c
1.15k stars 196 forks source link

中文学位论文不显示学校所在地 #121

Closed golgq closed 1 year ago

golgq commented 1 year ago

编译环境

宏包版本:gbt7714 v2.1.5 标注样式:numbers

描述问题

中文学位论文不显示学校所在地

bib 数据库代码:

@phdthesis{zhushu21,
    type = {{博士}},
    title = {{考虑谐波交互的MMC模型及其在小信号稳定性分析中的应用}},
    author = {{朱蜀}},
    year = {2021},
    address = {{武汉}},
    urldate = {2022-07-02},
    langid = {chinese},
    language = {zh},
    school = {武汉大学}
}

截图: image

zepinglee commented 1 year ago

国标要显示。

Screenshot 2023-03-25 at 12 12 03
golgq commented 1 year ago

@zepinglee 你好,我的意思是我想显示,但是生成的结果并未显示

zepinglee commented 1 year ago

我无法复现你的问题。

\documentclass{ctexart}

\begin{filecontents}[overwrite]{\jobname.bib}
@phdthesis{zhushu21,
    type = {{博士}},
    title = {{考虑谐波交互的MMC模型及其在小信号稳定性分析中的应用}},
    author = {{朱蜀}},
    year = {2021},
    address = {{武汉}},
    urldate = {2022-07-02},
    langid = {chinese},
    language = {zh},
    school = {武汉大学}
}
\end{filecontents}

\usepackage[sort]{gbt7714}

\begin{document}

\nocite{*}
\bibliographystyle{gbt7714-numerical}
\bibliography{\jobname}

\end{document}
Screenshot 2023-03-25 at 12 16 31
golgq commented 1 year ago

清除临时文件之后重新生成了一遍,已经解决问题了。感谢。