Example blog: This is the title

Brain, Data, and Science is a blog by the Diedrichsenlab on brain science, data science, and science in general. Instead of using wordpress or other platforms, we decided that we wanted full control over the formatting to play creatively with form and content. Inspired by Edward Tufte's work, we build this Python code that compiles blogs written in markdown into a web-blog that looks aesthetically pleasing and has the functionality that we wanted.

Getting started

To contribute blogs to Brain, Data, and Science, fork or clone the repository. Each blog has an own folder.

Headers and sections

Headers are coded using the standard markdown notions

Level 1

Level 2

Level 3

Enclose sections that belong together into </section> </section> tabs.

New thoughts can be highlighted in the beginning of a paragraph by enclosing them into {{...}}.

Side notes

Side note are a characteristic feature of Tufte's work. They enable authors to provide supplementary information in the text without having the reader go to a different part of the paper. When you have a simple comment, you can include it directly in the textthis is a sidenote. You can also make general comments as margin notes that are unnumbered This is a margin note.. When the viewport gets smaller (i.e. when viewing the page on a mobile device, side and margin notes disappear and are only shown when the user toggles them.)

References

To include automatic reference formating, include a reference.bib file in the enclosing folder. References then can then be cited using the tag from the bib-file by using a [+citet: Yokoi2019] or [+citep: Berlot2018] tag. The citet citations are replaced with Yokoi & Diedrichsen (2019), the citep citations are replaced with (Berlot et al., 2018). The citations are then added to a reference section in the end of the document.You can also add citations to a side note (Berlot et al., 2018), so that the reference does not disrupt the flow of reading, but at the same time the information is right there.

Formulas

Math type setting is achieved over MathJax. Math can be either included over inline math, using the dollar sign $a \ne 0$ with is set as $a \ne 0$. You can also use round paratheses as delimiter, such as: \\(ax^2 + bx + c = 0\\) which is set as \(ax^2 + bx + c = 0\) . Display equations are delimited by double dollar signs and separated from the main text using an empty line.

$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a}. $$

$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a}. $$

This ensures that the equations are rendered correctly in the html, but also in your markdown while writing.

Code

Code comes in code blocks or inline code. Inline code can be simply set using single quotes `code`. Blocks of code should be enclosed in triple ```

os.chdir(f"{sourceDir}/{dirname}") with open("info.yaml", "r", encoding="utf-8") as info_file: info = yaml.load(info_file,Loader=yaml.FullLoader)

Links

Links to external documents can be included as is standard in markdown with [link](http://diedrichsenlab.org) syntax which is being set as link.

Images

Figures are included by inserting a paragraph starting with a Figure tag.

![Figure 1](/path/to/img.jpg)**Figure 1.** Some caption for figure 1.

The tag provides the file name of the figure to be included - the rest of the paragraph spells out the caption. So the above statement would be set to

Figure 1. Some caption for figure 1.Figure 1

Acknowledgements

The basic formating is based from Tufte-LaTeX and and the GitHub project tufte-css by David Liepman. The code for the blog uses the Python-Markdown library

References

Yokoi & Diedrichsen (2019). Neural Organization of Hierarchical Motor Sequence Representations in the Human Neocortex. Neuron.

Berlot et al. (2018). In search of the engram, 2017. Current Opinion in Behavioral Sciences.