This question led to a new package:
orcidlink
I would like to display the ORCID id in an author list in an IEEEtran pdf, like that:

Is there a standard way to include it in an IEEEtran article with PdfLaTeX? I used two approaches from Is there a standard way to include ORCID in TeX / PDF?, but I failed.
One is to insert the ORCID icon in the author list. I used the blow code:
\author{Ali Al-Obaidi \href{https://orcid.org/0000-0000-0000-0000}{\includegraphics[scale=1]{figures/orcid_16x16.png}}}
where orchid_16x16.png is provided in the link https://orcid.org/trademark-and-id-display-guidelines. But the result is that the icon is not clear enough, even I replaced it with a different size.
The other approach is to use the academicons package, like that:
\usepackage{academicons}
\definecolor{orcidlogocol}{HTML}{A6CE39}
\author{AAA \href{https://orcid.org/0000-0000-0000-0000}{\textcolor{orcidlogocol}{\aiOrcid}}}
However, the result is like that:
And I also got two errors: "Latex Error: Encoding scheme 'TU' unknown" and "Bad character code (59865)". In the latest academicons.sty (see ftp://ftp.dante.de/tex-archive/fonts/academicons/academicons.sty), academicons use the font TU. However, it seems that the compiler PdfLateX cannot support this font.
Thus, is there anyone that knows a standard way to include it in an IEEEtran article with PdfLaTeX? Please help me.



\usepackage{academicons}doesn't work withpdflatex– Milo Aug 11 '18 at 02:25pdflatex? – Amelio Vazquez-Reina May 13 '20 at 16:02\faOrcidand it runs withpdflatex. It can also be made green by{\color{orcidgreen}\faOrcid{}}(you need to define the color first) or similar. An alternative is the new https://www.ctan.org/pkg/orcidlink. – CampanIgnis Nov 22 '20 at 15:33