diff --git a/cal_tools/cal_tools/cal_tools.py b/cal_tools/cal_tools/cal_tools.py
index 8f17da6f836779ce2fc72f62275eaca1411a6c45..0dbd0992f17083dece7a69e13e811f869c1d1253 100644
--- a/cal_tools/cal_tools/cal_tools.py
+++ b/cal_tools/cal_tools/cal_tools.py
@@ -35,13 +35,16 @@ def combine_report(run_path, calibration):
                     
                 with open("{}/{}.rst".format(sphinx_path, group), "a") as gfile:
                     if conc_param != "None":
-                        title = "Parameter {}".format(conc_param)
+                        title = "{} - Parameter {}".format(calibration, conc_param)
                         gfile.write(title + "\n")
                         gfile.write( "=" *len (title) + "\n")
                         gfile.write("\n")
                     with open("{}/{}".format(run_path, entry), "r") as ifile:
                         for line in ifile.readlines():
-                            gfile.write(line)
+                            if conc_param == "None":
+                                gfile.write(line)
+                            elif " ".join(calibration.split()) != " ".join(line.split()):
+                                gfile.write(line)
                     gfile.write("\n\n")
         if isdir("{}/{}".format(run_path, entry)):
             shutil.copytree("{}/{}".format(run_path, entry), "{}/{}".format(sphinx_path, entry))
diff --git a/docs/source/conf.py b/docs/source/conf.py
index e7504aad11b7b322ab4da2ed4ff8f004ca724334..3dedb841bc822aaa2274c81dc8d463ce8d785da5 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -269,7 +269,7 @@ latex_elements = {
      # Latex figure (float) alignment
      #
      # 'figure_align': 'htbp',
-    'extraclassoptions': 'openany',
+    'extraclassoptions': 'openany, oneside',
 }
 
 # Grouping the document tree into LaTeX files. List of tuples
@@ -277,7 +277,7 @@ latex_elements = {
 #  author, documentclass [howto, manual, or own class]).
 latex_documents = [
     (master_doc, 'EuropeanXFELOfflineCalibration.tex', 'European XFEL Offline Calibration Documentation',
-     'The European XFEL Detector Group', 'manual'),
+     'The European XFEL Detector Group', 'manual', True),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of
diff --git a/notebooks/Tutorial/calversion.ipynb b/notebooks/Tutorial/calversion.ipynb
index 14933bab4ff9399154c657de68c43ae2f98dac2e..7f81d1b26540b4cf1f9c3ecbff0d362556c57d5c 100644
--- a/notebooks/Tutorial/calversion.ipynb
+++ b/notebooks/Tutorial/calversion.ipynb
@@ -6,7 +6,9 @@
    "source": [
     "# Tutorial Calculation #\n",
     "\n",
-    "Author: Astrid Muennich, Version 0.1\n",
+    "Author: Astrid Muennich\n",
+    "\n",
+    "Version: 0.1\n",
     "\n",
     "A small example how to adapt a notebook to run with the offline calibration package \"pycalibation\".\n",
     "\n",
diff --git a/xfel_calibrate/notebooks.py b/xfel_calibrate/notebooks.py
index 1b2d7ae1d784782f28b2e835dafec39fcebff63f..09f6e6f76a94dcbadee4fcd9c8ba0f8bba772527 100644
--- a/xfel_calibrate/notebooks.py
+++ b/xfel_calibrate/notebooks.py
@@ -96,7 +96,7 @@ notebooks = {
                                "notebook": "notebooks/Tutorial/calversion.ipynb",
                                "concurrency": {"parameter": "random_seed",
                                                "default concurrency": None,
-                                               "cluster cores": 32},
+                                               "cluster cores": 4},
                                },
                       },		
             }