I am getting following error when trying to use external bibliography library:
Package biblatex Error: Patching 'babel' package failed. \begin{document}
From what I know, this is probably caused by a bug. However, I didn't find any suitable solutions. I am using TeXstudio (Windows) and installing packages is quite difficult. Whenever I find out I need a new package, I need to install it before the document can be compiled. Basically I am installing new packages on the fly. Could it be caused by incomplete libraries? Should I reinstall TeXstudio?
This is how TeXstudio looks like on Windows:

This is my preamble in lab01.tex (before \begin{document}):
\documentclass[12pt,twoside,a4paper]{article}
\usepackage[czech]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{float}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{attachfile}
\usepackage{subcaption}
\usepackage{cleveref}
\usepackage[document]{ragged2e}
\usepackage{textcomp}
\usepackage{gensymb}
\usepackage[
backend=biber,
style=alphabetic,
citestyle=authoryear
]{biblatex}
\addbibresource{lab01.bib}
\usepackage{siunitx}
\sisetup{
detect-mode,
detect-family,
detect-inline-family=math,
group-separator={.},
group-minimum-digits={3},
output-decimal-marker={,}
}
\captionsetup[subfigure]{subrefformat=simple,labelformat=simple}
\renewcommand\thesubfigure{(\alph{subfigure})}
\title{Výkonové polovodičové systémy~I \textemdash\ Laboratorní úloha č.~1\\ \large \emph{Řízený dvoupulzní usměrňovač}}
\author{Marek Poláček (POL0423)\\ VŠB \textendash\ Technická univerzita Ostrava,\\ Fakulta elektrotechniky a~informatiky.}
\date{\today}
This is content of lab01.bib:
@book{book:ZČU,
author = {VONDRÁŠEK, František},
title = {Výkonová elektronika},
date = {1998},
volume = {svazek~II},
publisher = {Západočeská univerzita},
location = {Plzeň},
isbn = {80-7082-485-9},
}
@book{book:ČVUT,
author = {PAVELKA, Jiří a~ÚČEŘOVSKÝ Zdeněk},
title = {Výkonová elektronika},
date = {2000},
edition = {Vydání~2.},
publisher = {ČVUT},
location = {Praha},
isbn = {80-01-02094-0},
}
biblatexpackage doesn't support active hyphen (which Czechbabeluses). I don't know what it will do with the bibliography when inserted into the document later, so I'll also investigate other solutions. I'll save both of the solutions for later use and if something doesn't work again, I can refer to them at that time. Thank you for your help. – Polda18 Mar 26 '20 at 19:04biblatexdoesn't expect an active hyphen there (where it should be a normal-). The patch proposed just replaces a normal-(in a file name) by\my@hyphen, which is harmless. In the document active hyphens behave normally. – Phelype Oleinik Mar 26 '20 at 19:35andin the.bibfile regardless of the desired output. I would also not use all caps for family names in the.bibfile. If desired you can let the style handle that. So I suggest to replaceauthor = {PAVELKA, Jiří a~ÚČEŘOVSKÝ Zdeněk},withauthor = {Pavelka, Jiří and Účeřovský, Zdeněk},. The style combinationstyle=alphabetic, citestyle=authoryear,is also a bit unusual, since the bibliography will feature alphabetic labels that are not used anywhere else in the document (citations are author-year). – moewe Mar 26 '20 at 19:41\usepackage[shorthands=off,czech]{babel}. – Polda18 Mar 29 '20 at 07:47\usepackage[shorthands=off,czech]{babel}the preamble you posted in the question will no longer produce the errorPackage biblatex Error: Patching 'babel' package failed.It may well be that there are other problems you are experiencing, but you need to tell us what errors you get or how the result otherwise is not what you expect. I will not download files from third-party pages such as https://ctrlv.cz/Lrir. All the code needed to investigate your problem should be in the question. – moewe Mar 29 '20 at 09:06biblatexerror, but there is no bibliography in the place it should be (just a section title I put there), this is what I am using right now:\usepackage[style=iso-numeric]{biblatex}. – Polda18 Mar 29 '20 at 11:33.logfile directly and post them as text. – moewe Mar 29 '20 at 11:35biblatexyou need to run Biber: https://tex.stackexchange.com/q/63852/35864 – moewe Mar 29 '20 at 11:38