diff --git a/README.md b/README.md
index 395f91f48e5d164ac0934cb7b2ad11cff4116bfa..552d9f8ba416b47e495df1ca36b0cd4cf9dbb7ab 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ The file `cs101report1.py` is just an ordinary, non-obfuscated file which they c
 | | | |_ __  _| |_| |  \/_ __ __ _  __| | ___ 
 | | | | '_ \| | __| | __| '__/ _` |/ _` |/ _ \
 | |_| | | | | | |_| |_\ \ | | (_| | (_| |  __/
- \___/|_| |_|_|\__|\____/_|  \__,_|\__,_|\___| v0.0.3, started: 07/09/2021 00:38:16
+ \___/|_| |_|_|\__|\____/_|  \__,_|\__,_|\___| v0.0.3, started: 07/09/2021 00:42:25
 
 Week 4: Looping (use --help for options)
 Question 1: Test the cluster analysis method                                                                            
@@ -82,7 +82,7 @@ Question 4: Test the fermentation rate question
  * q4.4) fermentationRate([20.1, 19.3, 1.1, 18.2, 19.7, ...], 18.2, 20) = 19.500 ?..................................PASS
  * q4)   Total.................................................................................................... 10/10
  
-Total points at 00:38:16 (0 minutes, 0 seconds)....................................................................40/40
+Total points at 00:42:25 (0 minutes, 0 seconds)....................................................................40/40
 Provisional evaluation
 ---------  -----
 q1) Total  10/10
@@ -171,5 +171,13 @@ Please contact me and we can discuss your specific concerns.
 
 # Citing
 ```bibtex
-
+@online{unitgrade,
+	title={Unitgrade (0.0.3): \texttt{pip install unitgrade}},
+	url={https://lab.compute.dtu.dk/tuhe/unitgrade},
+	urldate = {2021-09-07}, 
+	month={9},
+	publisher={Technical University of Denmark (DTU)},
+	author={Tue Herlau},
+	year={2021},
+}
 ```
\ No newline at end of file
diff --git a/docs/mkdocs.py b/docs/mkdocs.py
index 4c71730e9bc0c077c697cd8c495ad6f99d365564..589d74af2967a90283a6931e8c33e26b31661cc2 100644
--- a/docs/mkdocs.py
+++ b/docs/mkdocs.py
@@ -5,7 +5,7 @@ import subprocess
 
 if __name__ == "__main__":
     from jinjafy.bibliography_maker import make_bibliography
-    make_bibliography("../setup.py", "./")
+    bibtex = make_bibliography("../setup.py", "./")
 
 
     out = subprocess.check_output("python --version").decode("utf-8")
@@ -16,7 +16,7 @@ if __name__ == "__main__":
     out = out.replace("[0m", "")
 
     env = jinja2.Environment()
-    data = {'out': out}
+    data = {'out': out, 'bibtex': bibtex}
     with open('README.jinja.md', 'r') as f:
         output = env.from_string(f.read()).render(data)