# **text** or __text__ makes your text between the ** or __ bold
For example, this is bold text that I made using two underscores
# *text* or _text_ makes your text between the * or _ italic
For example, this is italic text that I made using one underscore
# You can include a line break by ending a line with two (or more) spaces and a return.
# Alternatively, you can use html <br>
# If we put atwo (or more) spaces and a return after the comma in the preceeding example we get the following:
For example,
this is italic text that I made using one underscore
# You can insert R code and calculations directly into your text
# For example, the following line outside of a code chunk is displayed below.
# The average mpg for cars in the data set is `r round(mean(mtcars$mpg), 2)` miles per gallon.
The average mpg for cars in the data set is 20.09 miles per gallon.
In html documents you will not need page breaks. W
# When you are producing html documents, you can use the latex command "\pagebreak" to insert a page break
# You can create headings with "#"
# The following text starts with #Heading and ends with ######Heading