Solución:
Probé estas pruebas, parece estar funcionando:
test.Rmd
---
output: pdf_document
---
# test 1
No spaces used
line1
line2
# test 2
2spaces at the end of line1
line1
line2
# test 3
2spaces at the end of line1, then 2 spaces on next line
line1
line2
sessionInfo()
R version 3.2.0 (2015-04-16)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
locale:
[1] LC_COLLATE=English_United Kingdom.1252 LC_CTYPE=English_United Kingdom.1252
[3] LC_MONETARY=English_United Kingdom.1252 LC_NUMERIC=C
[5] LC_TIME=English_United Kingdom.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] htmltools_0.2.6 tools_3.2.0 yaml_2.1.13 rmarkdown_0.5.1 digest_0.6.8
Es una pregunta bastante antigua, pero publico una respuesta ya que es el primer resultado cuando busco en Google “saltos de línea en rmarkdown”.
Si compila en pdf, puede usar macros de látex. Sustituir el **
en la nueva línea con hfillbreak
:
# Introduction
The Tufte-LaTeX [^tufte_latex] document**
hfillbreak
classes define a style similar to the style Edward Tufte uses in his books...
La mejor forma que he encontrado para agregar líneas en blanco es:
# First title
<br><br><br><br><br>
# Second title with 5 blank spaces above it
Puedes probar esto, espero que te ayude. He probado solo en html_documents, pero presumiblemente también funcionaría en pdf.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)