1 Introduction
1.1 First subsection
References: Scholl et al. (2022) showed that XXX (Vitay, 2017).
Cross-references: See Figure 1.1, Equation 1.1, Listing 1.1, Section 1.2 and Chapter 4.

Equations:
\tau \, \frac{dx_j(t)}{dt} + x_j(t)= \sum_i w^{in}_{ij} \, r^{in}_i(t) + g \, \sum_{i \neq j} w^{rec}_{ij} \, r_i(t) \tag{1.1}
1.2 Second subsection
Admonitions:
Nota Bene
Important information.
Code snippets:
import numpy as np
import ANNarchy as ann
= ann.Population(geometry=1000, neuron=ann.Izhikevich)
P = P[:800] ; I = P[800:]
E
= ann.Projection(pre=E, post=P, target='exc')
EI =ann.Uniform(0.0, 0.5))
EI.connect_all_to_all(weights
= ann.Projection(pre=I, post=P, target='inh')
IE =ann.Uniform(0.0, 1.0))
IE.connect_all_to_all(weights
compile()
ann.
1000.0, measure_time=True) ann.simulate(