for my bachelor thesis I want to improve my work with a citation in the beginning. How could I do this to make it look like this
Thanks in advance!
EDIT 1 : MWE
Okay this is a MWE which hopefully helps to answear the question. The MWE reference should be look like the one in the image.
\documentclass[12pt,a4paper,onecolumn,oneside,draft=on]{article}
\usepackage[left=4cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage[onehalfspacing]{setspace}
\usepackage[english,ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage{titlesec}
\usepackage[nottoc]{tocbibind}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{float}
\usepackage[backend=biber,bibencoding=utf8,natbib=true,style=apa]{biblatex}
\addbibresource{Reftester.bib}
\usepackage{subcaption}
\usepackage{pdfpages}
\newtheorem{theorem}{Theorem}
\newtheorem{acknowledgement}[theorem]{Acknowledgement}
\newtheorem{algorithm}[theorem]{Algorithm}
\newtheorem{case}[theorem]{Case}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{conclusion}[theorem]{Conclusion}
\newtheorem{condition}[theorem]{Condition}
\newtheorem{conjecture}[theorem]{Conjecture}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{criterion}[theorem]{Criterion}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{exercise}[theorem]{Exercise}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{notation}[theorem]{Notation}
\newtheorem{problem}[theorem]{Problem}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{solution}[theorem]{Solution}
\newtheorem{summary}[theorem]{Summary}
\newenvironment{proof}[1][Proof]{\noindent\textbf{#1.} }{\ \rule{0.5em} {0.5em}}
\makeatletter
\def\@biblabel#1{\hspace*{-\labelsep}}
\makeatother
\makeatletter
\renewcommand{\@cite}[1]{#1}
\makeatother
\setlength{\parindent}{0 cm}
\setlength{\parskip}{6 pt}
\setcounter{tocdepth}{100}
\begin{document}
"This is a famous reference and should be higlighted as in the picture of this post." \citet{Mokyr1999}
\printbibliography[ title={7 References}]
\end{document}
EDIT 2 : Bibtex Entry for MWE
@InBook{Mokyr1999,
chapter = {The New Economic History and the Industrial Revolution.},
pages = {1--127},
title = {The British Industrial Revolution: An Economic Perspective},
publisher = {Boulder: Westview.},
year = {1999},
author = {Mokyr, Joel},
editor = {Mokyr, Joel},
edition = {2nd. ed.},
}


.bibentry in the question. – moewe Jan 02 '19 at 16:09