警告:输入行上的布局比例设置为 0.5

警告:输入行上的布局比例设置为 0.5

当我编写论文时,我收到了以下警告:

./thesis.tex:54: 在输入行 54 中将布局比例设置为 0.5。

第 54 行包含\begin{document}

根项目文件thesis.tex,甚至只是第 54 行之前的前言部分,都太长了,无法在此处发布 MWE。有人知道这个警告是否有常见原因、它意味着什么以及如果我忽略它应该注意什么吗?


编辑:无论如何,有人想要 MWE,所以就在这里。

\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}

答案1

去除layouts包裹来自你的序言。它通常在文档设计过程中使用,而不是作为实际文档设置的一部分。

如果要查看文本块框架,可以使用showframe包裹showframe或者在使用时添加选项geometry

答案2

它只是通知您,layout 包绘制的图片将按 1:2 的比例绘制。这是默认值,您可以根据需要更改它。请参阅包文档的 1.2.1 节。

相关内容