The following code produces a strange rendered percentage symbol which looks like this:

Here's my code:
\documentclass[12pt, a4paper, twoside, %openright,
toc=listof, BCOR=5mm, bibliography=totoc, parskip=half]{scrreprt}
\usepackage{helvet}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
11-13\%
\end{document}
Now I used the board search and came across this solution: Combining Helvetica and Symbol fonts with mathspec But since I'm not too familiar with all these LaTeX packages and I'm not using them, I didn't want to just add them to my code, but wanted to know, which lines i need to add to get my code working without possibly changing anything else which i might not want. Thanks in advance


helvetchanges the default sans-serif font, but loading the package does not change the default text font from serif to sans-serif. You should try\sffamily 11-13\%. Be sure not to forget to escape the%symbol. – Mico Oct 09 '15 at 13:58\textsf{11-13\%}. – Sigur Oct 09 '15 at 14:00%" symbol is the comment character in TeX and LaTeX. If you need to actually show the percent symbol itself, you must escape it, i.e., write\%. – Mico Oct 09 '15 at 14:03\renewcommand{\familydefault}{\sfdefault}in the preamble. – Thruston Oct 09 '15 at 14:04\usepackage{helvet}in the preamble. But IF that alone does not make the document to show up in helvetica, than i apparently don't want it to be in helvetica. – Max Oct 09 '15 at 14:13helvetpackage just sets the sans serif font, which scrrpt uses for headings I believe. The percent sign you see is the normal % sign for Computer Modern, which is the default font. – Thruston Oct 09 '15 at 14:17