Problema de espaçamento estranho no meio do parágrafo ao usar natbib, microtype, flowfram e a fonte charter BT

Problema de espaçamento estranho no meio do parágrafo ao usar natbib, microtype, flowfram e a fonte charter BT

Estou usando natbib, microtypee flowframa fonte charter BT (por meio do comando \usepackage[bitstream-charter]{mathdesign}) e estou obtendo os seguintes resultados:

http://i.imgur.com/N4QrPee.png?2

Outras instâncias no meu documento principal mostram isso (talvez seja uma pista para você):

http://i.imgur.com/5EuwMHw.png?2

Este é o código para gerar o arquivo:

\documentclass{extarticle}

\usepackage[margin=2cm]{geometry}

\usepackage[bitstream-charter]{mathdesign}
\usepackage{titlesec}
\usepackage[square, numbers, sort]{natbib}
\usepackage[letterspace=400]{microtype}
\usepackage{flowfram}


\newflowframe[1-4,6]{\dimexpr\textwidth/3-2\columnsep/3}{\textheight}{0pt}{0pt}[leftcolumn]

\setlength\parindent{16pt}

\begin{document}

\tolerance=10000
The manufacturing process is mostly subject to industrial legislation. Although the industrial process is a relatively large actor in the use of fossil fuels\citep{voorzanger2014}, the consideration of usage of renewable energy sources has many hurdles. The primary hurdle is the artificially deflated pricing on energy from non-renewables. Studies on feasibility of an adjustment and usage of renewable energy sources in the industrial sector have shown legislation is in fact a culprit, linking domestical industrial activities directly to current energy policies in place\citep{lund2009}. Furthermore, an example of an accessible legislation is the Extended Producer Responsibility (EPR), which indirectly circumvents additional energy costs by incentivising recollection and reuse of products\citep{kiddee2013}. Other directives also geared towards promotion of recycling and take-back more so circumvent a change in thinking of the legislative bodies dealing with the industrial energy sector, which is why a small portion of examples will be discussed in the recycling cycle rather than here.

However, mobile phones also use REEs, ranging from scandium for high performance equipment, to neodymium for ear speakers\citep{website:namibiaearth,humphries2010}: vital components for the production of a cellular phone. The shortage depletion risk ranges even further however. Estimates have shown that REEs range in depletion risk from 500 years for niobium to 7 years for antimony, considering stable demand\citep{website:mining}.
\end{document}

Eu produzi esse estranho problema de espaçamento em distribuições TL13 datadas e também em distribuições TL14 extremamente recentes. Eu sempre executo uma instalação completa para todos os pacotes.

Também noto que issoapenasacontece na coluna da esquerda, não para nenhuma outra coluna que declarei, por exemplo:

\newflowframe{\dimexpr\textwidth/3-2\columnsep/3}{\textheight}{\dimexpr\textwidth/3-2\columnsep/3+\columnsep}{0pt}[centercolumn]
\newflowframe{\dimexpr\textwidth/3-2\columnsep/3}{\textheight}{\dimexpr2\textwidth/3-4\columnsep/3+2\columnsep}{0pt}[rightcolumn]

Este é um problema conhecido e/ou tem uma solução alternativa?

Responder1

\tolerance=10000significa que você está dizendo explicitamente ao TeX que não se importa com o quão ruim é a quebra de linha. Portanto, não é surpreendente que seja ruim.

A remoção da \toleranceconfiguração diz ao TeX para pelo menos tentar produzir alguma saída razoável:

insira a descrição da imagem aqui

\documentclass{extarticle}

\usepackage[margin=2cm]{geometry}

\usepackage[bitstream-charter]{mathdesign}
\usepackage{titlesec}
\usepackage[square, numbers, sort]{natbib}
\usepackage[letterspace=400]{microtype}
\usepackage{flowfram}


\newflowframe[1-4,6]{\dimexpr\textwidth/3-2\columnsep/3}{\textheight}{0pt}{0pt}[leftcolumn]

\setlength\parindent{16pt}

\begin{document}

%\tolerance=10000
The manufacturing process is mostly subject to industrial legislation. Alth\-ough the industrial process is a relatively large actor in the use of fossil fuels\citep{voorzanger2014}, the consideration of usage of renewable energy sources has many hurdles. The primary hurdle is the artificially deflated pricing on energy from non-renewables. Studies on feasibility of an adjustment and usage of renewable energy sources in the industrial sector have shown legislation is in fact a culprit, linking domestical industrial activities directly to current energy policies in place\citep{lund2009}. Furthermore, an example of an accessible legislation is the Extended Producer Responsibility (EPR), which indirectly circumvents additional energy costs by incentivising recollection and reuse of products\citep{kiddee2013}. Other directives also geared towards promotion of recycling and take-back more so circumvent a change in thinking of the legislative bodies dealing with the industrial energy sector, which is why a small portion of examples will be discussed in the recycling cycle rather than here.

However, mobile phones also use REEs, ranging from scandium for high performance equipment, to neodymium for ear speakers\citep{website:namibiaearth,humphries2010}: vital components for the production of a cellular phone. The shortage depletion risk ran\-ges even further however. Estimates have shown that REEs range in depletion risk from 500 years for niobium to 7 years for antimony, considering stable demand\citep{website:mining}.
\end{document}

informação relacionada