I want to use footnote inside a table and I have a table that looks like this (simplified for brevity):
\documentclass[a4paper]{paper}
\begin{document}
\begin{table}[h]
\centering
\resizebox{\textwidth}{!}{
\begin{tabular}{|*{4}{c|}}
\hline
\multirowcell{3}{Work} & \multirowcell{3}{Language} & \multirowcell{3}{Prime} & \multirowcell{3}{Time (ms)} \\
\hline \hline
Microsoft \footnote{\url{https://github.com/Microsoft/PQCrypto-SIDH}} & C & $2^{372}3^{239} - 1$ & \\ \hline
Cloudflare \footnote{\url{https://github.com/cloudflare/p751sidh}} & Go & $2^{372}3^{239} - 1$ & \\ \hline
\end{tabular}}
\caption{Comparison}
\label{tab:comp}
\end{table}
\end{document}
This shows the footnote numbers, but the footnote text is not appearing at the bottom of the page. I tried some solutions from here, but didn't succeed with anything. Any ideas what the problem might be and how to correct it?


\footnote, hence, is there any way with\foornotemarkto continue from the last used footnote number, instead of manually specifying the footnote number? – pixel Apr 02 '18 at 13:58