Chapter 9: A Minimal Book Example
9.1 About
This is a sample book written in Markdown. You can use anything that Pandoc’s Markdown supports; for example, a math equation \(a^2 + b^2 = c^2\).
9.1.1 Usage
Each bookdown chapter is an .Rmd file, and each .Rmd file can contain one (and only one) chapter. A chapter must start with a first-level heading: # A good chapter
, and can contain one (and only one) first-level heading.
Use second-level and higher headings within chapters like: ## A short section
or ### An even shorter section
.
The index.Rmd
file is required, and is also your first book chapter. It will be the homepage when you render the book.
9.1.2 Render book
You can render the HTML version of this example book without changing anything:
Find the Build pane in the RStudio IDE, and
Click on Build Book, then select your output format, or select “All formats” if you’d like to use multiple formats from the same book source files.
Or build the book from the R console:
To render this example to PDF as a bookdown::pdf_book
, you’ll need to install XeLaTeX. You are recommended to install TinyTeX (which includes XeLaTeX): https://yihui.org/tinytex/.
9.2 Hello bookdown
All chapters start with a first-level heading followed by your chapter title, like the line above. There should be only one first-level heading (#
) per .Rmd file.
9.3 Cross-references
Cross-references make it easier for your readers to find and link to elements in your book.
9.3.1 Chapters and sub-chapters
There are two steps to cross-reference any heading:
- Label the heading:
# Hello world {#nice-label}
.- Leave the label off if you like the automated heading generated based on your heading title: for example,
# Hello world
=# Hello world {#hello-world}
. - To label an un-numbered heading, use:
# Hello world {-#nice-label}
or{# Hello world .unnumbered}
.
- Leave the label off if you like the automated heading generated based on your heading title: for example,
- Next, reference the labeled heading anywhere in the text using
\@ref(nice-label)
; for example, please see Chapter 9.3.- If you prefer text as the link instead of a numbered reference use: any text you want can go here.
9.4 Parts
You can add parts to organize one or more book chapters together. Parts can be inserted at the top of an .Rmd file, before the first-level chapter heading in that same file.
Add a numbered part: # (PART) Act one {-}
(followed by # A chapter
)
Add an unnumbered part: # (PART\*) Act one {-}
(followed by # A chapter
)
Add an appendix as a special kind of un-numbered part: # (APPENDIX) Other stuff {-}
(followed by # A chapter
). Chapters in an appendix are prepended with letters instead of numbers.
9.5 Footnotes and citations
9.5.1 Footnotes
Footnotes are put inside the square brackets after a caret ^[]
. Like this one 3.
9.5.2 Citations
Reference items in your bibliography file(s) using @key
.
For example, we are using the bookdown package1 (check out the last code chunk in index.Rmd to see how this citation key was added) in this sample book, which was built on top of R Markdown and knitr2 (this citation was added manually in an external file book.bib).
Note that the .bib
files need to be listed in the index.Rmd with the YAML bibliography
key.
The RStudio Visual Markdown Editor can also make it easier to insert citations: https://rstudio.github.io/visual-markdown-editing/#/citations
9.6 Blocks
9.6.1 Equations
Here is an equation.
\[\begin{equation} f\left(k\right) = \binom{n}{k} p^k\left(1-p\right)^{n-k} \tag{9.1} \end{equation}\]
You may refer to using \@ref(eq:binom)
, like see Equation (9.1).
9.6.2 Theorems and proofs
Labeled theorems can be referenced in text using \@ref(thm:tri)
, for example, check out this smart theorem 9.1.
Theorem 9.1 For a right triangle, if \(c\) denotes the length of the hypotenuse and \(a\) and \(b\) denote the lengths of the other two sides, we have \[a^2 + b^2 = c^2\]
Read more here https://bookdown.org/yihui/bookdown/markdown-extensions-by-bookdown.html.
9.6.3 Callout blocks
The R Markdown Cookbook provides more help on how to use custom blocks to design your own callouts: https://bookdown.org/yihui/rmarkdown-cookbook/custom-blocks.html
references
This is a footnote.↩︎