我想在应用独立居中后添加一行空白,如下所示:
Bla bla bla. Figure 1 presents the results of the overall period: \\
{\centering [Insert Figure 1 here] \par} \\
Overall, the model seems to work well bla bla bla
第一个 \ 可以工作并创建一个空行,但第二个 \ 似乎不起作用。我该如何解决这个问题?
答案1
\documentclass{article}
\begin{document}
Bla bla bla. Figure 1 presents the results of the overall period: \\
{\centering [Insert Figure 1 here] \par} \\
Overall, the model seems to work well bla bla bla
\end{document}
第一个\\
产生警告
Underfull \hbox (badness 10000) in paragraph at lines 5--6
这是 TeX 报告的最高不良程度。切勿将 放在\\
段落末尾,它不会增加垂直空间,而只会强制段落包含一个没有内容的虚假额外行(因此发出警告)。
第二个\\
会生成一条错误消息,
! LaTeX Error: There's no line here to end.
永远不要忽略错误,TeX 从错误中恢复的方式只是为了允许检查文件的其余部分是否存在进一步的错误,它不是为制作合理的 pdf 输出而设计的。这里的错误是因为在段落开始之前\\
指定\par
了一行来结束,
\documentclass{article}
\begin{document}
Bla bla bla. Figure 1 presents the results of the overall period:
\begin{center}
[Insert Figure 1 here]
\end{center}
Overall, the model seems to work well bla bla bla
\end{document}