Commonly used scientific symbols in pandoc markdown
encoding is UTF-8, needs xelatex, like this:
---
output:
pdf_document:
latex_engine: xelatex
---
per mille sign
plain text: ‰ (does render properly in PDF, does in Word)
HTML: ‰ (does renders properly in PDF, does in Word)
LaTeX:
delta sign
plain text: δ (doesn't render properly in PDF, does in Word)
HTML: δ (doesn't render properly in PDF, does in Word)
LaTeX:
plus-minus sign
plain text: ± (renders properly in PDF, does in Word)
HTML: ± (renders properly in PDF, does in Word)
LaTeX:
degree sign
plain text: ° (renders properly in PDF, does in Word)
HTML: ° (renders properly in PDF, does in Word)
LaTeX:
subscript
surround with one tilda one each side (): CO2~ for subscript
superscript
surround with one hat on each side (^): E=mc^2^ for superscript
For double line spacing in PDF output:
---
title: "A Title"
author: "Some authors"
header-includes:
- \usepackage{setspace}\doublespacing
output: pdf_document
bibliography: main.bib
---
For a word doc, follow these instructions: http://rmarkdown.rstudio.com/articles_docx.html
How to render "+"?