2

Is there a way to set font arial and font size 8.5pt using TexStudio? Which documentclass can apply font size 8.5pt?

2 Answers2

4

The scrartcl class can work with any font but you have to use XeLaTeX or LuaLaTeX:

\documentclass[fontsize=8.5pt,DIV=calc]{scrartcl}
\usepackage{fontspec}
\setmainfont{Arial}
\begin{document}
This should be in 8.5pt font.
\end{document}
wilx
  • 2,339
3

You can try:

% The command below will automatically compile your document with XeLaTeX, which is needed if you want to use Arial or any font which is installed on your system.
% !TeX program = xelatex

\documentclass{article}

\usepackage{fontspec} % Needed to run XeLaTeX
\usepackage{lipsum} % (Use for dummy (Lorem ipsum) text
\setmainfont{Arial}

\usepackage[9pt]{extsizes} % The sizes available are 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, and 20pt

\begin{document}
    \lipsum[1]
\end{document}.
Roald
  • 1,245