在draft
-模式下,黑色标记表示保留空间太小。这也出现在以下示例中,但不应该出现。我怎样才能将两个minipage
s 完全并排放置?
\documentclass[draft=on]{scrbook}
\usepackage{blindtext}
\begin{document}
\begin{minipage}{.5\textwidth} %
TEXT 1
\end{minipage} %
\begin{minipage}{.5\textwidth} %
TEXT 2
\end{minipage}
\end{document}
答案1
您的输入有两个问题。
- 从第一个小页开始一个新段落,并添加缩进。
- 两个小页面之间有一个空格。
\documentclass[draft=on]{scrbook}
\usepackage{blindtext}
\begin{document}
\noindent
\begin{minipage}{.5\textwidth}
TEXT 1
\end{minipage}% This must go next to `\end{minipage}`
\begin{minipage}{.5\textwidth}
TEXT 2
\end{minipage}
\end{document}
注意
text %
有“text” 后面有一个空格,而
text%
没有。%
你正在使用的
\begin{minipage}{.5\textwidth} %
什么都不做;行尾或后面的空格\begin{minipage}{...}
无论如何都会被忽略。因此输入
\begin{minipage}{.5\textwidth} %
\begin{minipage}{.5\textwidth}%
\begin{minipage}{.5\textwidth}
都是一样的。