-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Issues with Citations and Pandoc #8136
Comments
I solved this issue for my use case by adding the following to my style.css for revealjs: .references {
font-size: 0.5em;
text-align: left;
} Might be helpful for others. |
The solution for beamer is to put the class
|
I don't know if there is anything like I'm not sure about 2 -- link-citations ought to work in reveal.js. Looks like there's a bug, we're getting links that look like
instead of
|
See https://revealjs.com/links/ |
This seems to be an odd limitation in reveal.js -- you can link to a section (slide) but not to something within one. Pandoc uses a generic method when you select |
A more general CSS solution for the references slide is
which will give you a scroll bar. |
@maurerle did you ever find a way to paginate the references? |
No, I either use the scrollbar or make the text on the citation slide smaller. But at least linking to references now works properly in reveal.js :) |
Explain the problem.
I am using a markdown file with bibliography and convert to a revealjs presentation:
pandoc -s --bibliography biblio.bib --citeproc CITATIONS -t revealjs -o example24a.html
as taken from the examples (except for revealjs).
This presents some issues:
link-citations: true
I would suggest to create an option of
citation-presentation-count
to have only 3 references per page?Any other suggestion? Currently the references are not really usable for presentations (beamer and revealjs) with more than 3 sources listed.
But I'd really love to have this integrated.
Pandoc version?
What version of pandoc are you using, on what OS?
pandoc 2.18 on Debian 11
The text was updated successfully, but these errors were encountered: