Skip to content

Instantly share code, notes, and snippets.

@moewew
Created August 29, 2020 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moewew/932f4309f89e37b1121da4734572c3ee to your computer and use it in GitHub Desktop.
Save moewew/932f4309f89e37b1121da4734572c3ee to your computer and use it in GitHub Desktop.
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=numeric, backend=biber]{biblatex}
% this bibmacro was missing, guessing its definition
\newbibmacro{pages}{\setunit{\bibpagespunct}\printfield{pages}}
\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}
}
\begin{filecontents}{\jobname.bib}
@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}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\cite{woodland_new_2011}
\printbibliography
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment