-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List of Publications using BibTeX source #23
base: master
Are you sure you want to change the base?
Conversation
This feature would be awesome! |
The bibliography part of the friggeri cv template broke with the last update of Related: http://latex-community.org/forum/viewtopic.php?f=62&t=27239 |
Fixed the issue caused by changes in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it will make more sense if these commits are squashed into one. @aminmkhan
Nice addition, folks! Any idea on how to match the Publications font to the rest of the document? |
@aminmkhan, thank you very much. Haven't used the |
Any way to get hyperlinks to the urls? |
@andrewcassidy One quick workaround could be to use the Better solution would be to play around with |
Thanks @SiggiSmara. For now you can push your changes to a pull request similar to aminmkhan#2, and we'll see. |
Cool @aminmkhan . Pushed the changes to you. First time for me to push from one fork to another so let me know if I managed to make a mistake along the way. |
@SiggiSmara can you kindly share an example of how you create a publication entry? |
Sorry @omrysendik I missed your comment. Are you still having trouble? In the examples/cv folder you should see a bibtex file (references.bib) and a publications.tex file. The bibtex file contains the reference information itself while the publications.tex file imports the references that you want to appear. |
@omrysendik You can check the Usage section in |
Thanks for these commits. I made my publication section work based on the latest commit in this thread. There is one thing I cannot figure out is how to use first initials instead of full first names. Based on some search, it seems I have to use
However, the changes have completely no effect (I am using sharelatex.com). Additionally, I tried putting the options in different places; however, my publications section seems to ignore it. How I can use first initials instead of full first names? I would appreciate any help |
@syoh the |
@syoh Your changes look really elegant. Can you commit and push them online? EDIT: Never mind. See aminmkhan#6 |
Is there a way to format an author in bold? Also a way to number publications? |
@ShanSabri You can try numerical, though there could be some issues. You'll have to play with custom code to change formatting for the author. |
@donadviser Doesnt give me the same output as your screenshot. I dont get numbers and the journal appears in the new line. Would you mind sharing your cls file? |
@avalada, can you show what it looks like? |
@avalada Let me know if the below will fix your publications %------------------------------------------------------------------------------- % Print the labelnumber as the total number of entries in the % Avoid splitting entries across page break (only for 3 or fewer lines) \DeclareBibliographyDriver{article}{% |
@donadviser almost! Some of the entries have an indentation as in the sceeenshot, any idea how to remove this ident? Is there also a way to set the font size of the numbering? |
@avalada and @donadviser That's great to see it working, if you want you can submit your changes as pull request either here, or at: https://github.com/aminmkhan/Awesome-CV/pulls Thank you. |
Please do submit here, or update yours if merged in your repo @aminmkhan. This is a very long-standing PR but seems like an excellent addition, I do mean to review properly with a view to merging soon. Thanks. |
- Generate publications section by running biber with xelatex - Add bibliography support in cls file - Add sample bib and tex files
f27b669
to
67c15a8
Compare
Thank a lot @OJFord. I have now updated this pull request, with fresh rebase from Ready to review and land this! 🚀 I have moved some of the suggestions and conversations as issues to aminmkhan#11, aminmkhan#12, aminmkhan#13, aminmkhan#14, and will update in future pull requests. |
Just checking @OJFord, can we proceed with the review and merging this PR? Thanks! |
This commit simply pulls the patch from posquit0#23
This commit simply pulls the patch from posquit0#23
Awesome work! Looking forward to being merged! |
% For publications from bibtex, add to cv/references.bib and uncomment below | ||
% \input{cv/publications.tex} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it'd be good to have the example complete - so there's an example of rendered result, and an example of what references.bib should actually look like.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes @OJFord I wanted to update the example, but couldn't decide since it doesn't make much sense to update the main example included in preview
Also putting in fictitious bibliography entries to the awesome original creator's CV included in preview wouldn't look nice.
As an alternative, should we upload another example? e.g.
https://github.com/posquit0/Awesome-CV/blob/master/examples/resume-with-publications.pdf
Apart from that I just want to test a couple of CVs myself and I think good to merge. 👍 Thanks! |
|
||
```bash | ||
$ xelatex {your-cv}.tex | ||
$ biber {your-cv} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a small question about biber: what is the motivation to use biber instead of bibtex?
When I test this commit today (20230729), I found that the (latest after executing tlmgr update --self --all
) texlive 2023 installed biber package but there is no biber binary, for which I had some troubles with this awesome feature.
Is it possible to use bibtex instead of biber cause the former is a common choice to handle bibliography?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your kind explanation. You've done an awesome job.
I have tested this pr and believe that it is ready to be merged.👍 |
Any news on merging this @OJFord? |
I'm not able to get the bibliography section to work for my CV. I copied the entire Bibliography section from the awesome-cv.cls of @aminmkhan into my awesome-cv.cls (I have made some other formatting edits for my own use) and then added a references.tex file, following the example, and put I'm using TeXStudio on Ubuntu 22.04 with a full and up-to-date texlive installation. The build process I'm using is xelatex -> biber -> xelatex. Any advice for this is greatly appreciated, it's the last section I need to complete. |
@JJGabe you also need to include the |
@aminmkhan Sorry, I should have been clearer. I did include my own BibTex file, which I exported from Zotero as a BetterBibTex, but I renamed it references.bib to match your template. Even when I have compiled the CV once, with the |
@JJGabe Not sure what's happening, perhaps cross-check that the path to bib file is correct, or check the output log of
If still not resolved, perhaps report an issue at aminmkhan/Awesome-CV/issues to follow-up. Thanks. |
@aminmkhan, thanks for the response. I made a couple of changes, including adding an extra Biber compile in my build process (xelatex -> Biber -> Biber -> xelatex) and moving the |
Added support for including publications through BibLaTeX, based on Fancy CV template created by Adrien Friggeri.
Closes #271.