Closed samvanstroud closed 3 months ago
It might also be nice to have the option to hide the link but make the publication title clickable instead
Thank you! This has been addressed in #128. It will be fixed in v1.13
(I plan to release it today.)
It might also be nice to have the option to hide the link but make the publication title clickable instead
This can be achieved by using Markdown links as shown below:
- title: [This is a title](https://example.com)
...
Great thanks! Apologies for the noise!
Although for your second suggestion I would prefer a configuration option. It would be much cleaner on the yaml side and also would avoid mixing up DOIs and URLs if a DOI field is defined. It would also be nice to have the abilty to display the external link icon next to the publication title. What do you think?
Although for your second suggestion I would prefer a configuration option.
I wouldn't say I like using configuration options because they increase the size of the templates and make tests even more difficult. Even the 'url' field was not properly tested, as this issue demonstrates.
Of course, I always prioritized the user experience over development issues; therefore, in v1.9, I took a new approach to allow users to tweak their entries: I gave the users complete control of the templates. You can quickly achieve what you want by tweaking the PublicationEntry.j2.tex
file that comes from the rendercv new
command (see here.) Overriding built-in themes is described here.
It would also be nice to have the abilty to display the external link icon next to the publication title.
This can be achieved with a blank Markdown link:
- title: This is a title [](https://example.com)
...
Thanks for the explaination and solutions!
Describe the bug When adding the field
url
to aPublicationEntry
, no URL is displayed. I would expect to see a hyperlinked URL here, similar to when using a DOI. Ifdisable_external_link_icons: true
, then the link dissappears entirely.To Reproduce
Screenshots