减少标签间距

减少标签间距

&使用表格后如何减少间距?

\documentclass{article}
\usepackage{tabularx}

\begin{document}

\begin{tabularx}{\textwidth}{X X}
\textbf{Greetings} & Refer to counter parts as Mr., Ms. or Mrs \\
\textbf{Gift Giving} & Gift giving is practised but not necessary. Taking someone out is also considered a gift. Gifts are generally given to close a deal or to indicate some celebration. \\
\textbf{Dressing} & Business dressing is a must in the business place. It is recommended that one dresses more conservatively than their counterpart. In the east this a must but in the west, the dressing is relatively casual. \\
\textbf{Tipping} & Tipping not necessary but if the service is good then it should be used. \\
\textbf{Time Management} & Time is extremely important in America. Therefore, it is important that one arrives on time. Do not be surprised if the client is discontent due one's tardiness. 
\end{tabularx}

\end{document}

主要问题是后面有太多空格&,我该如何解决这个问题?

在此处输入图片描述

答案1

代码

\documentclass{article}
\usepackage{tabularx,lipsum}

\begin{document}
\noindent
\begin{tabularx}{\textwidth}{@{}>{\bfseries}l X@{}}
    Greetings       & Refer to counter parts as Mr., Ms. or Mrs                                                                                                                                                                     \\
    Gift Giving     & Gift giving is practised but not necessary. Taking someone out is also considered a gift. Gifts are generally given to close a deal or to indicate some celebration.                                          \\
    Dressing        & Business dressing is a must in the business place. It is recommended that one dresses more conservatively than their counterpart. In the east this a must but in the west, the dressing is relatively casual. \\
    Tipping         & Tipping not necessary but if the service is good then it should be used.                                                                                                                                      \\
    Time Management & Time is extremely important in America. Therefore, it is important that one arrives on time. Do not be surprised if the client is discontent due one's tardiness.                                             \\
\end{tabularx}

\noindent\hrulefill

\noindent
\begin{tabularx}{\textwidth}{@{}>{\bfseries\raggedright}p{5em} X@{}}% \raggedright because justified text in such a narrow column is not good
    Greetings       & Refer to counter parts as Mr., Ms. or Mrs                                                                                                                                                                     \\
    Gift Giving     & Gift giving is practised but not necessary. Taking someone out is also considered a gift. Gifts are generally given to close a deal or to indicate some celebration.                                          \\
    Dressing        & Business dressing is a must in the business place. It is recommended that one dresses more conservatively than their counterpart. In the east this a must but in the west, the dressing is relatively casual. \\
    Tipping         & Tipping not necessary but if the service is good then it should be used.                                                                                                                                      \\
    Time Management & Time is extremely important in America. Therefore, it is important that one arrives on time. Do not be surprised if the client is discontent due one's tardiness.                                             \\
\end{tabularx}

\noindent\hrulefill

\noindent
\begin{tabularx}{\textwidth}{@{}>{\bfseries\raggedright\hsize=.4\hsize}X >{\hsize=1.6\hsize}X@{}}
    Greetings       & Refer to counter parts as Mr., Ms. or Mrs                                                                                                                                                                     \\
    Gift Giving     & Gift giving is practised but not necessary. Taking someone out is also considered a gift. Gifts are generally given to close a deal or to indicate some celebration.                                          \\
    Dressing        & Business dressing is a must in the business place. It is recommended that one dresses more conservatively than their counterpart. In the east this a must but in the west, the dressing is relatively casual. \\
    Tipping         & Tipping not necessary but if the service is good then it should be used.                                                                                                                                      \\
    Time Management & Time is extremely important in America. Therefore, it is important that one arrives on time. Do not be surprised if the client is discontent due one's tardiness.                                             \\
\end{tabularx}

\noindent
\begin{tabularx}{\textwidth}{@{}X@{\hspace{4em}}X@{}}
\lipsum*[1] & \lipsum*[1]
\end{tabularx}
\end{document}

输出

在此处输入图片描述

在此处输入图片描述

答案2

例如:

\documentclass{article}
\usepackage{tabularx}

\begin{document}

\newlength{\first}
\settowidth{\first}{\textbf{Time Management }}

\begin{tabularx}{\textwidth}{p{\first} X}
\textbf{Greetings} & Refer to counter parts as Mr., Ms. or Mrs \\
\textbf{Gift Giving} & Gift giving is practised but not necessary. Taking someone out is also considered a gift. Gifts are generally given to close a deal or to indicate some celebration. \\
\textbf{Dressing} & Business dressing is a must in the business place. It is recommended that one dresses more conservatively than their counterpart. In the east this a must but in the west, the dressing is relatively casual. \\
\textbf{Tipping} & Tipping not necessary but if the service is good then it should be used. \\
\textbf{Time Management} & Time is extremely important in America. Therefore, it is important that one arrives on time. Do not be surprised if the client is discontent due one's tardiness. 
\end{tabularx}

\end{document}

在此处输入图片描述

答案3

另一个解决方案可能是

\documentclass{article}
\usepackage{tabularx}

\begin{document}

\begin{tabularx}{\textwidth}{X!{\vrule width -3cm} X}
\textbf{Greetings} & Refer to counter parts as Mr., Ms. or Mrs \\
\textbf{Gift Giving} & Gift giving is practised but not necessary. Taking someone out is also considered a gift. Gifts are generally given to close a deal or to indicate some celebration. \\
\textbf{Dressing} & Business dressing is a must in the business place. It is recommended that one dresses more conservatively than their counterpart. In the east this a must but in the west, the dressing is relatively casual. \\
\textbf{Tipping} & Tipping not necessary but if the service is good then it should be used. \\
\textbf{Time Management} & Time is extremely important in America. Therefore, it is important that one arrives on time. Do not be surprised if the client is discontent due one's tardiness. 
\end{tabularx}

\end{document}

您可以将 -3cm 设置为您想要的任何值。

解决方案取自列之间的空白使用 \rowcolor{somecolor}

相关内容