The Tilde (~) sign in the URL appears in the superscript position. How can I change it so that it gets the same position (near the normal line) as in the text here?
\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\hypersetup{
bookmarksnumbered=true,
}
\usepackage{kantlipsum}
\usepackage{biblatex}
\begin{filecontents}[overwrite]{references.bib}
@online{pope2021,
title = {Lectures on Geometry and Group Theory},
author = {Pope, C.},
date = {2021},
url = {https://people.tamu.edu/~c-pope/geom-group.pdf},
urldate = {2024-03-03},
}
\end{filecontents}
\addbibresource{references.bib}
\title{Testing URL in bibliography}
\author{Me}
\begin{document}
\chapter{Introduction}
\kant[1]
\url{https://people.tamu.edu/~c-pope/geom-group.pdf} \cite{pope2021}
\printbibliography[heading=bibintoc, title={References}]
\end{document}

utf8has been the default input encoding for all TeX engines for the last half dozen years or so. Unless your TeX distribution is prehistorically ancient, you needn't run\usepackage[utf8]{inputenc}. – Mico Mar 27 '24 at 17:09utf8thing. I kept using both\usepackage[utf8]{inputenc}and\usepackage[T1]{fontenc}from some other templates. Also, maybe I checked this answer (https://tex.stackexchange.com/a/44701/114006) as well. Thank you for clarifying it. – raf Mar 27 '24 at 18:33\usepackage[T1]{fontenc}. I'd assume that's never going to be default. At least, there are excellent reasons it shouldn't be. – cfr Mar 28 '24 at 02:48fontenchere, but it shouldn't be used by default, right? Why shouldn't it be? Can I safely omit both of them if not asked? – raf Mar 28 '24 at 04:01