Skip to content

Commit df60c91

Browse files
committed
init
0 parents  commit df60c91

File tree

125 files changed

+394337
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+394337
-0
lines changed

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
*.log
2+
*.dvi
3+
*.aux
4+
*.out
5+
*.bbl
6+
*.dvi
7+
*.pdf
8+
!thesis.pdf
9+
*.blg
10+
*.toc
11+
*.pyg
12+
*.acn
13+
*.acr
14+
*.alg
15+
*.glg
16+
*.glo
17+
*.gls
18+
*.glsdefs
19+
*.ist
20+
*.fls
21+
*.fdb_latexmk
22+
*.synctex.gz
23+
*.tdo
24+
*.lof
25+
*.lot
26+
autogenerated-tutorial*
27+
cache/

.latexmkrc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Usage: latexmk report.tex
2+
# Inspired by https://github.com/cdlm/infrastructure/blob/master/dotfiles/latexmkrc
3+
$pdf_mode = 1;
4+
$pdflatex = 'xelatex --shell-escape -file-line-error -halt-on-error -synctex=1 %O %S';
5+
6+
# http://tex.stackexchange.com/questions/1226/how-to-make-latexmk-use-makeglossaries
7+
add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
8+
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');
9+
push @generated_exts, 'glo', 'gls', 'glg';
10+
push @generated_exts, 'acn', 'acr', 'alg';
11+
$clean_ext .= ' %R.ist %R.xdy';
12+
13+
sub run_makeglossaries {
14+
if ( $silent ) {
15+
system "makeglossaries -q '$_[0]'";
16+
}
17+
else {
18+
system "makeglossaries '$_[0]'";
19+
};
20+
}

1-intro/1-intro.tex

+1,209
Large diffs are not rendered by default.

1-intro/fig/dam.svg

+928
Loading

1-intro/fig/dam.tex

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
\begin{figure}[h!]
2+
\includegraphics[width=0.95\textwidth]{\currfiledir/.\currfilebase.pdf}
3+
4+
\caption[Drosophila Activity Monitor]{\ctit{Drosophila Activity Monitor.}
5+
\textbf{A}: a Drosophila Activity Monitor (DAM), the most widely used system to monitor walking activity and sleep in \droso, with 8 tubes loaded.
6+
Each monitor can hold up to 32 single flies in glass tubes.
7+
Multiple monitors can run in parallel, and their data is centralised on an acquisition computer.
8+
\textbf{B}: Schematic of a single tube ($\approx 70$~mm long) showing the underlying mechanism of the DAM.
9+
Each fly is contained between food on one side and cotton wool on the other.
10+
Tubes are sealed with paraffin wax.
11+
When the fly walks through the midline of its tube, it crosses an infrared beam which is detected as movement.
12+
The numbers of beam crosses are generally aggregated over one minute (\ie{} the resulting sampling rate being 1~min$^{-1}$).
13+
\label{fig:\currfilebase}
14+
}
15+
\end{figure}

0 commit comments

Comments
 (0)