1

I want to add Orcid ID in Latex article. I have tried several methods that are used for other documentclasses, but none of them worked for me.

tyMind
  • 11

1 Answers1

3

If you have a very up-to-date TeX installation, you can use the orcidlink package.

\documentclass{article}
\usepackage{orcidlink}
\begin{document}
\orcidlink{https://orcid.org} is an ORCID link.
\end{document}

enter image description here

Otherwise you can use this answer, which it is based on.

  • The first method does not compile in my Overleaf account. The second method I tried previously, but it didn't run correctly. Maybe I should try again. – tyMind Nov 28 '20 at 16:21
  • 1
    @tyMind Unfortunately, Overleaf is the very opposite of an up-to-date TeX installation. As I do not know what the second method is I can't say much. –  Nov 28 '20 at 16:22
  • 1
    @tyMind Overleaf currently runs TeX Live 2020 but for stability and continuity reasons, doesn't update packages between TeX Live releases. The solution is to fetch the orcidlink.sty file from the maintainer's GitHub repository, place it in your project Overleaf project's folder, and then your document should process with no trouble. – LaTeXereXeTaL Nov 28 '20 at 17:09
  • @tyMind The GitHub repository is linked in the comments under the answer that I linked to. –  Nov 28 '20 at 17:15
  • Thank you. I tried the method written in that Github link, but I got errors. When I write this: \author{Wow wow, \orcidlink{0000-0000-0000-0000} } I got an error message, which says: Use of \author doesn't match its definition. – tyMind Nov 28 '20 at 17:36
  • @tyMind I cannot reproduce this error. (This whole thread is also a very interesting sociology experiment. The link I added to the answer got meanwhile shared by no less than three other users. Rather than reading what other say it is much better to just repeat things. And then your error without any document or context...) –  Nov 28 '20 at 17:41