I'm using LaTeX2e and don't want the abbreviations that appear in my text (at \cite) to appear also in the left margin of the bibliography, so have:
\documentclass{article}
\usepackage{graphicx}\usepackage{rotating}
\usepackage{amsmath}
%...
\makeatletter
%...
\def\@biblabel#1{}
%...
\makeatother
%...
\begin{document}
%...
\begin{thebibliography}{}
\bibitem[Aitken 1935]{Aitken}Aitken AC (1935): Note on selection from a multivariate normal population. \emph{Proceedings of the Edinburgh Mathematical Society}, 4:106--110.
%...
\end{thebibliography}
%...
\end{document}
The problem is that the bibliography items are indented slightly more than the rest of the article text:

I want them indented the same as the article text. How do I get the references over to the left?
(Note: I don't want to use BibTeX, as (a) using it for this is overkill (especially since I don't plan to use these references in future papers) and (b) it's another thing I'd have to learn.)

thebibliography, then why not use\list{}instead of\list{\@biblabel{\@arabic\c@enumiv}}and then not need to redefinebiblabel? (I haven't tried it, but it seems like it should work.) – msh210 Nov 02 '11 at 23:40