I am trying to write a paper and after hours of figuring out how to properly work with Biber. Everythink was working well until i moved to the next section. The references disappeared and all that was left was bunch of zeros as seen in the photos.
in the next section references are working well but only in that section not the previous one. Here is my code:
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage[backend=biber,defernumbers=true,refsection=section]{biblatex}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\usepackage{graphicx}
\usepackage[colorlinks,allcolors=blue]{hyperref}
\addbibresource{biblio.bib}
\begin{document}
\title{Measuring ...}
\author{\IEEEauthorblockN{1\textsuperscript{st} G}
\IEEEauthorblockA{\textit{S} \\
\textit{I}\\
Th \\
.edu.gr}
\and
\IEEEauthorblockN{2\textsuperscript{nd} S}
\IEEEauthorblockA{\textit{School of Science and Technology} \\
\textit{I}\\
Th \\
ihu.edu.gr}}
\maketitle
\begin{abstract}
This document is a model and instructions for latex
This and the IEEEtran.cls file define the components of your paper [title, text, heads, etc.]. *CRITICAL: Do Not Use Symbols, Special Characters, Footnotes,
or Math in Paper Title or Abstract.
\end{abstract}
\begin{IEEEkeywords}
component, formatting, style, styling, insert
\end{IEEEkeywords}
\section{Introduction}
\subsection{Epileptic...}
The EEG ... intervals and seizure intervals~\cite{alotaiby}.
Therefore pattern recognition algorithms such as $k$-Nearest Neighbour ($k$-NN) or machine learning Neural Networks are necessary to analyse such data.\cite{liu}
\begin{figure}
\centering
\includegraphics[width=0.4\textwidth]{fig1.png}
\caption{An EEG signal with containing a seizure~\cite{alotaiby}}
\end{figure}
\subsection{Data}
Our dataset ...an epileptic seizure~\cite{andrze}. Data available at:~\url{https://archive.ics.uci.edu/ml/datasets/Epileptic+Seizure+Recognition}
\section{Methodology}
\subsection{Rescaling}
In Machine learning.. [-1,1] with the general form been~\cite{aksoy_resc}:
\begin{align}
x' = \frac{x-min(x)}{max(x)-min(x)}\
\end{align}
where $x$ is the original value and $x'$ the normalized one.
\subsection{$k$-Nearest Neighbors}
The $k$-nearest neighbors algorithm ($k$-NN) is a non-parametric method used for classification and regression~\cite{altman_knn}. In our problem we have a classification problem. For classification the output of the k-NN is a class membership , in our study is whether we have an epileptic seizure or not. Our object will be classified by the plurality vote of the neighbours with the subject of been epileptic seizure or not, among $k$ nearest neighbours.
The $k$-NN algorithm is one of the simplest across other machine learning algorithms. In the training phase the algorithm only of storing the class labes and feature vectors of the training sample~\cite{coomans_knn}. Then the user-defined $k$ and a unlabelled vector is classified with the labels that classify the $k$ nearest training sample points. The metric that we used for measuring the distance between the neighbours is the Euclidean distance~\cite{phyu_knn}
\printbibliography[heading=subbibliography]
\end{document}
![Lorem [0]//Ipsum [1]//(Bibliography only contains <code>sigfridsson</code>)](../../images/0ecc4b4777ae0fa694d6a1743dcf3c0f.webp)
refsection=sectionin yourbiblatexloading options. Essentially that means that each\sectionhas a bibliography of its own. If you want only one global bibliography, removerefsection=sectionand compile again. (I should add thatIEEEtranis a document class for submissions to IEEE journals and proceedings that comes with its own BibTeX.bststyles. If you want to submit to the IEEE you should use their BibTeX styles and notbiblatex. If you don't want to submit to the IEEE a standard class might be a better choice.) – moewe Jan 02 '20 at 15:59