dear experts!
My setting is: XeLaTeX compiler, biblatex package for bibliography and document class is extarticle.
I`m trying to achieve this style of indentation in my bibliography list:
As you can see, I need the first line to be indented (I have solution for this), while the other lines should not be indented. I tried solution from this topic...
...but that doesn't helped me. I don't know what is the problem with that solution.
Here is my .tex code:
\documentclass[a4paper,14pt]{extarticle}
\usepackage[sorting=none]{biblatex} %Imports biblatex package
\usepackage{enumitem}
\addbibresource{sample.bib} %Import the bibliography file
\DeclareFieldFormat{labelnumberwidth}{\hspace{9mm}#1.\hspace{-7pt}}
\setlength\bibitemsep{0mm}
\makeatletter
\renewenvironment{thebibliography}[1]
{\chapter*{\bibname}%
\setbox2\hbox{@biblabel{#1}}
@mkboth{\MakeUppercase\bibname}{\MakeUppercase\bibname}%
\begin{enumerate}[itemindent=!,leftmargin=0pt,label={@biblabel{@arabic\c@enumiv}\setbox2\hbox{@biblabel{@arabic\c@enumiv}}\hspace{\labelwidth}\hspace{-1mm}},labelwidth=1mm]
\usecounter{enumiv}%
\sloppy
\clubpenalty4000
@clubpenalty \clubpenalty
\widowpenalty4000%
\sfcode\.\@m} {\def\@noitemerr {\@latex@warning{Emptythebibliography' environment}}%
\end{enumerate}}
\makeatother
\begin{document}
Lets put some links in text. For example \cite{LINK1}. Secondly, this is another link \cite{LINK2}.
\printbibliography %Prints bibliography
\end{document}
And my .bib file is like:
@misc{LINK1,
note = "A. J. Krasznahorkay et al. Observation of anomalous internal pair creation in $\mathrm{^8Be}$: a possible indication of a light, neutral boson. Phys. Rev. Lett. PRL 116, 042501 (2016)"
}
@misc{LINK2,
note = "George D. Greenwade The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN}) (2013)"
}
Could you please suggest any other solutions for my goal or propose some problems that I`ve probably missed?

