I am doing a typography assignment in School where we have to take a random text and then format it to be "typographically correct". Most students use Microsoft Word but I chose to use LaTeX (thought it would be easier). I have finished the task but now my teacher requires us to fill in a paper that states the different values used in the document for different section of the text (font size for [title, sections, text], baseline spacing [title, section, text], spacing for title and sections, Fonts used etc. I left almost every setting at default and I used the "book" document class. I can't seem to find the default values for anything in LaTeX. The only things I have found is the default font for text (Computer Modern Roman) and the font size for text (11pt).
EDIT: This is the beginning of my document:
\documentclass[a4paper,11pt,twoside]{book}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{gensymb}
\usepackage{multicol}
\usepackage{float}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{My name\\The future of Virtual Reality}
\fancyhead[RE,LO]{30/09/2017}
\fancyfoot[LE,RO]{\thepage}
\setlength{\parskip}{1em}
\title{The future of Virtual Reality}
\author{My name}
\date{June 2017}
\begin{document}
\frontmatter
\maketitle
\tableofcontents


> \OT1/cmr/m/n/11 . <recently read> \font– samcarter_is_at_topanswers.xyz Oct 02 '17 at 12:19EDIT: Okay I figured out how to use the layout package but where do I read the actual output/info?
– Schytheron Oct 02 '17 at 12:33\showthe\fontat the place you want to know the font, for example in a chapter title it gives `> \OT1/cmr/bx/n/24.88 .l.26 \chapter{title\showthe\font}`
– samcarter_is_at_topanswers.xyz Oct 02 '17 at 12:43\layoutsomewhere inside your document and it will include two images where various page informations are displayed. – samcarter_is_at_topanswers.xyz Oct 02 '17 at 12:45