diff --git a/README.md b/README.md
index dc17e7bab911d385cbc51d2b30d53b58d0f2cf8f..85aca0fee5bf2e94a2865f7caabc07a0bbf67e46 100644
--- a/README.md
+++ b/README.md
@@ -20,12 +20,40 @@ You can import the package using `import slider`.
 
 
 # Use and examples
-Go to an empty directory where you want to start a slideshow. Use the command
+Go to an empty directory where you want to start a slideshow and run the command:
 ```terminal
 python -m slider index.tex
 ```
 This will start a small beamer project and populate it with the (few) necesary files to make the framework work. You can see the 
-generated files in the `/examples/new_project` folder. The main pdf file looks like this:
+generated files in the `/examples/new_project` folder. The main `LaTeX` file looks like this:
+```latex
+ 
+\documentclass[aspectratio=43]{beamer}
+\usepackage{etoolbox}
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+\input{beamer_slider_preamble.tex}
+
+\title{Example slide show}
+\author{Tue Herlau}
+\begin{document}
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame}\osvg{myoverlay} % Use the \osvg{labelname} - tag to create new overlays. Run slider and check the ./osvgs directory for the svg files!
+\title{Slide with an overlay}
+This is some example text!
+\end{frame}
+
+\end{document}
+
+```
+And the generated PDF file looks like this:
+
+![alt text](docs/new_project_nup.png)
 
 
 
diff --git a/docs/build_docs.py b/docs/build_docs.py
index b84ef6aa08bb264525544f4ec2e8bc62dd94f5c0..311b89ac790e1899add22f7cc219660bb72f778a 100644
--- a/docs/build_docs.py
+++ b/docs/build_docs.py
@@ -35,16 +35,10 @@ if __name__ == "__main__":
         pass
 
     my_nup(np + "/index.pdf")
-
     convert.pdf2png(np + "/index.pdf", "./index0.png")
-
-
     output = np +"/index_2up.pdf"
 
 
-
-
-
     data = {}
     with open(np + "/index.tex", 'r') as f:
         data['basic0_tex'] = f.read()
diff --git a/docs/new_project_nup.pdf b/docs/new_project_nup.pdf
index 97d43b3079011acb097f539d136038da2ecd15dc..bc9badfe9cf7cab34304cf294753b7e2f3abb9fd 100644
Binary files a/docs/new_project_nup.pdf and b/docs/new_project_nup.pdf differ
diff --git a/src/slider/__pycache__/convert.cpython-38.pyc b/src/slider/__pycache__/convert.cpython-38.pyc
index 4e06a308e0da5b6b282d8d951d51770f2d7ad255..6e3612de345e28c7903cf3bab83ab37188e124d2 100644
Binary files a/src/slider/__pycache__/convert.cpython-38.pyc and b/src/slider/__pycache__/convert.cpython-38.pyc differ
diff --git a/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc b/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc
index ae2b452cc0b3140c4d2396d1756a4925236e13a9..4e32f664cc6e5b98ddd4125d9db6287fadd798e0 100644
Binary files a/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc and b/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc differ