如何排版我的文章参考资料(如附图)

如何排版我的文章参考资料(如附图)

在此处输入图片描述

上图显示了我如何排版对文章的引用。我没有历史上有这种引用样式的参考文献,所以我决定自己排版。即便如此,我还是无法在 LaTeX 文章类中正确完成。更重要的是,我使用的是双列文档。

以下是我的 MWE:

\documentclass[12pt,a4paper,twocolumn]{article}
\usepackage[latin1]{inputenc}
%\usepackage{makeidx}
\usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm]{geometry}
\begin{document}
{[Bed88]\hspace{2cm}} {\textbf{M. A. and Bednarrczyk} - \textit{Category of asynchronous system}, PhD thesis,University of Sussex, 1988.
\end{document}

我不知道如何使第一行后面的行向左缩进 2cm。

答案1

对于您的手动方法,表格可能会有所帮助:

\documentclass[12pt,a4paper,twocolumn]{article}
\usepackage[latin1]{inputenc}
%\usepackage{makeidx}
\usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm]{geometry}
\begin{document}

\begin{tabular}{p{2cm}@{}p{5.5cm}}
[Bed88] & \textbf{M. A. and Bednarrczyk} - \textit{Category of asynchronous system}, PhD thesis,University of Sussex, 1988.\\

[Ced88] & \textbf{M. A. and Bednarrczyk} - \textit{Category of asynchronous system}, PhD thesis,University of Sussex, 1988.\\
\end{tabular} 
\end{document}

在此处输入图片描述

相关内容