I am new user in the TeX world. I have installed TeX with Debian as follows:
apt-get install --no-install-recommends texlive
It gives me a basic installation of about 200 Mb, with PDFLATEX.
The problem is that I need to have Arial 11 pt for a report. It must be Arial and not Helvetica. Since PDFLATEX does not allow to have TTF fonts, is there maybe a possible workaround or trick to allow PDFLATEX to produce (really) Arial 11pt.
\documentclass[11pt,a4paper,oneside]{report}
\usepackage[utf8]{inputenc}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\author{me}
\usepackage[scaled]{helvet}
\usepackage[T1]{fontenc}
\renewcommand\familydefault{\sfdefault}
\title{my report in arial 11pt}
\begin{document}
\section{my introduction}
Hello this is my report
\end{document}