makebox 和 tabular 中的段落中的 \hbox 未满(badness 10000)

makebox 和 tabular 中的段落中的 \hbox 未满(badness 10000)

我正在使用 makebox 和 tabular 来\\创建空行。根据我的理解,这似乎是不好的行为,\\那么如何处理空行呢?谢谢

\documentclass[11pt]{article}

\begin{document}

\noindent \makebox[3cm][l]{Nama} : name\\
\makebox[3cm][l]{NIS} : number code\\
\makebox[3cm][l]{Judul} : title)\\\\
\begin{tabular}{ccc}
\multicolumn{3}{c}{Cilacap, 07 September 2017}                                                                    \\
Menyetujui,                                      &             & Siswa                                            \\
Mentor                                           &             &                                                  \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
(someone) &             & (someone) \\
                                                 &             &                                                  \\
                                                 & Mengetahui, &                                                  \\
someone                               &             & someone                                \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
(\hrulefill) &             & (\hrulefill)
\end{tabular}
\end{document}

答案1

通过使用\nullbetween \\\\( \\\null\\),可以避免这种情况。

\documentclass[11pt]{article}

\begin{document}

\noindent \makebox[3cm][l]{Nama} : name\\
\makebox[3cm][l]{NIS} : number code\\
\makebox[3cm][l]{Judul} : title)\\\null\\
\begin{tabular}{ccc}
\multicolumn{3}{c}{Cilacap, 07 September 2017}                                                                    \\
Menyetujui,                                      &             & Siswa                                            \\
Mentor                                           &             &                                                  \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
(someone) &             & (someone) \\
                                                 &             &                                                  \\
                                                 & Mengetahui, &                                                  \\
someone                               &             & someone                                \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
                                                 &             &                                                  \\
(\hrulefill) &             & (\hrulefill)
\end{tabular}
\end{document}

希望这可以帮助。

相关内容