-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.tex
121 lines (91 loc) · 3.68 KB
/
example.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
\documentclass[b5paper,widemargins,twoside,printrev]{jb-thesis}
\usepackage[T1]{fontenc}
\usepackage[charter, uppercase=upright]{mathdesign}
\usepackage[semibold,type1]{sourcesanspro}
\usepackage{amsmath, amsthm}
\usepackage{mathtools}
\usepackage{algorithm2e}
\usepackage{color}
\usepackage{upgreek}
\usepackage{graphicx, xcolor}
\usepackage{tikzpagenodes}
\usepackage{cleveref}
\usepackage{blindtext}
\input{common.tex}
% biblatex
\usepackage[
%refsection=part,
natbib,
style=nature,
citestyle=authoryear-comp,
backend=biber,
uniquename=false,
]{biblatex}
% adjust citation and bibliography commands
\preto\fullcite{\AtNextCite{\defcounter{maxnames}{99}}}
\defbibheading{bibliography}[\bibname]{%
\part*{#1}%
\markboth{#1}{#1}
}
\addbibresource{bibliography.bib}
\setcounter{tocdepth}{1}
%
% specify your details...
\degree{{\sc Doctor of Sciences} of ETH Zurich}
\degreeabbr{Dr. sc. ETH Zurich}
\gradyear{2017}
\author{Jonathan Binas}
\acadtitle{MSc. ETH Zurich}
\born{1/1/2017}
\citizen{La La Land}
\title{Brain-Inspired Models and Systems \\[0.7ex] for Distributed Computation}
\examiners{
Prof. Dr. Abraham Bebraham \\
Prof. Dr. X. Y. Zebraham
}
\date{\today}
% ---
\begin{document}
\begin{preliminary}
\maketitle
\tableofcontents
% \include{abstract}
\end{preliminary}
% you may or may not want to use parts to structure your thesis
\part{Lorem Ipsum}
% generate some random content...
\blinddocument
% the partextra command allows for arbitrary objects to be placed
% on the part title page, here's an example:
\setpartextra{
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt, yshift=-1.8in] at (current page text area) {
\includegraphics[scale=0.7]{neuron45c.png}};
\end{tikzpicture}
}
% the partextra content will be applied to the subsequent part
\part{Computing~with~imprecise and~noisy~substrates}
% add an unnumbered section
\mbox{}
\section*{Introduction}
Due to their organic nature, no two cells of a biological system, and therefore no two processing units of a brain, behave exactly the same.
Signals are communicated electrically, chemically, on a molecular basis, and even mechanically, through the action of ion channels, whereby all of these processes are influenced by external factors, such as temperature, the abundance of various substances, and various sources of noise \citep{shadlen1994noise}.
% chapters are numbered globally throughout the document
\chapter{What is this all about?}
Due to their organic nature, no two cells of a biological system, and therefore no two processing units of a brain, behave exactly the same.
Signals are communicated electrically, chemically, on a molecular basis, and even mechanically, through the action of ion channels, whereby all of these processes are influenced by external factors, such as temperature, the abundance of various substances, and various sources of noise \citep{shadlen1994noise}.
% let's add some math
\section{Formal derivation}
It is now easy to see that the state $\tilde{x}^\mathsf{b}$ corresponds to state $x^\mathsf{b}$ of the original model, since
%
\begin{align}
\tilde{x}^\mathsf{b}_k &= \sigma\left(\sum_{j<k} w_{kj} x^\mathsf{f}_j + \sum_{j>k} \tilde{w}_{kj} (x^\mathsf{f}_j + \Delta x_j) + b_k\right) \\
&= \sigma\left(\sum_{j<k} w_{kj} x^\mathsf{f}_j + \sum_{j>k} \tilde{w}_{kj} x^\mathsf{b}_j + b_k\right) = x^\mathsf{b}_k\,.
\label{eqn:random1}
\end{align}
%
Analogously to the original derivation, it can be shown that the first and the second forward passes, as well as the subsequent backward pass do not increase the system energy.
% print the bibliography
\printbibliography
\vfill
\end{document}