aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-10-07 15:06:38 +0200
committerNao Pross <np@0hm.ch>2021-10-07 15:06:38 +0200
commit48025d54aac60dc04b9df8fd0397a29663885c6b (patch)
treee219d447fc0b579219ac2eed8d512d5645c07796 /doc
parentDelete PDF (diff)
downloadFading-48025d54aac60dc04b9df8fd0397a29663885c6b.tar.gz
Fading-48025d54aac60dc04b9df8fd0397a29663885c6b.zip
Set up and create bibliography
Diffstat (limited to 'doc')
-rw-r--r--doc/thesis/Fading.bib50
-rw-r--r--doc/thesis/Fading.tex31
-rw-r--r--doc/thesis/Makefile13
3 files changed, 83 insertions, 11 deletions
diff --git a/doc/thesis/Fading.bib b/doc/thesis/Fading.bib
new file mode 100644
index 0000000..64cbcea
--- /dev/null
+++ b/doc/thesis/Fading.bib
@@ -0,0 +1,50 @@
+% vim: set tw=2 sw=2 noet:
+% If you have the DOI of the article, this website can neatly convert it for you
+% https://www.bibtex.com/c/doi-to-bibtex-converter/
+
+@article{Alimohammad2009,
+ title = "Compact Rayleigh and Rician fading simulator based on random walk processes",
+ author = "Alimohammad, A and Fard, S F and Cockburn, B F and Schlegel, C",
+ journal = "IET Commun.",
+ publisher = "Institution of Engineering and Technology (IET)",
+ volume = 3,
+ number = 8,
+ pages = "1333",
+ year = 2009,
+ language = "en"
+}
+
+@inproceedings{Xiao2004,
+ title = "Statistical simulation models for Rayleigh and Rician fading",
+ booktitle = "{IEEE} International Conference on Communications, 2003. {ICC} '03",
+ author = "Xiao, Chengshan and Zheng, Y R and Beaulieu, N C",
+ publisher = "IEEE",
+ year = 2004,
+ conference = "IEEE International Conference on Communications",
+ location = "Anchorage, AK, USA"
+}
+
+@inproceedings{Tidal,
+ author = "Macmillan, Alex and Marina, Mahesh K. and Triana, Jhair Tocancipa",
+ booktitle = "2010 INFOCOM IEEE Conference on Computer Communications Workshops",
+ title = "Slow Frequency Hopping for Mitigating Tidal Fading on Rural Long Distance Over-Water Wireless Links",
+ year = 2010,
+ pages = "1-5",
+ doi = "10.1109/INFCOMW.2010.5466612"
+}
+
+@book{Griffith,
+ title = "Introduction to Electrodynamics Fourth Edition",
+ author = "Griffiths, David J.",
+ year = 2017,
+ publisher = "Cambridge University Press; 4th edition",
+ isbn = "978-1108420419"
+}
+
+@misc{Messier,
+ title = "Wireless Communications: Small Scale Fading",
+ author = "Prof. Geoffrey Messier",
+ year = 2018,
+ publisher = "YouTube",
+ url = "https://www.youtube.com/watch?v=4ibjrRzvJ5E&list=PL7sWxFnBVJLXsvsLzMXT2Fk4ZPD7BJTBX&index=3"
+}
diff --git a/doc/thesis/Fading.tex b/doc/thesis/Fading.tex
index a7ed8d5..e913fcf 100644
--- a/doc/thesis/Fading.tex
+++ b/doc/thesis/Fading.tex
@@ -9,24 +9,39 @@
BCOR = 5mm, paper = a4, fontsize = 11pt
]{scrreprt}
+%% Custom packages
\usepackage{tex/docmacros}
+%% Language configuration
+\usepackage{polyglossia}
+
+%% Links
\usepackage{hyperref}
+\hypersetup{
+ colorlinks = true
+}
+
+%% Citations
+\usepackage[
+ backend = biber,
+ style = ieee,
+]{biblatex}
+
+\addbibresource{Fading.bib}
\begin{document}
- % stuff before
- \hypersetup{pageanchor = false}
- % \include{tex/titlepage}
- \begin{abstract}
- %% TODO
- \end{abstract}
+ \hypersetup{pageanchor = false}
+ %% TODO: titlepage
\cleardoublepage
\pagenumbering{roman}
- % actual content
+ %% TODO: abstract
+ % \begin{abstract}
+ % \end{abstract}
+
\hypersetup{pageanchor = true}
\pagenumbering{arabic}
\setcounter{page}{1}
@@ -36,6 +51,6 @@
\include{chapters/implementation}
\include{chapters/conclusions}
- % TODO: stuff after
+ \printbibliography
\end{document}
diff --git a/doc/thesis/Makefile b/doc/thesis/Makefile
index 84d4a45..e5315de 100644
--- a/doc/thesis/Makefile
+++ b/doc/thesis/Makefile
@@ -1,7 +1,9 @@
-TEX := pdflatex
+TEX := xelatex
TEXARGS := -halt-on-error -interaction=nonstopmode
-SOURCES := Fading.tex \
+SOURCES := \
+ Fading.tex \
+ Fading.bib \
tex/classicthesis.sty \
tex/classicthesis-config.tex \
\
@@ -27,7 +29,8 @@ all: $(PDF)
%.pdf: %.tex $(SOURCES)
$(TEX) $(TEXARGS) $<
- # TODO: makeindex and stuff
+ # TODO: makeindex
+ biber $(basename $(MAIN))
$(TEX) $(TEXARGS) $<
.PHONY: clean cleanall
@@ -38,3 +41,7 @@ clean:
cleanall: clean
@rm -vf $(PDF)
+
+.PHONY: continuous
+continuous:
+ ls $(SOURCES) | entr -d make