手册书目

手册书目

我需要创建一个手动书目,以便遵循非常精确的布局指南。

以下是我正在做的事情:

\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}

但是,这给了我方括号,每个条目都有详细的数字。我不想这样。我想要第一行左对齐,而不是逐项排列,并且悬挂行缩进,就像普通的学术书目一样。无论如何,这就是我需要做的。

建议?

答案1

不完全确定这是否是你想要的:

在此处输入图片描述

\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}

的整个定义thebibliography是从article.cls并更新了适当长度的项目。此外,标签已被删除。

相关内容