biblatex add tag
hola-hula
Following up on this [question](https://stackoverflow.com/questions/62028511/how-can-i-remove-the-labels-in-a-bibliography-list-with-biblatex), here is my question. How can I access each bibliographic item (from **References** section) so that I can put it inside `enumerate`?

Consider the minimal working example:

```

\documentclass{article}
\usepackage[backend=biber,maxbibnames=99,defernumbers=true,sorting=ydnt,giveninits=true,]{biblatex}

\begin{filecontents*}{myreferences.bib}
	@article{sponge1,
		author = {Sponge Bob Squrepants},
		year = {2000},
		title = {No Title},
	}
	
	@article{sponge2,
		author = {Sponge Bob Squrepants and 
			Patrick Star},
		year = {2001},
		title = {No Title Again},
	}
	
\end{filecontents*}
\addbibresource{myreferences.bib}


\begin{document}
	
	%%%%%%% Copied
%	\defbibenvironment{bibliography}
%	{\list
%		{}
%		{%
%			\setlength{\labelwidth}{0pt}%
%			\setlength{\leftmargin}{0pt}%
%			\setlength{\labelsep}{0pt}%
%			\addtolength{\leftmargin}{0pt}%
%			\setlength{\itemsep}{\bibitemsep}%
%			\setlength{\parsep}{\bibparsep}}%
%		\renewcommand*{\makelabel}[1]{##1\hss}}
%	{\endlist}
%	{\item}
%	
	\nocite{*}\printbibliography

	
\end{document}
```
Top Answer
samcarter
The trick with `biblatex` is to let it do the work for you. So instead of trying to manually build the layout you want, I'd use an existing style and tweak things from there.

Version with bullet:
```
\documentclass{article}

\usepackage[style=alphabetic]{biblatex}
\addbibresource{biblatex-examples.bib}

\defbibenvironment{bibliography}
  {\list
     {\textbullet}
     {\setlength{\labelwidth}{1em}%
      \setlength{\leftmargin}{\labelwidth}%
      \setlength{\labelsep}{\biblabelsep}%
      \addtolength{\leftmargin}{\labelsep}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}%
      \renewcommand*{\makelabel}[1]{##1\hss}}
  {\endlist}
  {\item}

\begin{document}

\nocite{*}
\printbibliography

\end{document}
```

![Screen Shot 2020-11-10 at 17.56.23.png](/image?hash=a3357fec3a3c93383fc32fac07f000ec9689ff0a97515b087e018f211098cf7c)


Version with year:
```
\documentclass{article}

\usepackage[style=alphabetic]{biblatex}
\addbibresource{biblatex-examples.bib}

\defbibenvironment{bibliography}
  {\list
     {\printfield{year}}
     {\setlength{\labelwidth}{2em}%
      \setlength{\leftmargin}{\labelwidth}%
      \setlength{\labelsep}{\biblabelsep}%
      \addtolength{\leftmargin}{\labelsep}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}%
      \renewcommand*{\makelabel}[1]{##1\hss}}
  {\endlist}
  {\item}

\begin{document}

\nocite{*}
\printbibliography

\end{document}
```

![Screen Shot 2020-11-10 at 17.55.35.png](/image?hash=baa2153d8f252a3b10c4b3ec81064f5d8c927769360cc3a78786495e5f746fbd)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.