diff --git a/index.Rmd b/index.Rmd
index 6d05664..1bbe577 100755
--- a/index.Rmd
+++ b/index.Rmd
@@ -24,14 +24,14 @@ output:
template: null
bookdown::gitbook:
toc_depth: 4
- fig_caption: TRUE
+ fig_caption: true
includes:
in_header: [google_analytics.html]
split_by: rmd
css: "style.css"
config:
toc:
- collapse: section
+ collapse: none
before: |
The OBIS manual
documentclass: book
diff --git a/relational_db.md b/relational_db.md
index 879d269..3f6dd0f 100644
--- a/relational_db.md
+++ b/relational_db.md
@@ -19,7 +19,7 @@ A fourth table could easily be created to track total school population size thr
We elaborate on how this structure is applied within OBIS [here](formatting.html#dataset-structure).
- Figure. An example of how a relational database works. Three tables show the (1) student performance (blue table) in (2) different schools (pink table) in a fictional country, and (3) the names of the courses (yellow table). Information between each table is linked by the use of identifiers, indicated by the arrows.
+fig.cap='Figure. An example of how a relational database works. Three tables show the (1) student performance (blue table) in (2) different schools (pink table) in a fictional country, and (3) the names of the courses (yellow table). Information between each table is linked by the use of identifiers, indicated by the arrows.'
Note that when OBIS harvests data, datasets are flattened - i.e., all separate data tables are combined into one. This is the kind of file you will receive when you [download data from OBIS](access.html). The reason for this is that querying relational databases significantly reduces computational time, as opposed to querying a flat database. Relational databases also facilitate requests for subsets that meet particular criteria - e.g., all data from Norway for one species above a certain depth.
diff --git a/style.css b/style.css
index 6a15774..be36854 100644
--- a/style.css
+++ b/style.css
@@ -2,3 +2,6 @@ table {
display: inline-block !important;
overflow-x: scroll !important;
}
+.book .book-body .page-wrapper .page-inner {
+ max-width: 90% !important;
+}
\ No newline at end of file