是否可以锁定文本内联部分的对齐间距?

是否可以锁定文本内联部分的对齐间距?

我使用\emph来表示文本中的图表,由于它们几乎像数学变量一样被引用,因此我希望保持它们在视觉上紧凑。但是,LaTeX 似乎朝着相反的方向发展,并非常努力地在强调的文本周围放置最大数量的对齐空间,这看起来更糟,因为它是倾斜的文本。

我认为最好的解决方案是将文本\emph从对齐过程中隔离出来,但我不知道这是否会产生其他问题,或者看起来是否更糟。有人有什么想法吗?

这是一个例子,请注意图表旁边单词“Dia.”和“1”之间的间距:

对齐间距错误

下面是生成这个美丽事物的代码,尽管我认为它与这个特定问题不太相关 — — 我使用的babel是葡萄牙语和sidecap这里 — —:

\begin{SCfigure}[][h!]
    \begin{subfigure}[t]{.29\textwidth}
        \includegraphics[width=1\textwidth]{2 - Problema 4 - Dia 1}
        \caption*{\emph{Dia. 1. Correto}}
    \end{subfigure}
    \hfill
    \begin{subfigure}[t]{.29\textwidth}
        \includegraphics[width=1\textwidth]{2 - Problema 4 - Dia 2}
        \caption*{\emph{Dia. 2. Errado}}
    \end{subfigure}
    \hfill
    \caption*{\textbf{Resposta ao Problema 4}\\\\Preto 1 no \emph{Dia. 1} captura duas pedras.\\\\Se Preto joga 1 no \emph{Dia. 2}, Branco pode resgatar suas pedras estendendo em 2.}
\end{SCfigure}

\pagebreak

\begin{itemize}
  \item[\textbf{Resposta ao Problema 5}]
      Preto 1 no \emph{Dia. 1} captura duas pedras.

      Se Preto estende para 1 no \emph{Dia. 2}, Branco pode resgatar suas pedras conectando em 2.
  \item[\textbf{Resposta ao Problema 6}]
      Preto 1 no \emph{Dia. 1} captura as duas pedras marcadas.

      Se Preto estende para 1 no \emph{Dia. 2}, Branco pode resgatar suas duas pedras capturando as duas pedras pretas com 2.
  \item[\textbf{Resposta ao Problema 7}]
      Preto 1 no \emph{Dia. 1} captura duas pedras.

      Se Preto faz atari com 1 em \emph{Dia. 2}, Branco pode resgatar suas pedras e capturar duas do Preto com 2.
\end{itemize}

相关内容