0

I am writing my thesis for and for its separate chapter I would like to present the conducted publications. For example for the first chapter, I am having the following publication:

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

However, that latex code simply outputs the paper as a simple item. Is there a special way to place the publication in the text?

EDIT:

The following paper is summarized the work done in this section:
   - First Author and second author, name of the paper, conference, 2020.
  • I think what you want to use is bibtex. Normally in a thesis, you cite the corresponding publications as you go. You can use it like "We used \cite{paper1}\cite{paper2} in this section". For example as shown here https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex – Sango Jan 22 '20 at 16:43
  • 1
    I do not want just to cite and add it in the reference section, I would like to present a paper as the introduction of the Chapter. But instead of doing it with the item to find a more elegant way. – Jose Ramon Jan 22 '20 at 16:47
  • I'm not quite understanding what you want. Based on the comment you gave for the attempted answer, it seems like you want this to be formatted as if it were in a bibliography, but to just have that entry here? Is that correct? – Teepeemm Jan 22 '20 at 21:53
  • Yes this is correct. – Jose Ramon Jan 23 '20 at 08:47
  • 1
    Have a look at this: https://gking.harvard.edu/files/bibentry2.pdf – Sango Jan 23 '20 at 09:44
  • 1
    Also this: at the end there is a nice example https://texblog.org/2012/04/25/writing-a-cv-in-latex/ – Sango Jan 23 '20 at 09:52

4 Answers4

2

Another answer based on: 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}

Result:

enter image description here

Sango
  • 887
1

Like this?

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

Result:

enter image description here

Sango
  • 887
  • The question is whether I can add the item in a formatted version in a similar manner with the way that they are added in references section normally. – Jose Ramon Jan 22 '20 at 17:14
  • That was not really obvious from your question. Ok, now that makes more sense. – Sango Jan 23 '20 at 09:38
0

I faced an identical issue with OP, so I tried the solution posted by Sango. This did not work for me. I found a post with a similar problem. Apparently it works with natbib but not with biblatex, which I use. The solution for biblatex, which worked for me is:

\begin{itemize}
\item \fullcite{knuth2006art}
\item \fullcite{lamport1986latex}
\end{itemize}
epR8GaYuh
  • 2,432
0

output

If a chapter having one published article, it can be added using the \quote environment. To avoid repetition of commands, a \newcommand can be added as preamble. My MWE is,

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

epR8GaYuh
  • 2,432