Based on this answer from esdd it is possible to customize the appearance of parnotes globally for a whole document.
However, I would like to customize the parnotes only for single usage in one single table, the rest should remain in standard format.
Minimum Working Example (MWE):
\documentclass{article}
\usepackage{parnotes}
\usepackage{tabularx}
\begin{document}
\begin{table}[htbp]
\begin{tabularx}{\textwidth}{|l|l|l|l|}
\parnoteclear
Bla\parnote{First parnote} & Blub\parnote{Second parnote} & Blab\parnote{Third parnote} & Blob\parnote{Fourth parnote}\\
\end{tabularx}
\parnotes
\end{table}
\end{document}
Screenshot of the result:
Description of the issue:
How can I edit this command to let the parnotes appear in this style:
A: This is the parnote text
(Alphabetic letters instead of numbers, and these letters written in \normalsize\alph font instead of \textsuperscript)
Update:
Subham Soni mentioned to change the deprecated command to \renewcommand{\parnotefmt}[1]{\normalsize} - thanks! But I still don't know how to change the numbering to \alph and how to write the letters in normal text size?


\parnotemarkfmt. Use\theparnotemarkand\parnotecusmarkfmtinstead – subham soni Mar 30 '19 at 10:01\textsuperscript? – Dave Mar 30 '19 at 11:15