I'm using classicthesis.sty and my footnote numbers are not showing.
I do use this command at the beginning of each chapter:
\let\thefootnote\relax\footnotetext{
}
Do you think this is related? How do I show footnote numbers with \footnote{}? Thanks!
According to another post I read here, this should work, but it does not.
\documentclass[parskip=half,10pt,twoside]{scrbook}
\usepackage[
dottedtoc,
floatperchapter,
parts
]{classicthesis}
\usepackage{}
\begin{document}
\chapter{Test}
\vspace{30ex}
\let\thefootnote\relax\footnotetext{something unnumbered}
\newpage
There should be a footnote number here\footnote{test}
\end{document}
Thanks for any suggestions!

\let\thefootnote\relaxcome from and why are you using it? It just switches off footnote numbering globally. – Johannes_B Aug 31 '14 at 16:48\begingroup \let\thefootnote\relax\footnotetext{something unnumbered} \endgroupor better define a command that does that. Gimme a few minutes, i'll eat something and write up a bit more verbose answer. – Johannes_B Aug 31 '14 at 16:59classicthesisprovided some commands and definitions, but either never uses them, commented important stuff out, or set important stuff at the wrong place. Having said that: either useheadinclude, footincludeglobally or set\KOMAoptions{footinclude,headinclude}before loadingclassicthesis. You can also do it afterwards, but then you have to\recalctypeareaas well. – Johannes_B Aug 31 '14 at 17:59