brentthorne / posterdown

Use RMarkdown to generate PDF Conference Posters via HTML
https://brentthorne.github.io/posterdown_html_showcase/
Other
839 stars 129 forks source link

Decrease space between figures and captions #94

Closed jivelasquezt closed 5 years ago

jivelasquezt commented 5 years ago

Is there any way to decrease the spacing between figures and captions?

brentthorne commented 5 years ago

Yup! Similar to the css added in #93 you can add the change into your .rmd file like so:

<style>
p.caption {
 margin-top: 0;
 margin-bottom: 0;
}
</style>