Skip to content
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

Bibtex list adding an extra "." before the numericlabel #5

Closed
mzaman11 opened this issue Oct 18, 2018 · 3 comments
Closed

Bibtex list adding an extra "." before the numericlabel #5

mzaman11 opened this issue Oct 18, 2018 · 3 comments

Comments

@mzaman11
Copy link

Hello,
I have updated the awesome-cv.cls file and added the "Bibliography" section in the file. In the "style" option, instead of using "verbose", I am using "numeric" option which lists the publication with numeric label.

\RequirePackage[ % BibLaTeX
   sorting=ydnt, % Sorts entries by year (descending order), name, title
   style=numeric,
   labelnumber=true,
   doi=false,
   isbn=true,
   url=false,
   eprint=false,
   backref = false, % include back references in bibliography
   maxcitenames=3, % affects only the citations in the document body
   maxbibnames=99, % affects only the bibliography, pass 99 to print all
   hyperref=true,
   block=space,
   backend=biber % {Options: bibtex, biber}
   ]{biblatex}

The problem is, for some reason, this change adds an extra "." from the second item in the list when I use \printbibliography command:

\cvsection{Publications}
\nocite{*}
\printbibliography[type=inproceedings,heading=subbibliography,title={Conference proceedings}]

Here is the result:

Conference proceedings
[1] ABC
     A.B, A.C, C.A
     Conferece A, 2018
. [2] XYZ
      Y.Z, A.B, M.K
      Another Conferece, 2018
. [3] CYZ
      Some, Authors
      Differenct Conference, 2017

I can't figure out why is there an extra "." appended in the pdf?

@aminmkhan
Copy link
Owner

@mzaman11 This could be caused by the custom code handling formatting of bib entries. You can either dig further into above code for numbered list, or comment it out to have a list of publications without customizations.

@alchem0x2A
Copy link

It seems that there is an extra \newunit at the end of each \DeclareBibliographyDriver definitions. Remove it works in my case

@aminmkhan
Copy link
Owner

Also see posquit0#23 (comment) for a proposed fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants