When I compile my dissertation, I have the warning:
./thesis.tex:54: Layout scale set to 0.5 on input line 54.
Line 54 contains \begin{document}.
The root project file thesis.tex, even just the preamble part before line 54, is way too long to post a MWE here. Does anyone know if there is a common cause of this warning, what it means and what I should be aware of if I ignore it?
Edit: someone wanted the MWE anyway, so here it goes.
\documentclass[12pt]{book}
\usepackage{amsmath} %Never write a paper without using amsmath for its many new commands
\usepackage{amssymb} %Some extra symbols
%\usepackage{makeidx} %If you want to generate an index, automatically
\usepackage{graphicx}
%\usepackage[draft]{graphicx} %use [draft] to not paint images for way faster compile times
\usepackage{caption} %If you want to include postscript graphics
\usepackage{microtype, times, xcolor, lipsum, inputenc} %fancy quote (in mystyle.sty) package dependencies
%\usepackage{mystyle} %Create your own file, mystyle.sty where you put all your own \newcommand statements, for example.
\usepackage{indentfirst}
\usepackage{url}
\usepackage{units}%for text like 1/2
\usepackage{blindtext}
\usepackage[english]{babel}
\usepackage{pdfpages}
\usepackage[titletoc]{appendix}
\usepackage[normalem]{ulem} %strikeout text, http://tex.stackexchange.com/questions/23711/strikethrough-text#23712
\usepackage{siunitx} %usage \SI{50}{\milli\kelvin} ==> 50 mK
\usepackage{csquotes} %makes quoted paragraphs have proper indentations with \begin{displayquote}
\usepackage{layouts} %to show margin sizes
\usepackage{setspace} %doublespacing
\usepackage{subfig}
%TikZ
\usepackage{tikz}
\usepackage{circuitikz}
\usetikzlibrary{shapes,decorations}
\usepackage{pgfplots} %quick drawing TikZ graphs
\usepgfplotslibrary{units}
\pgfplotsset{compat=1.9} %suppress TikZ warning
\begin{document}
\end{document}
./mwe.tex:32: Layout scale set to 0.5 on input line 32., which is the\begin{document}line. – user1717828 Mar 16 '16 at 19:34