How to Increase Line Spacing in R Markdown
To increase the line spacing in R Markdown, you can use the CSS line-height property. Here's an example:
<style>
body {
line-height: 1.5;
}
</style>
You can place this CSS code chunk at the beginning of your R Markdown document or in the YAML header if you want it to be applied to the entire document.
In this example, the line-height property is set to 1.5, which means the line spacing will be 1.5 times the normal line height. You can adjust this value as needed to achieve the desired line spacing.
原文地址: https://www.cveoy.top/t/topic/py8a 著作权归作者所有。请勿转载和采集!