Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I need to create a manual bibliography, in order to follow very precise layout guidelines.

Here's what I'm doing:

\begin{thebibliography}{111}
\raggedright

\bibitem{} Anscombe, E. 1981/1971. ``Causality and Determination,'' in 
  \emph{Metaphysics and the Philosophy of Mind: Collected Philosophical Papers of 
    G.E.M. Anscombe}. Minneapolis: University of Minnesota Press. 133--47. 

\end{thebibliography}

However, this gives me square brackets with itemized numbers for each entry. I don't want this. I want flush left for first line, not itemization, and hanging lines indented, like a regular academic bibliography. That is what I'm required to do, at any rate.

Advice?

share|improve this question

1 Answer

Not entirely sure whether this is what you're after:

enter image description here

\documentclass{article}
\makeatletter
\renewenvironment{thebibliography}[1]
     {\section*{\refname}%
      \@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
      \list{}%
           {\setlength{\labelwidth}{0pt}%
            \setlength{\labelsep}{0pt}%
            \setlength{\leftmargin}{\parindent}%
            \setlength{\itemindent}{-\parindent}%
            \@openbib@code
            \usecounter{enumiv}}%
      \sloppy
      \clubpenalty4000
      \@clubpenalty \clubpenalty
      \widowpenalty4000%
      \sfcode`\.\@m}
     {\def\@noitemerr
       {\@latex@warning{Empty `thebibliography' environment}}%
      \endlist}
\makeatother
\begin{document}
\begin{thebibliography}{111}
\raggedright
\bibitem{abc} Anscombe, E. 1981/1971. ``Causality and Determination,'' in \emph{Metaphysics and the Philosophy of Mind: Collected Philosophical Papers of G.E.M.\ Anscombe}. Minneapolis: University of Minnesota Press. 133--47.
\bibitem{def} Anscombe, E. 1981/1971. ``Causality and Determination,'' in \emph{Metaphysics and the Philosophy of Mind: Collected Philosophical Papers of G.E.M.\ Anscombe}. Minneapolis: University of Minnesota Press. 133--47.
\bibitem{ghi} Anscombe, E. 1981/1971. ``Causality and Determination,'' in \emph{Metaphysics and the Philosophy of Mind: Collected Philosophical Papers of G.E.M.\ Anscombe}. Minneapolis: University of Minnesota Press. 133--47.
\end{thebibliography}
\end{document}

The entire definition of thebibliography was copied from article.cls and updated with the appropriate length items. Additionally, the label has been removed.

share|improve this answer
Awesome! Thanks. This is it. – user25465 Feb 4 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.