
(1) Parbox 與 Standard 之間
我想在 Parbox 後面緊跟 Standard 的地方添加一個空格。但是,我不想在兩個 Parbox 之間添加空格。
所以在下面的例子中,我想在行與行之間添加一個空格
- 2和3;
- 5和6;
- 7和8。
但是,我不想在第 4 行和第 5 行之間添加空格。
我可以在序言中添加什麼來實現這個結果?
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{calc}
\usepackage{babel}
\begin{document}
1
\noindent\fbox{\parbox[t]{1\columnwidth - 2\fboxsep - 2\fboxrule}{%
2%
}}
3
\noindent\fbox{\parbox[t]{1\columnwidth - 2\fboxsep - 2\fboxrule}{%
4%
}}
\noindent\fbox{\parbox[t]{1\columnwidth - 2\fboxsep - 2\fboxrule}{%
5%
}}
6
\noindent\fbox{\parbox[t]{1\columnwidth - 2\fboxsep - 2\fboxrule}{%
7%
}}
8
\end{document}
(2) 兩次練習之間
同樣,我想在任何兩個練習之間全局添加一個空格(但不在任何其他環境和練習之間或練習和任何其他環境之間)。我可以在序言中添加什麼來實現這個結果?