├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── README.md ├── _bookdown.yml ├── _build.sh ├── _output.yml ├── index.Rmd ├── notebook.Rproj ├── preamble.tex ├── ref.bib ├── render_dir ├── DESCRIPTION ├── LICENSE ├── _bookdown.yml ├── _build.sh ├── _output.yml ├── index.Rmd ├── libs.html ├── notebook_render.Rproj ├── preamble.tex ├── ref.bib ├── style.css └── toc.css ├── style.css └── toc.css /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- 1 | book_filename: "notebook" 2 | new_session: yes 3 | -------------------------------------------------------------------------------- /_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/_build.sh -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/_output.yml -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/index.Rmd -------------------------------------------------------------------------------- /notebook.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/notebook.Rproj -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/preamble.tex -------------------------------------------------------------------------------- /ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/ref.bib -------------------------------------------------------------------------------- /render_dir/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/DESCRIPTION -------------------------------------------------------------------------------- /render_dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/LICENSE -------------------------------------------------------------------------------- /render_dir/_bookdown.yml: -------------------------------------------------------------------------------- 1 | book_filename: "notebook_render" 2 | new_session: yes 3 | -------------------------------------------------------------------------------- /render_dir/_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/_build.sh -------------------------------------------------------------------------------- /render_dir/_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/_output.yml -------------------------------------------------------------------------------- /render_dir/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/index.Rmd -------------------------------------------------------------------------------- /render_dir/libs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/libs.html -------------------------------------------------------------------------------- /render_dir/notebook_render.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/notebook_render.Rproj -------------------------------------------------------------------------------- /render_dir/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/preamble.tex -------------------------------------------------------------------------------- /render_dir/ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/ref.bib -------------------------------------------------------------------------------- /render_dir/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/style.css -------------------------------------------------------------------------------- /render_dir/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/render_dir/toc.css -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/style.css -------------------------------------------------------------------------------- /toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoast/notebook-template/HEAD/toc.css --------------------------------------------------------------------------------