BibTeX, biblatex and biber ⇒ Bibliography does not work anymore
Bibliography does not work anymore
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Bibliography does not work anymore
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography does not work anymore
Error messages would be good to have as plain text here, copy and paste or typed. Better to read than images.
Most important: please post the code snippets as text (code). I would like to show you corrections, but I cannot edit an image. I could edit the code as text, and post it. There are several wrong things in the inherited code or in general. In each screenshot there's at least one issue or more.
Just copy and paste the code from the screenshot, as text here. In the forum, you can mark the code with the mouse and click the "Code" button above the text edit field.
Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Bibliography does not work anymore
As of now, you probably won't be able to fix your document.
Bibliography does not work anymore
Code: Select all
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{comment}
\usepackage[parfill]{parskip}
%-----bibliography begin -----%
\usepackage[backend=biber, sorting=none]{biblatex}
\addbibresource{Bibliography.bib}
%-----bibliography end -----%
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage[titletoc]{appendix}
\usepackage{amsmath}
\usepackage{float}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lastpage}
\usepackage{setspace}
\usepackage{hyperref}
\usepackage{afterpage}
%-----header/footer -----%
\lhead{\includegraphics[height=0.5cm\textwidth, left]{figurer/DTU/DTU_Logo.jpg}}
\chead{s140504}
\rhead{\includegraphics[height=0.5cm\textwidth, right]{figurer/BWSC/bwsclogo.jpg}}
\fancyfoot[L,RO]{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\fancyfoot[LO,C]{Section \thesection}
\fancyfoot[CO,R]{Kristian Dalgaard}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
%-----header/footer -----%
\begin{document}
\input{Frontpage}
\newpage
\blankpage{%
\null
\thispagestyle{empty}%
\addtocounter{page}{-1}%
\newpage}
\input{Abstract}
\newpage
\input{Preface}
\newpage
\input{Abbreviations}
\newpage
\renewcommand{\baselinestretch}{1.0}\normalsize
\tableofcontents
\renewcommand{\baselinestretch}{1.0}\normalsize
\newpage
\input{Problem_statement}
\newpage
\input{Introduction}
\newpage
\input{Introducing_Elements}
\newpage
\input{Theory}
\newpage
\input{Parameters}
\newpage
%\input{Bibliography_test}
%\newpage
\pagestyle{empty}
\printbibliography
\newpage
\begin{appendices}
\input{Appendix/Appendix_A}
\newpage
\input{Appendix/Appendix_B}
\newpage
\input{Appendix/Appendix_C}
\end{appendices}
\newpage
\blankpage{%
\null
\thispagestyle{empty}%
\addtocounter{page}{-1}%
\newpage}
\end{document}
Bibliography does not work anymore
Code: Select all
@article{alexander,
author = "Dr. Alexander Murdoch and Ian McIntyre",
title = "{PSEC Application Notes. ({German})",
[{On} Power System stabilizer Helps Meet Plant Stability Margins for Simple Cycle and Combined Cycle Power Plants]",
year = "2001",
keywords = "AVR,PSS"
}
@book{boldea,
title = {Synchronous Generators},
author = {Ian Boldea},
isbn = {9781420037258},
publisher = {Taylor and Francis Group},
keywords = {Generators}
}
@book{wollenberg,
title = {Power Generation, Operation and Control},
author = {Allan J Wood, Bruce F. Wollenberg, Gerald B. Sheblé},
isbn = {978-0-471-79055-6},
series = {International series of monographs on physics},
year = {2014},
publisher = {Wiley},
keywords = {Generators}
}
@book{yjtjy,
title = {Power Generation, Operation and Control},
author = {Allan J Wood, Bruce F. Wollenberg, Gerald B. Sheblé},
isbn = {9781420037258},
series = {International series of monographs on physics},
year = {1981},
publisher = {Taylor and Francis Group},
keywords = {physics}
}
@online{Knuthwebsite,
author = "Donald Knuth",
title = "Knuth: Computers and Typesetting",
url = "http://www-cs-faculty.stanford.edu/~uno/abcde.html",
addendum = "(accessed: 01.09.2016)",
keywords = "latex,knuth"
}
@inbook{Knuth-fa,
author = "Donald E. Knuth",
title = "Fundamental Algorithms",
publisher = "Addison-Wesley",
year = "1973",
chapter = "1.2",
keywords = "knuth,programming"
}
Bibliography does not work anymore
Code: Select all
\begin{figure}[H]
\begin{center}
\includegraphics[width=10cm]{figurer/Theory/droop_Wiley_power.png}
\caption{\textit {Example of a droop curve for one generator only (Wiley)}}
\label{fig:Theory_droop}
\end{center}
\end{figure}
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography does not work anymore
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography does not work anymore
left
and right
options won't work and cm is wrong as factor to \textwidth
. Better:Code: Select all
\lhead{\includegraphics[height=0.5\textwidth]{figurer/DTU/DTU_Logo.jpg}}
\chead{s140504}
\rhead{\includegraphics[height=0.5\textwidth]{figurer/BWSC/bwsclogo.jpg}}
Bibliography does not work anymore
Code: Select all
\begin{figure}[H]
\begin{center}
\includegraphics[width=10cm]{figurer/Theory/droop_Wiley_power.png}
\caption{\textit {Example of a droop curve for one generator only (Wiley)}}
\label{fig:Theory_droop}
\end{center}
\end{figure}