Utilizzando il file tufte_template rmarkdown, sto cercando di fare un nuovo paragrafo che uso due spazi, indicata qui con * (come \newthought{}
, ma senza tappi.):Interruzioni di riga nel testo R Markdown (non blocchi di codice)
# Introduction
The Tufte-\LaTeX\ [^tufte_latex] document**
**
classes define a style similar to the style Edward Tufte uses in his books...
ma ottenere questo risultato:
ho cercato \n
in luogo della seconda coppia di spazi (**) nonché, ma Pandoc genera un errore.
pandoc.exe: Error producing PDF from TeX source
Error: pandoc document conversion failed with error 43
Infine, ho provato ad utilizzare un tag <br>
, ma che sembra non avere alcun effetto - non stampa il testo o una pausa al PDF.
Vorrei un nuovo paragrafo, senza il rientro, simile a \ newthought {}, ma senza la maiuscola ... c'è un modo?
Update 1 con sessionInfo():
> sessionInfo()
R version 3.1.2 (2014-10-31)
Platform: x86_64-w64-mingw32/x64 (64-bit)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] digest_0.6.8 htmltools_0.2.6 rmarkdown_0.5.1 tools_3.1.2 yaml_2.1.13
Update 2
Questo sembra essere un problema che incontro particolare quando si utilizza il modello Tufte:
Il codice funziona per me, nessun rientro, no capitalizzazione. – zx8754
@ zx8754 hai una linea piena e vuota tra il "Documento Tufte LaTex" e "le classi definiscono ..."? – d8aninja
Sì, linea vuota. – zx8754