-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix DocumenterCitations error #483
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #483 +/- ##
=======================================
Coverage 95.82% 95.82%
=======================================
Files 41 41
Lines 1605 1605
=======================================
Hits 1538 1538
Misses 67 67
|
00dff73
to
482def9
Compare
@@ -397,7 +397,7 @@ @article{Koop2002 | |||
|
|||
@article{Lehtinen2007, | |||
title = {Estimating nucleation rates from apparent particle formation rates and vice versa: Revised formulation of the Kerminen–Kulmala equation}, | |||
author = {Kari E.J. Lehtinen and Miikka {Dal Maso} and Markku Kulmala and Veli-Matti Kerminen}, | |||
author = {Kari E.J. Lehtinen and Miikka Dal Maso and Markku Kulmala and Veli-Matti Kerminen}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not correct: it changes the last name "Dal Maso" to "Maso" with "Dal" as a middle name. The correct way to handle this is to use the "Last, First" format.
@article{Lehtinen2007,
title = {Estimating nucleation rates from apparent particle formation rates and vice versa: Revised formulation of the Kerminen–Kulmala equation},
author = {Lehtinen, Kari E.J. and Dal Maso, Miikka and Kulmala, Markku and Kerminen, Veli-Matti},
journal = {Journal of Aerosol Science},
volume = {38},
number = {9},
pages = {988-994},
year = {2007},
doi = {10.1016/j.jaerosci.2007.06.009}
}
By the way, I don't think you're using the correct CSS |
Our docs stopped building with
DocumenterCitations v1.3.5
. They were working fine with previous versions.Following the discussion in JuliaDocs/DocumenterCitations.jl#78 I removed the TeX commands in favor of unicode in authors names. The actual fix is removing
{
from{Dal Maso}
in line 400. I want to keep the other changes too, because they are more in line with the above mentioned discussion.