Skip to content

Commit

Permalink
rust: Fix doc abbrev
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Jul 18, 2024
1 parent 13bafbb commit 0028c9d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/doc-header.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
}
// do the actual replace
function replaceAbbrev(el) {
let txt = el.textContent;
let txt = el.innerHTML;
for (k in parsedAbbrevs)
txt = txt.replace(k, parsedAbbrevs[k]);
el.innerHTML = txt;
Expand Down
2 changes: 1 addition & 1 deletion crates/ekore/refs.bib
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ @article{Ball2015tna
pages = "49--58",
year = "2016"
}
@article{Buza:1996wv,
@article{Buza1996wv,
author = "Buza, M. and Matiounine, Y. and Smith, J. and van Neerven, W. L.",
title = "{Charm electroproduction viewed in the variable flavor number scheme versus fixed order perturbation theory}",
eprint = "hep-ph/9612398",
Expand Down
26 changes: 25 additions & 1 deletion crates/ekore/src/bib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! List of References (autogenerated on 2024-05-30T12:57:15.459698).
//! List of References (autogenerated on 2024-07-18T17:42:47.650964).
#[allow(non_snake_case)]
/// The Three loop splitting functions in QCD: The Nonsinglet case
Expand Down Expand Up @@ -71,3 +71,27 @@ pub fn MuselliPhD() {}
///
/// DOI: [10.1016/j.cpc.2005.03.103](https:dx.doi.org/10.1016/j.cpc.2005.03.103)
pub fn Vogt2004ns() {}

#[allow(non_snake_case)]
/// Intrinsic charm in a matched general-mass scheme
///
/// Ball, Richard D. and Bertone, Valerio and Bonvini, Marco and Forte, Stefano and Groth Merrild, Patrick and Rojo, Juan and Rottoli, Luca
///
/// Published in: Phys. Lett. B 754 (2016), 49--58
///
/// e-Print: [1510.00009](https://arxiv.org/abs/1510.00009)
///
/// DOI: [10.1016/j.physletb.2015.12.077](https:dx.doi.org/10.1016/j.physletb.2015.12.077)
pub fn Ball2015tna() {}

#[allow(non_snake_case)]
/// Charm electroproduction viewed in the variable flavor number scheme versus fixed order perturbation theory
///
/// Buza, M. and Matiounine, Y. and Smith, J. and van Neerven, W. L.
///
/// Published in: Eur. Phys. J. C 1 (1998), 301--320
///
/// e-Print: [hep-ph/9612398](https://arxiv.org/abs/hep-ph/9612398)
///
/// DOI: [10.1007/BF01245820](https:dx.doi.org/10.1007/BF01245820)
pub fn Buza1996wv() {}

0 comments on commit 0028c9d

Please sign in to comment.