When I try to add the following Website to my bibliography I get an error, that TeX capacity is exceeded. I would be very thankful for your help. I integrated it into a file with JabRef. After this, you will find my main file. If you need anything else, feel free to ask.
@Misc{uni.utah.mm,
author = {Peter Alfeld},
note = {[Online; Stand 10.08.2020]},
title = {The Mandelbrot Set.},
url = "\url{https://www.math.utah.edu/~alfeld/math/mandelbrot/mandelbrot.html}",
}
\documentclass[12pt, a4paper, bibliography=totocnumbered]{scrartcl}
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[headsepline, automark]{scrlayer-scrpage}
\usepackage{tabularx}
\usepackage[bottom, perpage]{footmisc}
\usepackage{amsmath, amssymb}
\usepackage{amsfonts}
\usepackage{color}
\usepackage{transparent}
\usepackage{graphicx}
\usepackage{caption}
\usepackage[onehalfspacing]{setspace}
\captionsetup[figure]{font=small,labelfont=small}
\newcommand*{\captionsource}[2]{%
\caption[{#1}]{%
#1%
\\hspace{\linewidth}%
\textbf{Quelle:} #2%
}%
}
\usepackage{float}
\usepackage[printonlyused]{acronym}
\usepackage[
pdftitle={Maturitätsarbeit - Die Darstellung Mandelbrot-artiger Mengen im dreidimensionalen Raum},
colorlinks=true,
urlcolor=blue,
linkcolor=black,
citecolor=black
]{hyperref}
\usepackage[scaled]{helvet}
\renewcommand\familydefault{\sfdefault}
\makeatletter
\def\thickhline{%
\noalign{\ifnum0=}\fi\hrule \@height \thickarrayrulewidth \futurelet \reserved@a\@xthickhline} \def\@xthickhline{\ifx\reserved@a\thickhline \vskip\doublerulesep \vskip-\thickarrayrulewidth \fi \ifnum0={\fi}}
\makeatother
\renewcommand{\arraystretch}{1.3}
\bibliographystyle{unsrtdin}
\setcounter{secnumdepth}{8}
\newlength{\thickarrayrulewidth}
\setlength{\thickarrayrulewidth}{2\arrayrulewidth}
\setlength{\parindent}{0pt}
\makeindex
\urlstyle{same}
\usepackage[a4paper,left=2cm,right=2cm,top=3cm,bottom=3cm]{geometry}
\pagestyle{scrheadings}
\clearpairofpagestyles
\ihead{\small \rightmark}
\ofoot{\small \pagemark}
\renewcommand*{\sectionmark}[1]{%
\markright{\MakeMarkcase{\ifnumbered{section}{\sectionmarkformat}{}#1}}%
}
\begin{document}
\font\myfont=cmr16
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\begin{singlespace}
\subject{\large Maturitätsarbeit}
\title{\Large Die Darstellung Mandelbrot-artiger Mengen im dreidimensionalen Raum}
\end{singlespace}
\maketitle
\hrule
\newpage
\tableofcontents
\newpage
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures
\newpage
\addsec{Abkürzungsverzeichnis}
\begin{acronym}
\acro{mm}[MM]{Mandelbrot-Menge}
\end{acronym}
\pagebreak
\input{vorwort.tex}
\pagebreak
\input{einleitung.tex}
\newpage
\bibliography{literatur}
\end{document}
The exact error message is
! TeX capacity exceeded, sorry [input stack size=5000].\@makeother #1->\catcode `#112\relax .../~alfeld/math/mandelbrot/mandelbrot.html}}
![Alfeld, Peter: The Mandelbrot Set. https://www.math.utah.edu/~alfeld/math/mandelbrot/mandelbrot.html. – [Online; Stand 10.08.2020]](../../images/a1cfe682996a6ffae586e56a2daa3659.webp)
\urlinside aurlfield.url = "https://www.math.utah.edu/~alfeld/math/mandelbrot/mandelbrot.html",should be enough. (See also https://tex.stackexchange.com/q/455698/35864, which came up again just a few minutes ago.) – moewe Aug 10 '20 at 15:01\usepackage[utf8]{inputenc}is more than enough and\usepackage[utf8x]{inputenc}is overkill. Since\usepackage[utf8x]{inputenc}loadsucsyou don't need to say\usepackage{ucs}in any case. The problem withutf8x/ucsis that it is incompatible with some packages. – moewe Aug 10 '20 at 15:04url = {https://www.math.utah.edu/~alfeld/math/mandelbrot/mandelbrot.html},. – phil-elkabat Aug 10 '20 at 15:09style=numeric, sorting=noneas options? Would this achieve the same thing? – phil-elkabat Aug 10 '20 at 15:12biblatexwould be 'better' (and I would be biased anyway). There are certainly good reasons to switch tobiblatex(biblatexis usually easier to customise, supports Unicode properly, ...), but there are also equally good reasons to stick with BibTeX (publishers and the arXiv are not too keen onbiblatex, there are many, many ready-made BibTeX styles out there, ...). It all depends on the specific situation. ... – moewe Aug 10 '20 at 15:25\bibliographystyle{unsrtdin}withbiblatexwould take some work. – moewe Aug 10 '20 at 15:25