-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
62 lines (56 loc) · 1.53 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: "Article Long Title"
author:
- name: Gregory Macfarlane
email: [email protected]
affiliation: Brigham Young University
footnote: 1
- name: Cosmo Cougar
email: [email protected]
affiliation: Brigham Young University
- name: Masters Student
email: [email protected]
affiliation: Brigham Young University
footnote: 2
address:
- code: Brigham Young University
address: Civil and Environmental Engineering Department, 430 Engineering Building, Provo, Utah 84602
- code: Another University
address: Some Other Place
footnote:
- code: 1
text: "Corresponding Author"
- code: 2
text: "Present affiliation: some nice job"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: article
layout: "3p, authoryear"
bibliography: [book.bib]
csl: elsevier-harvard-italics.csl
always_allow_html: true
# url: your book url like https://bookdown.org/yihui/bookdown
# cover-image: path to the social sharing image like images/cover.jpg
link-citations: yes
abstract: |
This is where the abstract should go.
description: "A short description"
github-repo: byu-transpolab/something
keywords:
- Accessibility
- Passive Data
- Location Choice
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = FALSE,
message = FALSE,
warning = FALSE
)
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
# TODO: move library loading entirely to targets pipeline
pacman::p_load(
targets, knitr, kableExtra, tidyverse, ggspatial, ggthemes, wesanderson, sf)
```