[Tex/LaTex] custom horizontal space between entries and their corresponding labels in bibliography

bibliographiesindentation

I would like to define the horizontal space between entries and their corresponding labels in my .bst bibliography, obtained with makebst.
I tried with:

\newlength\biblabelsep
\setlength{\biblabelsep}{0.7cm}

but it doesn't work.

Could someone suggest me a solution?

Best Answer

Something like this should work (type it in the preamble):

\usepackage{etoolbox}
\patchcmd{\thebibliography}{\advance\leftmargin\labelsep}
  {\labelsep=0.7cm \advance\leftmargin\labelsep}{}{}