I read this answer and I still have footnotes that reset by each new page Continuous footnote numbering
My preambel looks like this:
%% Footnotes
\usepackage{chngcntr}
\counterwithout{footnote}{page}
\deffootnote{1.5em}{1em}{\makebox[1.5em][l]{\thefootnotemark}}
\addtolength{\skip\footins}{\baselineskip}
\setlength{\dimen\footins}{10\baselineskip}
\interfootnotelinepenalty=10000
Maybe this helps too:
\usepackage[
automark,
nouppercase,
]{scrpage2}
\renewcommand*{\chaptermarkformat}{}
\IfElseChapterDefined{
\pagestyle{scrheadings}
}{
\pagestyle{scrplain}
}
\clearscrheadings
\clearscrplain
\IfElseChapterDefined{
\automark[chapter]{chapter}
}{
\automark[subsection]{section}
}
\IfElseChapterDefined{
\ihead{\headmark}
\ohead{\pagemark}
}{
}
\IfChapterDefined{
\setheadsepline{0.6pt}[\color{rgb:black,100}]
%\setfootsepline{0.6pt}[\color{rgb:black,100}]
}
Please help.I am new to Latex
\counterwithout{footnote}{chapter}not{page}I think, as in the question you linked to. – Alan Munn Aug 31 '18 at 16:54