From 77e6d1536c8c36e35238deb9b013c7693c319c1f Mon Sep 17 00:00:00 2001 From: Felix Hekhorn Date: Thu, 18 Jul 2024 17:59:10 +0300 Subject: [PATCH] rust: Fix doc abbrev --- crates/doc-header.html | 2 +- crates/ekore/refs.bib | 25 +++++++++++++++++++++++++ crates/ekore/src/bib.rs | 26 +++++++++++++++++++++++++- 3 files changed, 51 insertions(+), 2 deletions(-) diff --git a/crates/doc-header.html b/crates/doc-header.html index 3b2f9651b..32f0bba13 100644 --- a/crates/doc-header.html +++ b/crates/doc-header.html @@ -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; diff --git a/crates/ekore/refs.bib b/crates/ekore/refs.bib index e8ef02c2b..a8a049ac1 100644 --- a/crates/ekore/refs.bib +++ b/crates/ekore/refs.bib @@ -69,3 +69,28 @@ @article{Vogt2004ns volume = "170", year = "2005" } +@article{Ball2015tna, + author = "Ball, Richard D. and Bertone, Valerio and Bonvini, Marco and Forte, Stefano and Groth Merrild, Patrick and Rojo, Juan and Rottoli, Luca", + title = "{Intrinsic charm in a matched general-mass scheme}", + eprint = "1510.00009", + archivePrefix = "arXiv", + primaryClass = "hep-ph", + reportNumber = "EDINBURGH-2015-06, TIF-UNIMI-2015-11, EDINBURGH-2015-14, CERN-PH-TH-2015-176, OUTP-15-20P", + doi = "10.1016/j.physletb.2015.12.077", + journal = "Phys. Lett. B", + volume = "754", + pages = "49--58", + year = "2016" +} +@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", + archivePrefix = "arXiv", + reportNumber = "NIKHEF-96-027, ITP-SB-96-66, DESY-96-258, INLO-PUB-22-96", + doi = "10.1007/BF01245820", + journal = "Eur. Phys. J. C", + volume = "1", + pages = "301--320", + year = "1998" +} diff --git a/crates/ekore/src/bib.rs b/crates/ekore/src/bib.rs index 75da707bb..01b7025f8 100644 --- a/crates/ekore/src/bib.rs +++ b/crates/ekore/src/bib.rs @@ -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 @@ -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() {}