I have the following table, which I still keep filling. I would like to add footnotes to several places. For instance, for rows 2 (207.09) and 3 (300.00) of the Nonlinear column, I want to add the same footnote (say note1), and for rows 4 (600.00) and 5 (600.00) of the same column, I want another footnote (say note2). Also, I would prefer customizable footnote symbols like *, +, etc.
I tried several methods that were readily given as answers. Some solutions include threeparttable and scrextend packages. I also tried others, but they did not work (got errors) probably because of tabular*.
\documentclass[review]{elsarticle}
\usepackage[colorlinks]{hyperref}
\usepackage{xcolor}
\usepackage{lineno}
\usepackage{amsmath,amsthm,amssymb,enumitem,nccmath}
\usepackage{graphicx,geometry,tabularx,tabulary}
\usepackage{booktabs,mathtools,multirow,relsize,subfig,mwe}
\usepackage{newtxmath}
\usepackage[ruled,vlined]{algorithm2e}
\usepackage{threeparttable}
\begin{table}
\caption{Solution statistics for computational experiments.}\label[tab]{comp_res}
{\begin{tabular*}{\textwidth}{c @{\extracolsep{\fill}} cccccccc}
\toprule
\multirow{2}{*}{$|\setI|$} & \multirow{2}{*}{$|\setK|$} & \multirow{2}{*}{Instances} & \multicolumn{3}{c}{Average Gap} & \multicolumn{3}{c}{Average Time (s)} \\ \cline{4-9}
& & & \multicolumn{1}{c}{Cut} & \multicolumn{1}{c}{User cut} & \multicolumn{1}{c}{Nonlinear} & \multicolumn{1}{c}{Cut} & \multicolumn{1}{c}{User cut} & \multicolumn{1}{c}{Nonlinear} \\
\midrule
\multirow{6}{*}{40} & 5 & 50 & $3.7\times 10^{-5}$ & $2.0\times 10^{-5}$ & $3.4\times 10^{-5}$ & 15.06 & 14.04 & 23.87 \\
& 10 & 25 & $8.8\times 10^{-5}$ & $5.9\times 10^{-5}$ & $2.5\times 10^{-2}$ & 19.10 & 26.04 & 207.09 \\
& 15 & 10 & $9.4\times 10^{-5}$ & $6.5\times 10^{-5}$ & $7.6\times 10^{-2}$ & 28.35 & 74.89 & 300.00 \\
& 20 & 5 & $1.1\times 10^{-4}$ & $2.2\times 10^{-5}$ & $11.9\times 10^{-2}$ & 112.9 & 464.6 & 600.00 \\
& 25 & 5 & $2.2\times 10^{-4}$ & $9.1\times 10^{-5}$ & $11.2\times 10^{-2}$ & 123.7 & 314.6 & 600.00 \\
\bottomrule
\end{tabular*}}
\end{table}
\end{document}

threeparttablexand itsThreePartTable&TableNotesenvironments, which use a slightly different syntax. – Bernard Sep 27 '20 at 16:39