26 lines
625 B
Text
26 lines
625 B
Text
---
|
|
title: "EA Companion"
|
|
author: "Mike O'Brien, Robert Lyman, Simon Carrignon, Alfredo Cortell-Nicolau"
|
|
date: "`r Sys.Date()`"
|
|
site: bookdown::bookdown_site
|
|
---
|
|
|
|
# Intro
|
|
|
|
This is the front page for the Online Companion to Evolutionary Archaeology revised second edition.
|
|
|
|
```{r setup, include=FALSE}
|
|
knitr::opts_chunk$set(echo = TRUE)
|
|
```
|
|
|
|
We will here define a few object and variable that we will be used throught the project
|
|
Setup colors for the rest of the book:
|
|
|
|
```{r}
|
|
population_colour <- "#333333"
|
|
random_colour <- "#0072B2"
|
|
biased_colour <- "#D55E00"
|
|
conformity_colour <- "#009E73"
|
|
network_colour <- "#CC79A7"
|
|
```
|
|
|