https://github.com/ncordon/graduate-dissertation
Master's degree dissertation
https://github.com/ncordon/graduate-dissertation
Last synced: 5 months ago
JSON representation
Master's degree dissertation
- Host: GitHub
- URL: https://github.com/ncordon/graduate-dissertation
- Owner: ncordon
- License: gpl-3.0
- Created: 2019-01-03T03:23:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-28T01:16:43.000Z (over 6 years ago)
- Last Synced: 2025-02-10T06:13:17.874Z (over 1 year ago)
- Language: TeX
- Size: 563 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# graduate-dissertation
Mathematics and Physics' master's degree dissertation on discrete time homogeneous Markov chains.
Markov chains are a mathematical area which encompasses, to name a few, probability, inference, linear
algebra, gaphs or algorithms theory (since discrete markov chains can be simulated in a computer). All of
the aforementioned conditions make them an interesting study from both the mathematical and computer science
viewpoint. This work constitutes a review of theoretical concepts and improvements for
[markovchain](https://github.com/spedygiorgio/markovchain) package based on that review.
## Configuration for Org mode
In Emacs, we should have something like this in its configuration file to be able to
compile the Org's document:
```
(require 'ox-latex)
(with-eval-after-load "ox-latex"
(add-to-list 'org-latex-classes
'("scrreprt" "\\documentclass{scrreprt}"
("\\chapter{%s}" . "\\chapter*{%s}")
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}"))))
```