在 Latex 文档中添加出版物

在 Latex 文档中添加出版物

我正在撰写论文,对于其单独的章节,我想介绍已发表的论文。例如,对于第一章,我有以下论文:

\section{My first chapter}
The following paper is summarized the work done in this section:

\begin{itemize}
\item First Author and second author, name of the paper, conference, 2020.
\end{itemize}

但是,该 latex 代码只是将论文作为简单项目输出。是否有特殊方法将出版物放置在文本中?

编辑:

The following paper is summarized the work done in this section:
   - First Author and second author, name of the paper, conference, 2020.

答案1

另一个答案基于:https://texblog.org/2012/04/25/writing-a-cv-in-latex

\documentclass[10pt]{article}
\usepackage{bibentry} 

\begin{filecontents}{publication.bib}
@article{lamport1986latex,
  title={LaTEX: User's Guide \& Reference Manual},
  author={Lamport, L.},
  year={1986},
  publisher={Addison-Wesley}
}
@book{knuth2006art,
  title={The art of computer programming: Generating all trees: history of combinatorial generation},
  author={Knuth, D.E.},
  volume={4},
  year={2006},
  publisher={addison-Wesley}
}
\end{filecontents}

\begin{document}

\bibliographystyle{plain}
\nobibliography{publication}

\section{My first chapter}
The following paper is summarized the work done in this section:

\begin{itemize}
\item \bibentry{knuth2006art}
\item\bibentry{lamport1986latex}
\end{itemize}


\end{document}

结果:

在此处输入图片描述

答案2

像这样?

\documentclass[10pt,a4paper]{article}
\usepackage{enumitem}
\begin{document}
\section{My first chapter}
The following paper is summarized the work done in this section:
\vspace{-3mm}
\begin{itemize}[label=-]
    \item First Author and second author, name of the paper, conference, 2020.
\end{itemize}
    
\end{document}

结果:

在此处输入图片描述

答案3

我遇到了与 OP 相同的问题,因此我尝试了Sango 发布的解决方案。这对我来说不起作用。我找到了一个有类似问题的帖子。显然它适用于natbibbiblatex但我使用的不是。biblatex,对我有用的是:

\begin{itemize}
\item \fullcite{knuth2006art}
\item \fullcite{lamport1986latex}
\end{itemize}

答案4

输出

如果一个章节中有一篇已发表的文章,则可以使用环境添加它\quote。为了避免重复命令,\newcommand可以添加一个作为序言。我的 MWE 是,

 \documentclass[a4paper, 12pt]{thesis}

  \usepackage{times,lipsum}

  \usepackage[margin=1in]{geometry}

  \usepackage[onehalfspacing]{setspace}

   \newcommand{\publn}{

    \begin{quote}

    \singlespacing\small

    \vskip-15mm

    \end{quote}}

\begin{document}

\chapter{Introduction}  %Chapter 1%

\publn{\centerline{The literature survey presented in this chapter has been published in\\} \centerline{Journal, 2020, 3, pp.609-633.}}

 \vspace{10mm}

 \lipsum[2-3]         %dummy text%

 \end{document}

相关内容