BibTeX, biblatex and biberBibliography does not work anymore

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
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 »

Remove the Es but also the Os, and device between left and right since it's single-sided printed, not two-sided:

Code: Select all

\fancyfoot[L]{Section \thesection}
\fancyfoot[C]{Kristian Dalgaard}
\fancyfoot[R]{Page \thepage \hspace{1pt} of \pageref{LastPage}}
Stefan
LaTeX.org admin

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 »

Thank you Stefan.

That did the trick.
Down to 2 yellow warnings and 4 blue ones.
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

The screenshot below contains 2 warnings. Both on the same line/subject I guess.
Capture35.PNG
Capture35.PNG (12.48 KiB) Viewed 5443 times
This is the cone surrounding the issues:

Code: Select all

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{comment}
\usepackage{parskip}
\usepackage[nopar]{lipsum}
And this is then latest log file:
output (3).log
(34.61 KiB) Downloaded 465 times
Regards Kristian
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 »

Place a percent sign at the very beginning of the inputenc line.
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 »

Hi Kristian,

the reason why Johannes, said that: inputenc switches to utf8 text input encoding (for pdfLaTeX) but you run XeLaTeX, that uses utf8 by default. You can comment it out, as Johannes said, or remove that line.

can you please post the file Problem_statement.tex? As code box, or as attachment. You can delete the attachment or code box it (edit post) after we talked about it. It would be good to see once and clarify how and why the under full boxes happen.

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

Bibliography does not work anymore

Post by s140504 »

I had not gotten the \newline removed in the problem_statement.
I did now.

I % out the inputenc and the warning is gone.

'I fixed the other blue warnings by correcting some lengths of words and an equation.

What remains now is a single yellow warning on fancyhdr:
Capture36.PNG
Capture36.PNG (11.46 KiB) Viewed 5431 times
This is what I have of code concerning the hdr:

Code: Select all

\documentclass[12pt,a4paper]{article}
%\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{comment}
\usepackage{parskip}
\usepackage[nopar]{lipsum}

%-----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}
\usepackage{caption}
\captionsetup[figure]{textfont={it}}

%-----header/footer -----%
\lhead{\includegraphics[height=0.5cm]{figurer/DTU/DTU_Logo.jpg}}
\chead{s140504}
\rhead{\includegraphics[height=0.5cm]{figurer/BWSC/bwsclogo.jpg}}
\fancyfoot[L]{Section \thesection}
\fancyfoot[C]{Kristian Dalgaard}
\fancyfoot[R]{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
%-----header/footer -----%
Is it because it states \documentclass[12pt,a4paper]{article}
and the header wants 18.... ?

How can I correct it? It is the last warning that exists in my doc : )

I attach log for your info:
output (4).log
(33.47 KiB) Downloaded 454 times
Thanks
/Kristian
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 »

\setlength{\headheight}{19pt}

I wonder if you could have managed that by simply using google.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Bibliography does not work anymore

Post by s140504 »

Thank you Johannes

Your help is appreciated.

I am down to zero warnings now.
Thank you very much Stefan. You have been most helpfull and I will think you when I graduate : )

Have a nice day
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'm ok with questions that are asked here instead of searching via google. That's also because then other people find this and the answer here later. I rather see LaTeX life here than on google that lets people just silently read or leads 99 percent to a big commercial site. ;)

Stefan
LaTeX.org admin
Post Reply