I have this in my preamble so that \autocite makes footnotes:
\usepackage[backend=biber, style=authoryear, autocite=footnote]{biblatex}
The problem comes when I want to make a regular footnote to explain something. Regular footnotes and footnotes for citations use the same numbering so it is confusing for the reader. How can I use different numbering for regular footnotes and footcites? Or how do I differentiate between these types of footnotes?
Minimal working example with bibliography:
\documentclass{article}
\usepackage[style=authoryear-comp, autocite=footnote]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{key,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\begin{document}
foo\autocite{key}
bar\footnote{Explaining text}
\printbibliography
\end{document}

\renewcommand*{\thefootnote}{\alph{footnote}}(letters) or\renewcommand*{\thefootnote}{\fnsymbol{footnote}}(symbols). Please also extend your code snippet to a full minimal working example (MWE) – leandriis Jan 02 '18 at 19:07manyfoot– Schweinebacke Jan 02 '18 at 19:08manyfoota try, as already recommended by Schweinebacke. You can then influence the numbering scheme offootcitesandfootnotesseparately by commands similar to the ones in my first comment. – leandriis Jan 02 '18 at 20:18