I want to write a reference with the bullet numbering of the form: [1] For example,
[1] Drucke, D., 1992, Reflection Properties of Curves and Surfaces, Mathematics Magazine, v.65, p.147.
is a reference in my paper. I am currently using the following code:
\begin{enumerate}
\item Drucke, D., 1992, Reflection Properties of Curves and Surfaces, Mathematics Magazine, v.65, p.147.
\end{enumerate}
As a consequence, I am getting the following output:
- Drucke, D., 1992, Reflection Properties of Curves and Surfaces, Mathematics Magazine, v.65, p.147.
Is it possible to achieve 1 instead of 1. in a list?
Update 1 The code snippet seems to works partially:
\begin{enumerate}
\item [[ 1]] Drucke, D., 1992, Reflection Properties of Curves and Surfaces, Mathematics Magazine, v.65, p.147.
\end{document}
Any improvements, will be extremely helpful...


