I am pretty newbie to LaTeX and Beamer theme customization.
I am using the Metropolis template (https://github.com/matze/mtheme).
Everything goes fine, but for the Bibliography: my code (identical to the template code) is:
\begin{frame}[allowframebreaks]{References}
\bibliography{demo}
\bibliographystyle{abbrv}
\end{frame}
Now, Bibliography looks like this:
https://i.stack.imgur.com/wQRk2.jpg
As you can see, names are all abbreviated, even for "Influx Development Team", and all uppercase letters are lowercased.
How can I fix this?
Changing \bibliographystyle{x} did not work, always same result.
EDIT
As samcarted suggested (ty btw), here is a MWEB:
\documentclass[10pt]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{appendixnumberbeamer}
\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{pgfplots}
\usepgfplotslibrary{dateplot}
\usepackage{fancyvrb}%indent. code
\usepackage{color}%color words
\metroset{block=fill}%globally fill all blocks
\usepackage{xspace}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}
\title{Funny title}
\subtitle{Funnier subtitle}
\date{\today}
\author{Funny author}
\institute{Not funny institute}
% \titlegraphic{\hfill\includegraphics[height=1.5cm]{logo.pdf}}
\begin{document}
\maketitle
\begin{frame}{Table of contents}
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents[hideallsubsections]
\end{frame}
\section{sec1}
\begin{frame}{frame1}
Citing stuff \cite{citethis}
\end{frame}
\appendix
\begin{frame}[allowframebreaks]{References}
\bibliography{demo}
\bibliographystyle{abbrv}
\end{frame}
\end{document}
While my .bib file is:
@article{ citethis,
author = "LaTeX Newbie",
title = "As u can see, author name has been abbreviated and AlL tHeSe UppErCaSe LettErs haVe BeeN LowerCaseD",
year = "2018",
month = "November",
url = "https://www.icannotfigurethis.out"
}

\documentclassand the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem. – samcarter_is_at_topanswers.xyz Nov 04 '18 at 18:51\usepackage{color}with beamer – samcarter_is_at_topanswers.xyz Nov 04 '18 at 19:12