-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3-markdown.Rmd
38 lines (29 loc) · 1.14 KB
/
3-markdown.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: "Project Management"
subtitle: "2-markdown"
author: "D-Lab"
date: "3/1/2019"
output: html_document
---
THIS IS AWESOME!
## RStudio refresh!
Top left: input/script
Bottom left: output/console
Top right: "global" environment
Bottom right: misc.
- Navigate file system
- View plots
- Install packages
- Access help files
- Create documents in the "Viewer"
# Markdown
Fancy text formatting! Prepare documents that directly link to your code and vice-versa.
## Stylizing text
Enter text by typing normally. Use hashtage to change the header size, and **wrap words in double stars** to bold text. __Wrap them in underscores__ to italicize them!
Headers can be created by placing one hashtag, two hashtags, etc. before your text.
## Images
You can include images, sound, video, etc.

## knitr
If you successfully installed knitr, you should see a button called "Knit" at the top of your script complete with needle and yarn. Click the drop-down menu and select "Knit to HTML".
After you create the .html file, double click it with your mouse and it will open in your preferred web browser.