I have added links in my text by using \url and so have I in my bib: @Misc and then using \howpublished, there inside I use \url, too.
I have done this before, but my problem is that neither in my text nor in the bibliography my links appear the "normal" or "right" way.
They are printed in the font style the rest of the text uses and not Courier New. If I use things like \urlstyle{tt}, it changes the font but the lines are getting too long. There are no line breaks any more.
\usepackage[hyphens]{url} does not help, too.
Do you have an idea to print my urls in Courier New and having line breaks? Otherwise, especially in the bibliography, there are lines that should stop at https://tex.stackexchange.com/ or at https://tex.stackexchange, but stop at https://tex.stackexchange.com/questions/ and "ask" is printed to the next line.
\documentclass[fontsize=12pt,oneside,headsepline]{scrbook}
\usepackage[ngerman]{babel}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage[onehalfspacing]{setspace} %h
\usepackage[urlcolor = black,plainpages=false,pdfpagelabels=true,
colorlinks=true,linkcolor=black,citecolor=black,
bookmarksopen=true]{hyperref}
\usepackage[style=apa,natbib=true,backend=biber,uniquename=false,
pagetracker=true,sortcites=true,sorting=nyt,backref=true,
hyperref=true]{biblatex}
\DeclareLanguageMapping{german}{german-apa}
\DeclareFieldFormat{apacase}{#1}
\DefineBibliographyStrings{ngerman}{
andothers = {{et al\adddot}}, }
\usepackage{parskip}
\usepackage[german]{algorithm2e}
\usepackage{tabularx}
\usepackage{longtable}
\usepackage{tablefootnote}
\usepackage{lmodern}
\usepackage{subfigure}
\usepackage{comment}
\usepackage{placeins}
\usepackage{scrpage2}
\addbibresource{BeispielQVZ.bib}
\usepackage{nccmath}
\usepackage{tikz}
\usepackage{amsthm}
\newtheoremstyle{break}
{8pt}{}%
{\itshape}{}%
{\bfseries}{}% % Note that final punctuation is omitted.
{\newline}{}
\theoremstyle{break}
\newtheorem{mydef}{Definition}[chapter]
\usepackage{tikz} % Für Zeichnungen mit dem tikz-Package
\usepackage{tablefootnote}
\usepackage[all]{nowidow}
\makeatletter
\@removefromreset{footnote}{chapter}
\@removefromreset{footnote}{part}
\makeatother
\begin{document}
EDIT:
bib:
@Misc{dictcc2016,
author = {{dict.cc}},
title = {{supervised}},
year = {2016},
howpublished = {\url{https://www.dict.cc/?s=supervised}},
note = {Accessed 24.11.2016},
}
\begin{document}
\url{http://scholar.google.de/
\end{document}
Using the bib entry above as well as the url in the document looks regarding the font style like this, at the moment.
For avoiding confusion, I did try various ways like using \urlstyle{tt} and so on, but it did not work so I deleted them again.


\texttt)? As you haven't posted a usable example it is rather hard to guess how the urls are finally looking, or what to change. It would help if you could fix the example, deleting all packages not involved in this issue and adding a small test bibliography that is included by a small complete document. – David Carlisle Jan 11 '17 at 13:15