参考书目有一定的风格,但我把资料来源写成普通文本

参考书目有一定的风格,但我把资料来源写成普通文本

我希望我的参考书目与图片中一样,但我没有使用参考书目包,我只是将来源写成文本。我该如何修复,以便每个来源的第 2 行比同一来源的第 1 行有另一个左边距(就像图片一样)?谢谢!

这是我的代码的示例:

\noindent Marhavilas, P. K., Koulouriotis, D., Gemeni, V. (2011), "Risk analysis and assessment methodologies in the work sites: On a review, classification and comparative study of the scientific literature of the period 2000-2009", \textit{Journal of Loss Prevention in the Process Industries}, Vol. 24, No. 5, pp. 477-523.
\vspace{2mm}

\noindent Mentzer, J.T., DeWitt, W., Keebler, J.S., Min, S., Nix, N.W., Smith, C.D., Zacharia, Z.G. (2001), “Defining Supply Chain Management”, \textit{Journal of Business Logistics}, Vol. 22, No. 2, pp. 1-25.
\vspace{2mm}

\noindent Meredith, J. (1998), Building operations management theory through case and field research, \textit{Journal of Operations Management}, Vol. 16, pp. 441-54.

在此处输入图片描述

答案1

Minimal Working Example只是为了说明发布而不是片段的重要性。

\documentclass[12pt]{article}
\usepackage[a4paper]{geometry}
\begin{document}
\noindent Marhavilas, P. K., Koulouriotis, D., Gemeni, V. (2011), ``Risk analysis and assessment methodologies 
in the work sites: On a review, classification and comparative study of the scientific 
literature of the period 2000-2009", 
\textit{Journal of Loss Prevention in the Process Industries}, Vol. 24, No. 5, pp. 477--523.

\vspace{2mm}

\noindent Mentzer, J.T., DeWitt, W., Keebler, J.S., Min, S., Nix, N.W., Smith, C.D., 
Zacharia, Z.G. (2001), ``Defining Supply Chain Management'', 
\textit{Journal of Business Logistics}, Vol. 22, No. 2, pp. 1--25.

\vspace{2mm}

\noindent Meredith, J. (1998), Building operations management theory through 
case and field research, \textit{Journal of Operations Management}, Vol. 16, pp. 441--454.
\end{document} 

给出

在此处输入图片描述

与您所展示的不同。

相关内容