BibTeX, biblatex and biberBibliography does not work anymore

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

I changed the blankpage commands now.

When I tried change the header commands it went wrong.

This is before:
Capture20.PNG
Capture20.PNG (5.29 KiB) Viewed 3958 times
This is after:
Capture21.PNG
Capture21.PNG (232.98 KiB) Viewed 3958 times
When I comment out the graphics I get:
Capture24.PNG
Capture24.PNG (6.45 KiB) Viewed 3957 times
So it could seem that there is a conflict between 2 sets of headers. And when the graphics are there the text-based oine goes out

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

On the footer.

With

Code: Select all

\fancyfoot[EL,RO]{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\fancyfoot[LO,CE]{Section \thesection}
\fancyfoot[CO,RE]{Kristian Dalgaard}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
I get it right but it yields errors:
Capture25.PNG
Capture25.PNG (3.47 KiB) Viewed 3955 times
With

Code: Select all

\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}
I get it wrong but it yields no errors:
Capture26.PNG
Capture26.PNG (3.51 KiB) Viewed 3955 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Bibliography does not work anymore

Post by Stefan Kottwitz »

I see. You actually wanted cm, not the \textwidth factor. So remove the latter instead:

Code: Select all

\lhead{\includegraphics[height=0.5cm]{figurer/DTU/DTU_Logo.jpg}}
\chead{s140504}
\rhead{\includegraphics[height=0.5cm]{figurer/BWSC/bwsclogo.jpg}}
Stefan
LaTeX.org admin
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

That removed the vast majority of errors.
I am down to 17 now. - cool!

/Kristian
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Bibliography does not work anymore

Post by Stefan Kottwitz »

Hi Kristian,

indeed, often it's one single error that causes a lot more. That's why I prefer to fix the first occurring error before even thinking about another one. :-)

Stefan
LaTeX.org admin
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

The 'new' log file is attached.
output (1).log
(38.96 KiB) Downloaded 355 times
I also put in screenshots here:
Capture27.PNG
Capture27.PNG (67.22 KiB) Viewed 3946 times
Capture28.PNG
Capture28.PNG (52.49 KiB) Viewed 3946 times
Capture29.PNG
Capture29.PNG (66.92 KiB) Viewed 3946 times
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

And one more.
Biblatex/biber is most of them:
Capture30.PNG
Capture30.PNG (57.66 KiB) Viewed 3946 times
I am grateful for your help.

/Kristian
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

Ignore the first 2 red errors. I removed the footnote in the picture text and they are gone.

I am down to 14 errors and they are mainly on Header/footer and bibliograpy issues.
I changed all figure codes to your suggestion.

I have a lot of the Underfull badness 10000.
It sounds dramatic but I don't get what the error is.
See picture below for example:
Capture31.PNG
Capture31.PNG (6.87 KiB) Viewed 3943 times
Thanks again.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Bibliography does not work anymore

Post by Johannes_B »

Those are warnings, not errors.

You are probably still using double backslash or \newline. Stefan and I told you not to do that.

But it is really hard to guess anything based on screenshots. I still recommend to read an introduction to LaTeX.

By the way, can you read the warning message for me? What does it say about where the trouble is?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Bibliography does not work anymore

Post by Stefan Kottwitz »

Regarding the underfull box warnings, perhaps show us the code around those lines 220-226.

One of the first errors (caption) was because there was a closing curly brace { too much.

The good thing of the bibliography related error messages is, that you know the bibliography compiler is actually executed.

Check this entry:

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"
}
In the middle that's not standard key=value format.

And check Bibliography.bib line 52 (and before) and post that bib entry here.

Stefan
LaTeX.org admin
Post Reply