You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@cboettig I use knitcitations with slidify. When I print the references I want to print just some of the reverences at a time so that I can stretch multiply slides as the reference list is likely to exceed one slide.
Let's say we have 10 references total being used. If there a way to print the first 5 on one slide and the last 5 on the next slide?
'''{r include=FALSE}
out <- bibliography("html") # displays nothing but captures the output
'''
Followed by
'''{r results="asis"}
cat(out[1:5])
'''
but I realize that's kinda silly. I'd welcome a pull request that adds this as an option to bibliography... (otherwise I'll get around to it eventually...)
@cboettig I use
knitcitations
withslidify
. When I print the references I want to print just some of the reverences at a time so that I can stretch multiply slides as the reference list is likely to exceed one slide.Let's say we have 10 references total being used. If there a way to print the first 5 on one slide and the last 5 on the next slide?
I tried
Note: I replaced the the back ticks in the code chunk with a straight quote as the back ticks won't render on github.
The text was updated successfully, but these errors were encountered: