Text FormattingIssues with my Bibliography

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
haoxiaoxi
Posts: 1
Joined: Wed Jul 28, 2021 6:34 pm

Issues with my Bibliography

Post by haoxiaoxi »

Hi everyone! :)
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
Last edited by Stefan Kottwitz on Wed Jul 28, 2021 9:07 pm, edited 1 time in total.
Reason: code marked

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Sumalatha
Posts: 7
Joined: Tue Sep 28, 2021 6:34 am

Issues with my Bibliography

Post by Sumalatha »

Hey, you can try these commands \bibliography and \bibliographystyle.
Post Reply