Usually when inserting something that someone else says we would like to specially mark it and format it for example in forums you can use the [quote][/quote] bbcode formating or even using the markdown's \>.
In my tex example:
\documentclass[a4paper,25pt]{report}
\usepackage[a4paper,footskip=0.25in]{geometry}
\usepackage{makeidx}
\usepackage{polyglossia}
\usepackage{csquotes}
\usepackage{xltxtra}
\usepackage{xunicode}
\usepackage{libertine}
\usepackage{fontspec}
\usepackage{graphicx}
\usepackage{url}
% Uncomment it and uncomment any \lipsum notation as well.
% Afterwards build and see how beautifull result is displayed
\usepackage{lipsum}
\usepackage[backend=bibtex, bibstyle=numeric, citestyle=numeric-comp, sorting=none]{biblatex}
\bibliography{./material.bib}
\usepackage[pdfauthor={"Dimitrios Desyllas, Ioannis anagnostou"},
pdftitle={"Setting up a LoRa IoT communication using LoRaWAN"},
pdfsubject={"iot"},
pdfkeywords={"privacy by design, privacy, howto, technologies, legal requirements"},
hidelinks
]{hyperref}
\setdefaultlanguage{english}
\setotherlanguages{greek}
\setmainfont{Liberation Serif}
\newfontfamily\greekfont[Script=Greek]{Linux Libertine O}
\newfontfamily\greekfontsf[Script=Greek]{Linux Libertine O}
\setmainfont[Kerning=On,Mapping=tex-text]{Linux Libertine O}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{Univercity Of MOE OTAKUS}
\fancyhead[R]{Legion on Otakus \& Weabos}
\title{Motteke Seifuku}
\date{Univercity of Moe Otakus - 2018}
\author{Dimitrios Desyllas (Nekomimi1233)}
\begin{document}
\maketitle
\tableofcontents
\chapter{Introduction}
\lipsum[1-20]
\chapter{Motteke Seifuku}
\section{Seifukus Rocks!!!}
\subsection{Generic information}
This is a nice list \cite{US7791415B2}
\begin{enumerate}
\item Seifuku are awesome
\item Watashiwaravuseifuku
\item whatecer I want
\end{enumerate}
Also someone special \cite{US7791415B2} said:
"Seifukus are the quide to the future"
- Someone Special
\lipsum[5-9]
\subsection{Frequencies of seing seifuku}
\lipsum[5-9]
\section{Lorem Ipsum}
\lipsum[1-20]
\chapter{Implementation of Lorem Ispum}
\section{Introduction}
\lipsum[1-8]
\section{Materials Used}
\lipsum[5-10]
\section{Projects Implemented}
\lipsum[7-13]
\printbibliography
\end{document}
I would like to be able to mark the section:
"Seifukus are the quide to the future"
- Someone Special
In my text like:
\begin[from=Someone Special]{quote}
Seifukus are the quide to the future
\end{quote}
And somehow to apply special formating. How I can make it possible?


epigraphpackage is what you're looking for? – Bernard Apr 07 '18 at 14:13quoteenvironment in LaTeX (though it doesn't add the source that way, you could do\end{quote}~\hfill-- Someone Special\paror something like that. – Skillmon Apr 07 '18 at 14:33csquotesas well. – Paul Stanley Apr 07 '18 at 15:41