BibTeX, biblatex and biber ⇒ Bibliography does not work anymore
Bibliography does not work anymore
This is my header/footer:
I removed the "E"s and there is onky one yellow error left.Bibliography does not work anymore
On the bibliography it says:
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography does not work anymore
Screenshots are sometimes ok, to show the output or the view of an editor with the error.
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
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
LaTeX.org admin
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Bibliography does not work anymore
Sorry to be brutally honest here, but there is a lot wrong. You should read an introduction and start fresh.
As of now, you probably won't be able to fix your document.
As of now, you probably won't be able to fix your document.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Bibliography does not work anymore
This is my main:
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}
Last edited by Stefan Kottwitz on Thu Sep 27, 2018 12:58 pm, edited 1 time in total.
Bibliography does not work anymore
This is my bibliography:
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
This is my code for inserting an image:
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}
Last edited by Stefan Kottwitz on Thu Sep 27, 2018 12:58 pm, edited 1 time in total.
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography does not work anymore
Please mark as code as I said, to keep it readable... I did it above for you, take a look.
LaTeX.org admin
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography does not work anymore
In the header/footer part, as mentioned, the
Stefan
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}}
LaTeX.org admin
Bibliography does not work anymore
Testing...
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}