With \documentclass[a4paper, 6pt]{article} I still have a fontsize of 8pt.
How can I reduce the global font size for exemple to write a reference card of something?
With \documentclass[a4paper, 6pt]{article} I still have a fontsize of 8pt.
How can I reduce the global font size for exemple to write a reference card of something?
You could load package scrextend with option fontsize=6pt. And you need a font which provides the needed sizes.
\documentclass[a4paper]{article}
\usepackage[fontsize=6pt]{scrextend}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
Result:
scrextend is part of the KOMA-Script bundle. It provides some KOMA-Script features for usage with other classes. It is not possible (and not necessary) to load this package with a KOMA-Script class.
– esdd
Aug 01 '19 at 06:20
An alternative solution through the fontsize package. It is based on scrextend but it is totally independent from KOMA.
\documentclass[a4paper]{article}
\usepackage[fontsize=6pt]{fontsize}
\usepackage{lipsum}
\begin{document}
\lipsum
\end{document}
Here is a minimal working example which shows some features of the package:
\documentclass[a4paper]{article}
\usepackage{fontsize}
\changefontsize[13.3]{11}
% A smoothly scalable font is required for some features:
%\usepackage{cochineal}
\begin{document}
Main font set to 11 pt on 13.3 pt.
\changefontsize[13]{12.8}
Main font set to 12.8 pt on 13 pt.
\printsamples{12.4pt}{10.5pt}
\end{document}
articleclass options for font sizes are10pt,11ptand12pt---6ptis not a valid option. – Peter Wilson Jul 31 '19 at 16:35