I am preparing my CV using "moderncv" package. In the package class file, the numbering of the bibliography is defined as follows:
Code: Select all
\newcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}
Any help is appreciated...
Thanks,
Code: Select all
\newcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\renewcommand*\bibliographyitemlabel{\arabic{enumiv}.}
Code: Select all
\makeatletter
\renewcommand*\@biblabel[1]{#1.}
\makeatother
Code: Select all
\renewcommand*\bibliographyitemlabel{\arabic{enumiv}.}
Code: Select all
\makeatletter
\renewcommand*\@biblabel[1]{#1.}
\makeatother
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis