hushidong / biblatex-gb7714-2015

A biblatex implementation of the GB/T7714-2015 bibliography style || GB/T 7714-2015 参考文献著录和标注的biblatex样式包
763 stars 84 forks source link

专利显示多余的内容:参考文献中显示bib文件中的 type = {patent}, #177

Open YanMing-lxb opened 10 months ago

YanMing-lxb commented 10 months ago

相关代码:

\RequirePackage[
                backend=biber, % 设置后端程序为biber
                style=gb7714-2015, % 引用和参考文献样式
                gbpub=true, % 显示出版信息
                gbnamefmt=lowercase, % 姓名小写
                doi=false, % 不显示doi
                url=false, % 不显示url
                gbmedium=false, % 载体标识符不显示OL
                gbpunctin=false, % 关闭inbook,incollection,inproceedings中析出来源文献前//符号
                gbalign=left, % 标签左对齐
                defernumbers=true, % 解决refsection环境中 \printbibliography 筛选和 notice* 一起使用导致的编号错乱
                ]{biblatex}

\begin{refsection}[#1]
        \nocite{*}
        \settoggle{bbx:gbannote}{true}
        \printbibliography[heading=BibHeadStyle,type=patent,title=发明专利:]
    \end{refsection}

bib文件中的内容(bib文件类型无误):

@patent{LiChunQuan.ZhengYuanHao.ea_2023,
  type = {patent},
  title = {一种的微通道散热装置},
  author = {李XX and 黄XX},
  holder = {{Guilin University of Electronic Technology}},
  date = {2023-05-09},
  number = {CN143A},
  location = {{CN}},
  urldate = {2023-08-07},
  language = {zh},
}

BUG: image

YanMing-lxb commented 10 months ago

解决方案在 #178