diff --git a/doc.zih.tu-dresden.de/README.md b/doc.zih.tu-dresden.de/README.md
index 47ecffe56f190321e425a07b1474f64406d70dda..59deb6c21696a0920ee07508daed5867ab8a96be 100644
--- a/doc.zih.tu-dresden.de/README.md
+++ b/doc.zih.tu-dresden.de/README.md
@@ -127,7 +127,7 @@ INFO    -  Documentation built in 0.09 seconds
 
 It is crucial to keep your branch synchronized with the upstream repository when you are working
 locally on the documentation. At first, you should add a remote pointing to the official
-documentation. 
+documentation.
 
 ```Shell Session
 ~ git remote add upstream-zih git@gitlab.hrz.tu-chemnitz.de:zih/hpc-compendium/hpc-compendium.git
@@ -139,9 +139,9 @@ whereas *upstream-zih* points to the original documentation repository at GitLab
 ```Shell Session
 $ git remote -v
 origin  git@gitlab.hrz.tu-chemnitz.de:LOGIN/hpc-compendium.git (fetch)
-origin	git@gitlab.hrz.tu-chemnitz.de:LOGIN/hpc-compendium.git (push)
+origin  git@gitlab.hrz.tu-chemnitz.de:LOGIN/hpc-compendium.git (push)
 upstream-zih  git@gitlab.hrz.tu-chemnitz.de:zih/hpc-compendium/hpc-compendium.git (fetch)
-upstream-zih	git@gitlab.hrz.tu-chemnitz.de:zih/hpc-compendium/hpc-compendium.git (push)
+upstream-zih  git@gitlab.hrz.tu-chemnitz.de:zih/hpc-compendium/hpc-compendium.git (push)
 ```
 
 Next, you should synchronize your `main` branch with the upstream.
@@ -303,7 +303,7 @@ changes to make sure your commit passes the CI/CD pipeline.
 
 ### Check Code and Commands
 
-The script `xyz.sh` checks if the code chunks are runnable on a login node. 
+The script `xyz.sh` checks if the code chunks are runnable on a login node.
 It is invoked as follows ...
 
 **TODO:** Implement [Issue #9](#9)
@@ -317,7 +317,7 @@ the second check tests if every markdown file is included in the navigation sect
 The script is invoked and reports as follows
 
 ```Shell Session
-~ sh doc.zih.tu-dresden.de/util/check-no-floating.sh doc.zih.tu-dresden.de 
+~ sh doc.zih.tu-dresden.de/util/check-no-floating.sh doc.zih.tu-dresden.de
 HardwareTaurus.md is not included in nav
 BigDataFrameworksApacheSparkApacheFlinkApacheHadoop.md is not included in nav
 pika.md is not included in nav
