在 Mac 上將 LuaLaTeX 和 biber 與 Texmaker 結合使用
當引用如下文章時,參考書目中的所有內容都會正確列印,只有期刊名稱根本沒有列印。它應該顯示在“In:”之後,我不知道為什麼會發生這種情況,對於其他標識符,例如@book
或@inproceedings
工作正常)。
[1] Woodland, S.、Crocombe, AD、Chew、JW 和 Mills, SJ:測量接觸熱導的新方法 - 實驗技術和結果。見:133.7(07/2011),S.071601。 doi:10.1115/1.4001770(s.S.2)。
@article{woodland_new_2011,
title = {A {New} {Method} for {Measuring} {Thermal} {Contact} {Conductance}—{Experimental} {Technique} and {Results}},
volume = {133},
issn = {0742-4795, 1528-8919},
url = {https://asmedigitalcollection.asme.org/gasturbinespower/article/doi/10.1115/1.4001770/466203/A-New-Method-for-Measuring-Thermal-Contact},
doi = {10.1115/1.4001770},
abstract = {Thermal contact conductance (TCC) is used to characterize heat transfer across interfaces in contact. },
language = {en},
number = {7},
urldate = {2020-04-29},
journal = {Journal of Engineering for Gas Turbines and Power},
author = {Woodland, Simon and Crocombe, Andrew D. and Chew, John W. and Mills, Stephen J.},
month = jul,
year = {2011},
pages = {071601},
file = {Submitted Version:/Users/hanneshenglein/Zotero/storage/7MGEHYCI/Woodland et al. - 2011 - A New Method for Measuring Thermal Contact Conduct.pdf:application/pdf}
}
重新定義bibmacro
%% Only used by article driver: Journal Volume.Number (date)
\newbibmacro*{journal+volume+date}{%
\usebibmacro{journal}%
\setunit*{\addspace}%
\iffieldundef{series}
{}
{%
\newunit
\printfield{series}%
\setunit{\addspace}%
}
\usebibmacro{volume+number+eid}%
\setunit{\addspace}%
\usebibmacro{date}%
\newunit
}
文章驅動程式:
\DeclareBibliographyDriver{article}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\usebibmacro{author}%
\setunit{\printdelim{nametitledelim}}\newblock
\usebibmacro{title}%
\newunit\newblock
\usebibmacro{in:}%
\usebibmacro{journal+volume+date}%
\usebibmacro{pages}%
%\usebibmacro{note}%
\newunit\newblock
%\iftoggle{bbx:isbn}
%{\printfield{issn}}
%{}%
\newunit\newblock
\usebibmacro{doi+eprint+url}%
\setunit{\bibpagerefpunct}\newblock
\usebibmacro{pageref}%
\newunit\newblock
\iftoggle{bbx:related}
{\usebibmacro{related:init}%
\usebibmacro{related}}
{}%
\usebibmacro{finentry}
}