summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/elteikthesis/settings.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/elteikthesis/settings.tex')
-rw-r--r--macros/latex/contrib/elteikthesis/settings.tex16
1 files changed, 16 insertions, 0 deletions
diff --git a/macros/latex/contrib/elteikthesis/settings.tex b/macros/latex/contrib/elteikthesis/settings.tex
new file mode 100644
index 0000000000..d2040f9d24
--- /dev/null
+++ b/macros/latex/contrib/elteikthesis/settings.tex
@@ -0,0 +1,16 @@
+% Lábjegyzet folytonos számozása fejezetek között
+% Continuous counting of footnotes among chapters
+\counterwithout{footnote}{chapter}
+
+% Tartalomjegyzék oldalszámozásának rejtése
+% Hide page numbering of ToC
+\newcounter{conpageno}
+\let\oldtableofcontents\tableofcontents
+\renewcommand{\tableofcontents}{
+ \pagenumbering{gobble}
+ \oldtableofcontents
+ \cleardoublepage
+ \setcounter{conpageno}{\value{page}}
+ \pagenumbering{arabic}
+ \setcounter{page}{\value{conpageno}}
+}