I'm writing a document. my code is:
Code: Select all
\documentclass[a4paper,10pt]{book}
\usepackage[utf8x]{inputenc}
\usepackage[italian]{babel}
\title{TESI FINASS}
\author{Ivan Granito}
Have You some advice?
Tanks
Code: Select all
\documentclass[a4paper,10pt]{book}
\usepackage[utf8x]{inputenc}
\usepackage[italian]{babel}
\title{TESI FINASS}
\author{Ivan Granito}
NEW: TikZ book now 40% off at Amazon.com for a short time.
scrbook
instead of book
. It's a KOMA class, which can be seen as extension of the standard classes, have a look at the manual. With this class, many things are easier, and so is choosing an arbitrary fontsize, which you could give in pt and even in mm and other units.Code: Select all
\documentclass[a4paper,fontsize=14pt]{scrbook}
book
class does not support 14pt font size IIRC. There are several possibilities, though:scrbook
would be the replacement for book
then)extsizes
bundle like extbook
scrextend
package from the koma-script bundle which extends some of KOMA's features to other classesCode: Select all
\documentclass[a4paper,14pt]{extbook}
\usepackage[utf8x]{inputenc}
\usepackage[italian]{babel}
\title{TESI FINASS}
\author{Ivan Granito}
\usepackage{lipsum} for dummy text
\begin{document}
\maketitle
\lipsum
\end{document}
Code: Select all
\documentclass[a4paper]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage[italian]{babel}
\usepackage{scrextend}
\changefontsizes{14pt}
\title{TESI FINASS}
\author{Ivan Granito}
\usepackage{lipsum}% for dummy text
\begin{document}
\maketitle
\lipsum
\end{document}
You gave very good additions, such as usingcgnieder wrote:PS: Oops, just seen that Stefan already replied
memoir
or scrextend
as further options,NEW: TikZ book now 40% off at Amazon.com for a short time.