@@ -360,17 +360,17 @@ structure.
 1. Do not add large binary files or high resolution images to the repository. See this valuable
    document for [image optimization](https://web.dev/fast/#optimize-your-images).
 
-1. [Admonitions](https://squidfunk.github.io/mkdocs-material/reference/admonitions/) may be 
-actively used, especially for longer code examples, warnings, tips, important information that 
-should be highlighted, etc. Code examples, longer than half screen height should collapsed 
+1. [Admonitions](https://squidfunk.github.io/mkdocs-material/reference/admonitions/) may be
+actively used, especially for longer code examples, warnings, tips, important information that
+should be highlighted, etc. Code examples, longer than half screen height should collapsed
 (and indented):
 
 ??? example
-    ```Bash   
+    ```Bash
     [...]
     # very long example here
     [...]
-    ``` 
+    ```
 
 ### Writing Style
 
@@ -395,36 +395,91 @@ there is a list of conventions w.r.t. spelling and technical wording.
 
 ### Code Blocks and Command Prompts
 
-Showing commands and sample output is an important part of all technical documentation. Thus, some
-rules have to be followed.
+Showing commands and sample output is an important part of all technical documentation. To make
+things as clear for readers as possible and provide a consistent documentation, some rules have to
+be followed.
 
 1. Use ticks to mark code blocks and commands, not italic font.
-
-1. Specify language for code blocks, refer to [highlight.js](https://highlightjs.org/static/demo/)
-    for supported languages.
-
-1. All code blocks and commands should be runnable from a login node.
-
-1. Prompts: It should be clear from the prompt, where the command is run (e.g. Taurus, specific
-   partition or local machine).
-    * ZIH HPC systems in general: `zih$`
-    * Specific kind of node or partition: `tauruslogin$`, `taurus-ml$` `taurus-rome$`etc.
-    * Local machine: `localhost$`
-    * No output: Omit prompt (copy-paste)
-    * With Output: Add prompt (make clear what is the command and what is the output)
+1. Specify language for code blocks ([see below](#code-blocks-and-syntax-highlighting)).
+1. All code blocks and commands should be runnable from a login node or a node within a specific
+   partition (e.g., `ml`).
+1. It should be clear from the prompt, where the command is run (e.g. local machine, login node or
+   specific partition).
+
+#### Prompts
+
+We follow this rules regarding prompts:
+
+| Host/Partition         | Prompt           |
+|------------------------|------------------|
+| Login nodes            | `marie@login$`   |
+| Arbitrary compute node | `marie@compute$` |
+| `haswell` partition    | `marie@haswell$` |
+| `ml` partition         | `marie@ml$`      |
+| `alpha` partition      | `marie@alpha$`   |
+| `alpha` partition      | `marie@alpha$`   |
+| `romeo` partition      | `marie@romeo$`   |
+| `julia` partition      | `marie@julia$`   |
+| Localhost              | `marie@local$`   |
+
+*Remarks:*
+
+* **Always use a prompt**, even there is no output provided for the shown command.
+* Using some magic, the prompt as well as the output is identified and will not be copied!
+* Stick to the [generic user name](#data-privacy-and-generic-user-name) `marie`.
 
 #### Code Blocks and Syntax Highlighting
 
 This project makes use of the extension
 [pymdownx.highlight](https://squidfunk.github.io/mkdocs-material/reference/code-blocks/) for syntax
-highlighting.
+highlighting.  There is a complete list of supported
+[language short codes](https://pygments.org/docs/lexers/).
 
-There is complete list of supported [language short codes](https://pygments.org/docs/lexers/).
-Use the following short codes within this project for consistency:
+For consistency, use the following short codes within this project:
 
-* `{bash}` for shell scripts
-* `{shell-session}` for command lines including prompt
-* `{python}` for Python source code
+`console` for shell session and console:
+
+```` markdown
+```console
+marie@login$ ls
+foo
+bar
+```
+````
+
+`bash` for shell scripts such as jobfiles:
+
+```` markdown
+```bash
+#!/bin/bash
+#SBATCH -N 1
+#SBATCH -t 01:00:00
+#SBATCH -o slurm-%j.out
+
+module load foss
+
+srun a.out
+```
+````
+
+`python` for Python source code:
+
+```` markdown
+```python
+from time import gmtime, strftime
+print(strftime("%Y-%m-%d %H:%M:%S", gmtime()))
+```
+````
+
+`pycon` for Python console:
+
+```` markdown
+```pycon
+>>> from time import gmtime, strftime
+>>> print(strftime("%Y-%m-%d %H:%M:%S", gmtime()))
+2021-08-03 07:20:33
+```
+````
 
 Line numbers can be added via
 
@@ -465,10 +520,10 @@ _Result_:
 ### Data Privacy and Generic User Name
 
 Where possible, replace login, project name and other private data with clearly arbitrary placeholders.
-E.g., use generic login `marie` and project name `p_marie`.
+E.g., use the generic login `marie` and the corresponding project name `p_marie`.
 
-```Shell Session
-taurus$ ls -l
+```console
+marie@login$ ls -l
 drwxr-xr-x   3 marie p_marie      4096 Jan 24  2020 code
 drwxr-xr-x   3 marie p_marie      4096 Feb 12  2020 data
 -rw-rw----   1 marie p_marie      4096 Jan 24  2020 readme.md
@@ -480,7 +535,7 @@ If showing only a snippet of a long output, omissions are marked with `[...]`.
 
 ### Mark Placeholders
 
-Stick to the Unix rules on optional and required arguments, and selection of item sets.
+Stick to the Unix rules on optional and required arguments, and selection of item sets:
 
 * `<required argument or value>`
 * `[optional argument or value]`
diff --git a/doc.zih.tu-dresden.de/docs/software/scorep.md b/doc.zih.tu-dresden.de/docs/software/scorep.md
index 504224d8c69c81c0db890d24e3cd64413895ff8d..eeea99ad110477282ec3897d69d65e800885cda8 100644
--- a/doc.zih.tu-dresden.de/docs/software/scorep.md
+++ b/doc.zih.tu-dresden.de/docs/software/scorep.md
@@ -16,7 +16,7 @@ Only the basic usage is shown in this Wiki. For a comprehensive Score-P user man
 Before using Score-P, set up the correct environment with
 
 ```console
-$ module load Score-P
+marie@login$ module load Score-P
 ```
 
 To make measurements with Score-P, the user's application program needs to be instrumented, i.e., at
@@ -28,8 +28,17 @@ the program.
 
 ## Serial Programs
 
-* original: `ifort a.f90 b.f90 -o myprog`
-* with instrumentation: `scorep ifort a.f90 b.f90 -o myprog`
+Original:
+
+```console
+marie@login$ ifort a.f90 b.f90 -o myprog
+```
+
+With instrumentation:
+
+```console
+marie@login$ scorep ifort a.f90 b.f90 -o myprog
+```
 
 This will instrument user functions (if supported by the compiler) and link the Score-P library.
 
@@ -38,20 +47,47 @@ This will instrument user functions (if supported by the compiler) and link the
 If your MPI implementation uses MPI compilers, Score-P will detect MPI parallelization
 automatically:
 
-* original: `mpicc hello.c -o hello`
-* with instrumentation: `scorep mpicc hello.c -o hello`
+Original:
+
+```console
+marie@login$ mpicc hello.c -o hello
+```
+
+With instrumentation:
+
+```console
+marie@login$ scorep mpicc hello.c -o hello
+```
 
 MPI implementations without own compilers require the user to link the MPI library
 manually. Even in this case, Score-P will detect MPI parallelization automatically:
 
-* original: `icc hello.c -o hello -lmpi`
-* with instrumentation: `scorep icc hello.c -o hello -lmpi`
+Original:
+
+```console
+marie@login$ icc hello.c -o hello -lmpi
+```
+
+With instrumentation:
+
+```console
+marie@login$ scorep icc hello.c -o hello -lmpi
+```
 
 However, if Score-P fails to detect MPI parallelization automatically you can manually select MPI
 instrumentation:
 
-* original: `icc hello.c -o hello -lmpi`
-* with instrumentation: `scorep --mpp=mpi icc hello.c -o hello -lmpi`
+Original:
+
+```console
+marie@login$ icc hello.c -o hello -lmpi
+```
+
+With instrumentation:
+
+```console
+marie@login$ scorep --mpp=mpi icc hello.c -o hello -lmpi
+```
 
 If you want to instrument MPI events only (creates less overhead and smaller trace files) use the
 option `--nocompiler` to disable automatic instrumentation of user functions.
@@ -61,15 +97,33 @@ option `--nocompiler` to disable automatic instrumentation of user functions.
 When Score-P detects OpenMP flags on the command line, OPARI2 is invoked for automatic source code
 instrumentation of OpenMP events:
 
-* original: `ifort -openmp pi.f -o pi`
-* with instrumentation: `scorep ifort -openmp pi.f -o pi`
+Original:
+
+```console
+marie@login$ ifort -openmp pi.f -o pi
+```
+
+With instrumentation:
+
+```console
+marie@login$ scorep ifort -openmp pi.f -o pi
+```
 
 ## Hybrid MPI/OpenMP Parallel Programs
 
 With a combination of the above mentioned approaches, hybrid applications can be instrumented:
 
-* original: `mpif90 -openmp hybrid.F90 -o hybrid`
-* with instrumentation: `scorep mpif90 -openmp hybrid.F90 -o hybrid`
+Original:
+
+```console
+marie@login$ mpif90 -openmp hybrid.F90 -o hybrid
+```
+
+With instrumentation:
+
+```console
+marie@login$ scorep mpif90 -openmp hybrid.F90 -o hybrid
+```
 
 ## Score-P Instrumenter Option Overview
 
diff --git a/doc.zih.tu-dresden.de/docs/software/vampir.md b/doc.zih.tu-dresden.de/docs/software/vampir.md
index b00f7a8d2682ff4319b07c2fc204a0440c63f90a..465d28925302091bf0e0d66156753452c3608912 100644
--- a/doc.zih.tu-dresden.de/docs/software/vampir.md
+++ b/doc.zih.tu-dresden.de/docs/software/vampir.md
@@ -26,7 +26,7 @@ Prior to using Vampir you need to set up the correct environment on one
 the HPC systems with:
 
 ```console
-$ module load Vampir
+marie@login$ module load Vampir
 ```
 
 For members of TU Dresden the Vampir tool is also available as
@@ -37,7 +37,7 @@ Make sure, that compressed display forwarding (e.g., `ssh -YC taurus.hrsk.tu-dre
 enabled. Start the GUI by typing
 
 ```console
-$ vampir
+marie@login$ vampir
 ```
 
 on your command line or by double-clicking the Vampir icon on your personal computer.
@@ -65,27 +65,21 @@ Please be patient and take a look at available resources beforehand.
 
 ### Manual Server Startup
 
-VampirServer is a parallel MPI program, which can also be started manually by typing:
+VampirServer is a parallel MPI program, which should be started by typing:
 
 ```console
-$ vampirserver start
-```
-
-Above automatically allocates its resources via the respective batch system. Use
-
-```console
-$ vampirserver start mpi
+marie@login$ vampirserver start
+Launching VampirServer...
+Submitting slurm 30 minutes job (this might take a while)...
 ```
 
-or
+Above automatically allocates its resources via the respective batch system. If you want to start
+VampirServer without a batch allocation or from inside an interactive allocation, use
 
 ```console
-$ vampirserver start srun
+marie@compute$ vampirserver start srun
 ```
 
-if you want to start vampirserver without batch allocation or inside an interactive allocation. The
-latter is needed whenever you manually take care of the resource allocation by yourself.
-
 After scheduling this job the server prints out the port number it is serving on, like `Listen port:
 30088`.
 
@@ -96,16 +90,16 @@ name* in the *Open Remote* dialog of Vampir.
 {: align="center"}
 
 Please make sure you stop VampirServer after finishing your work with
-the front-end or with
+the front-end (*File* → *Shutdown Server...*) or with
 
 ```console
-$ vampirserver stop
+marie@login$ vampirserver stop
 ```
 
 Type
 
 ```console
-$ vampirserver help
+marie@login$ vampirserver help
 ```
 
 for further information. The [user manual](http://tu-dresden.de/die_tu_dresden/zentrale_einrichtungen/zih/forschung/projekte/vampir/dateien/VampirServer-User-Manual.pdf)
@@ -113,7 +107,7 @@ of VampirServer can be found at `doc/vampirserver-manual.pdf` in the installatio
 Type
 
 ```console
-$ which vampirserver
+marie@login$ which vampirserver
 ```
 
 to find the revision dependent *installation directory*.
@@ -128,33 +122,39 @@ the tunneling to a VampirServer on a compute node.
 Start VampirServer on the ZIH system and wait for its scheduling:
 
 ```console
-$ vampirserver start
-```
-
-and wait for scheduling
-
-```console
+marie@login$ vampirserver start
 Launching VampirServer...
 Submitting slurm 30 minutes job (this might take a while)...
 salloc: Granted job allocation 2753510
 VampirServer 8.1.0 (r8451)
 Licensed to ZIH, TU Dresden
 Running 4 analysis processes... (abort with vampirserver stop 594)
-VampirServer  listens on: taurusi1253:30055
+VampirServer <594> listens on: taurusi1253:30055
 ```
 
-Open a second console on your local desktop and create an ssh tunnel to the compute node with:
+Or choose from an already running VampirServer:
 
 ```console
-$ ssh -L 30000:taurusi1253:30055 taurus.hrsk.tu-dresden.de
+marie@login$ vampirserver list
+594 taurusi1253:30055 [4x, slurm]
+```
+
+Open a second console on your local computer and establish an SSH tunnel to the compute node with:
+
+```console
+marie@local$ ssh -L 30000:taurusi1253:30055 taurus.hrsk.tu-dresden.de
 ```
 
 Now, the port 30000 on your desktop is connected to the VampirServer port 30055 at the compute node
 taurusi1253 of Taurus. Finally, start your local Vampir client and establish a remote connection to
 `localhost`, port 30000 as described in the manual.
 
-Remark: Please substitute the ports given in this example with appropriate numbers and available
-ports.
+```console
+marie@local$ vampir
+```
+
+**Remark:** Please substitute the ports given in this example with appropriate numbers and available
+ports based on the output from `vampirserver start` or `vampirserver list`.
 
 ### Nightly Builds (unstable)