我正在准备我的简历,在每一行的开头都遇到了多余的空格colchunks
。parcolumns
下图说明了一切:
注意 P 或 Project 前面和 Some 的 S 前面的多余空格。请注意,这种情况只发生在第一行。noindent
也无济于事。以下是生成此块的一段代码:
\begin{parcolumns}[rulebetween, nofirstindent, colwidths={1=.15\linewidth}]{2}
\colchunk[1]{
\noindent PROJECT\\*
WORK
}
\colchunk[2]{
Some project work here.\\*
Some project work here.
}
\end{parcolumns}
答案1
使用下列方法删除虚假空格(“回车符”被视为单个空格)%
:
\documentclass{article}
\usepackage{parcolumns}
\begin{document}
\begin{parcolumns}[rulebetween, nofirstindent, colwidths={1=.15\linewidth}]{2}
\colchunk[1]{%
PROJECT\\*
WORK%
}
\colchunk[2]{%
Some project work here.\\*
Some project work here.%
}
\end{parcolumns}
\end{document}