Thanks for reply. I just want to find simply way to add two different references lists one behind another.
Sorry, thought it will be much easier. Here is the minimal working example (if only you create "biblio" .bib file in "bibliografia" file location):
Code: Select all
\documentclass[12pt]{article}
\usepackage[table,xcdraw]{xcolor}
\usepackage{listings}
\usepackage{inputenc}
\usepackage{graphicx}
\usepackage{polski}
\usepackage{geometry}
\usepackage{textcomp}
\usepackage{gensymb}
\usepackage{parskip}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{enumitem}
\usepackage{booktabs,arydshln}
\usepackage{array}
\usepackage{caption}
\usepackage{amsmath}
\usepackage{scrextend}
\usepackage{mwe}
\usepackage[export]{adjustbox}
\usepackage{setspace}
\usepackage{stanli}
\usepackage{tikz}
\usepackage{wrapfig}
\usepackage{hyperref}
\usepackage[numbers,sort&compress]{natbib}
\usepackage[,framed]{matlab-prettifier}
\usepackage{pdfpages}
\usepackage{placeins}
\usepackage{bm}
\usepackage{float}
\usepackage{changepage}
\usepackage[font=small,tableposition=top]{caption}
\setlist[enumerate,1]{leftmargin=0.5cm}
\pagenumbering{arabic}
\usepackage{leading}
\leading{18pt}
\captionsetup[figure]{font=footnotesize,labelfont=footnotesize,justification=centering}
\captionsetup[table]{singlelinecheck=off,skip=0pt}
\lstset{language=matlab,basicstyle=\footnotesize,showstringspaces=false,style = Matlab-editor,basicstyle=\mlttfamily,
escapechar= ",mlshowsectionrules = true}
\graphicspath{ {figures/} }
\newcommand\VRule[1][\arrayrulewidth]{\vrule width #1}
\begin{document}
\newgeometry{tmargin=2.5cm, bmargin=2.5cm, lmargin=3.5cm, rmargin=2.5cm}
\tableofcontents
\newpage
\section{random section}
\subsection{random subsection}
\newpage
\renewcommand{\bibsection}{\section*{Bibliografia}}
\renewcommand{\bibpreamble}{\vskip0.7cm}
\nocite{*}
\bibliographystyle{plain}
\addtocontents{toc}{\protect\addvspace{8pt}}
\phantomsection
\addcontentsline{toc}{section}{\bibname}
\bibliography{bibliografia/biblio}
\end{document}