I've searched the site, and ended up using footmisc with moderncv to use footnotes, but the footnotes start at 0 ... not 1. I would like something like a dagger, but none of those solutions on the site worked. At the very least, I'd like it to start at 1.
Here is a minimal example:
\documentclass[10pt,a4paper,sans]{moderncv} % possible options include font size ('10pt', '11pt' and '12pt'), paper size ('a4paper', 'letterpaper', 'a5paper', 'legalpaper', 'executivepaper' and 'landscape') and font family ('sans' and 'roman')
\renewcommand{\familydefault}{\sfdefault} % to set the default font; use '\sfdefault' for the default sans serif font, '\rmdefault' for the default roman one, or any tex font name
% modern themes
\moderncvstyle{banking} % style options are 'casual' (default), 'classic', 'oldstyle' and 'banking'
\moderncvcolor{black} % color options 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black'
% character encoding
\usepackage[utf8]{inputenc}
% adjust the page margins
\usepackage[margin=0.63in]{geometry}
\setlength{\footskip}{5pt}
\usepackage{import}
\nopagenumbers{}
% personal data
\name{}{}
\phone[mobile]{}
\email{}
\social{}
\homepage{}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
\usepackage{footmisc}
\begin{document}
\cventry{}{}{}{}{}
{ \textbf{Relevant Courses Completed by Summer 2025:} Algorithms and Complexity\footref{class_disclaimer}, Programming Languages\footref{class_disclaimer}, Computer Networking, Real Analysis, Abstract Algebra\footref{class_disclaimer}, Digital Circuit Design \& Implementation, Compiler Construction, Probability Theory, Computer Security
}
\enlargethispage{\footskip}
\footnotetext{\label{class_disclaimer}Enrolled Fall 2025}
\end{document}


\stepcounter{footnote}and\renewcommand{\thefootnote}{\fnsymbol{footnote}}– Stephen Jun 10 '23 at 02:09\footnoteor\footnotemarkincrement the footnote counter (using\refstepcounter). One wonders what the\labelis hooking up to.. – John Kormylo Jun 10 '23 at 02:29\label? – user129393192 Jun 10 '23 at 05:22\setcounter{#}before a\footnotetext{\label{}}whose symbol I wanted to be different than a prior, and referencing with\footref{label}– user129393192 Jun 10 '23 at 05:34\footnotetextsets\@currentlabelafter all, which is needed when the footnote number is passed as an optional argument.. – John Kormylo Jun 11 '23 at 00:50