liantze / AltaCV

Yet another alternative curriculum vitae/résumé class with LaTeX
Other
1.29k stars 334 forks source link

Author highlight in publication section #116

Open gVallverdu opened 3 months ago

gVallverdu commented 3 months ago

Hi

I tried to use the included option that turn bold author names in \mynames list. But it seems it does not work. I did it on your sample.tex example.

I tried both with xelatex and pdflatex. I ran pdflated; biber; pdflatex.

Is a special compilation option needed or a minimal texlive version ?

gVallverdu commented 3 months ago

In case other enter in the same issue, here are some remarks:

On another hand, if you want, I add the following macro to the class to include "project" without location but with the possibility to say your position/role in the project:

\newcommand{\cvRoleMarker}{\faUsers}
\newcommand{\rolename}{role}

...

\newcommand{\cvproject}[3]{%
  {\large\color{emphasis}#1}
  \normalsize
  \qquad%
  \ifstrequal{#2}{}{}{%
    {\small%
      \BeginAccSupp{method=pdfstringdef,ActualText={\datename:}}\cvDateMarker\EndAccSupp{}%
      ~#2%
    }}%
  \qquad%
  \ifstrequal{#3}{}{}{%
    {\small%
      \BeginAccSupp{method=pdfstringdef,ActualText={\rolename:}}\cvRoleMarker\EndAccSupp{}%
        ~#3%
    }}\par
  \medskip\normalsize
}