-
-
Notifications
You must be signed in to change notification settings - Fork 96
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
Add support for citations #185
base: master
Are you sure you want to change the base?
Conversation
@pfitzseb this seems like it's pretty far along, and mostly stalled because the HTML doesn't add the list of references? It would be nice if this got rebased and merged even if that HTML part isn't fully complete yet, since this would likely be mostly used with PDFs. @jlperla how did you it with https://julia.quantecon.org/ ? Xref @strangeli |
@ChrisRackauckas The QE is built around a very flexible but complicated RST/sphinx based tool: https://github.com/QuantEcon/jupinx and I think (but am not entirely sure) that the latex stuff comes out of sphinx. Not many lessons that can be learned from it for Weave, I fear. |
Is anyone still working one this? |
cites = [] | ||
for c in citations.content | ||
push!(cites, c.key) | ||
end |
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.
cites = [] | |
for c in citations.content | |
push!(cites, c.key) | |
end | |
cites = map(c -> c.key, citations.content) |
Can avoid potential dynamic resizing by not using push!
here
Just dropping by to say this feature would be very cool. Being able to drop in bibtex citations in |
I agree, looking forward to it. Did you mean |
Yes! Thanks for spotting that. I've corrected the mistake. |
Agreed! This would be a brilliant addition. |
Has this been deserted? 😊 Just so I don't try too deep into using it |
It more or less works and you can always fork it by yourself. But I agree it is a bit disheartening to see so many pull requests remain unmerged as a Weave user. |
I'm looking into adding support for citations in
m2html
andmd2pdf
formats (#144). Current state and plans: