
I´ve started working with LaTeX and everything is working and looks as I want. My only issue is that I would like to have a list of references with a couple af articles, websites and books in the end. I don't want them cited in the text, I just want them at the end as reference. I tried the command \nocite{*}, I tried \printbibliography. I have been googling and searching forums for hours but no solution suggestion has yet worked. I even tried doing it separately in a whole new document but that also didn't work. As I am new, I really don't know what to do next. Either anybody has a magical solution for me or I have to put them in manually.

I don't know if it's because of the language issue (I have lots of Chinese in the doc). Appreciate any help!!!!
This is how my premable looks so far:
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage[colorlinks, linkcolor = blue, citecolor = green, filecolor = blue, urlcolor =blue]{hyperref}
\usepackage{graphicx}
\usepackage{pdflscape}
\usepackage{subfig}
%\usepackage{scrpage2}
\usepackage{bookmark}
\usepackage{acronym}
\usepackage[table,xcdraw]{xcolor}
\usepackage{tabularx, booktabs}
\usepackage{multirow}
\def\tablenotes{\vskip2pt\footnotesize}
\usepackage{gensymb}
\usepackage[main=ngerman]{babel}
%\usepackage[utf8]{ctex}
\usepackage{xeCJK}
%\setCJKmainfont{SimSun}
\usepackage[utf8]{inputenc}
\usepackage{caption}
%\usepackage{subcaption}
\usepackage{setspace}
\usepackage{leading}
\usepackage{enumitem}
\usepackage{fancyhdr}
\usepackage{chngcntr}
\usepackage{wrapfig}
\usepackage[export]{adjustbox}
\usepackage[a4paper, left=2.5cm, right=2.5cm, top=2.5cm, bottom=2.5cm]{geometry}
\usepackage[backend=bibtex, style = alphabetic]{biblatex}
\addbibresource{Bibliographie.bib}
And I tried this:
\begin{document}
...
\newpage
\section{Bibliography}
\begin{refsection}[Bibliographie]
\nocite{*}
\printbibliography
\end{refsection}
...
\end{document}
cheers,
haoxiaoxi