Espaçamento irregular entre parbox

Espaçamento irregular entre parbox

Tenho espaço vertical irregular entre duas parboxes e entre uma parbox e o início de um novo parágrafo de texto. Como consertar isso? Aqui está um exemplo mínimo de trabalho.

\documentclass{article}

\usepackage{calc}

\begin{document}
Hello 0!!

\parbox[t]{\textwidth-2.5cm}{\noindent{\textsc{\bfseries{First Document Management System}:} This is a long description of Document Management System. Very long indeed to fill two lines.}}\parbox[t]{2.5cm}{\hfill{2005-2009}}

\parbox[t]{\textwidth-2.5cm}{\noindent{\textsc{\bfseries{Second Document Management System}:} This is a long description of Document Management System. Very long indeed to fill two lines.}}\parbox[t]{2.5cm}{\hfill{2009-Present}}

\parbox[t]{\textwidth-2.5cm}{\noindent{\textsc{\bfseries{Last Document Management System}:} This is a long description of Document Management System. Very long indeed to fill two lines.}}\parbox[t]{2.5cm}{\hfill{2009-Present}}

Hello 1!!

Hello 2!!

\end{document}

insira a descrição da imagem aqui

Quero uma lacuna semelhante, como a lacuna entre Hello 1 e Hello 2. entre duas paraboxes e uma lacuna semelhante entre a última parbox e Hello 1.

Responder1

Você deve escrever todos os seus \parboxes usando

\parbox[.]{<len>}{\strut ... \strut}

para obter a altura de linha apropriada - \strutgarante isso.

No entanto, sua opinião pode ser apresentada de maneira um pouco diferente usando o seguintetabularxabordagem e é muito mais fácil de gerenciar:

insira a descrição da imagem aqui

\documentclass{article}

\usepackage{tabularx,array}
\newcommand{\highlight}[1]{\textbf{#1}}
\begin{document}
Hello 0!!\strut

\noindent
\begin{tabularx}{\linewidth}{@{} X >{\raggedleft\arraybackslash}p{2.5cm}@{}}
  \highlight{First Document Management System}:
  This is a long description of Document Management System. Very long indeed to fill two lines. &
  2005--2009 \\
  \highlight{Second Document Management System}: This is a long description of Document Management System. 
  Very long indeed to fill two lines. &
  2009--Present \\
  \highlight{Last Document Management System}: This is a long description of Document Management System. 
  Very long indeed to fill two lines. &
  2009--Present
\end{tabularx}

Hello 1!!

Hello 2!!

\end{document}

Observe que o tabularxnão pode ser quebrado além do limite da página.

Responder2

Você pode usar o truque que pode encontrar emminha respostaparaComo manter um baselineskip constante ao usar minipáginas (ou \parboxes)?

Você também deve evitar marcações explícitas repetitivas, definindo um ambiente.

\documentclass{article}
\usepackage{calc,xparse}

\NewDocumentEnvironment{entry}{O{2.5cm}mm}
 {\noindent\begin{minipage}[t]{\textwidth-#1}
  \textsc{#3:} \ignorespaces}
 {\par\xdef\tpd{\the\prevdepth}% the trick in https://tex.stackexchange.com/a/34982/
  \end{minipage}%
  \makebox[#1][r]{#2}\par
  \prevdepth\tpd}

\begin{document}
Hello!!

\begin{entry}{2005-2009}{First Document Management System}
This is a long description of Document Management System. Very long 
indeed to fill two lines.
\end{entry}

\begin{entry}{2009-Present}{Second Document Management System}
This is a long description of Document Management System. Very long 
indeed to fill two lines.
\end{entry}

\begin{entry}{2009-Present}{Last Document Management System}
This is a long description of Document Management System. Very long 
indeed to fill two lines.
\end{entry}

Hello 1!!

Hello 2!!

\end{document}

insira a descrição da imagem aqui

informação relacionada