From aac612af1b6e369915903e0deab642552b2e03da Mon Sep 17 00:00:00 2001
From: Philipp Koerner <p.koerner@uni-duesseldorf.de>
Date: Wed, 31 May 2023 15:13:40 +0200
Subject: [PATCH] Problem: page style of listoffigures etc. is not consistent
 with rest of thesis

Solution: add more \thispagestyle{headings} after calling \listofxyz
---
 thesis.tex | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/thesis.tex b/thesis.tex
index 367fccc..fddacc5 100644
--- a/thesis.tex
+++ b/thesis.tex
@@ -160,15 +160,15 @@
 \backmatter
 
 %% Listings of figures, tables, etc. Delete what is not needed.
-\listoffigures
+\listoffigures\thispagestyle{headings}
 
-\listoftables
+\listoftables\thispagestyle{headings}
 
 % Algorithms
-\listofalgorithms
+\listofalgorithms\thispagestyle{headings}
 
 % Code Listings
-\lstlistoflistings
+\lstlistoflistings\thispagestyle{headings}
 
 \clearpage
 \bibliography{references}
-- 
GitLab