내부 공백을 줄이는 방법 "

내부 공백을 줄이는 방법 "

급송

\documentclass{article}
\pagestyle{empty}
%\usepackage[slantedGreek,subscriptcorrection]{newtx}% this is what I use with many of other packages in a non-minimal example.
%% Text skips with glue being half of the value of the argument (cf. http://tex.stackexchange.com/q/657443, http://tex.stackexchange.com/a/657448, and http://tex.stackexchange.com/a/672701):
\newcommand{\flexibleHSkip}[1]{%
  \hskip#1
  plus.5\dimexpr\ifdim #1<0pt -\fi#1\relax
  minus.5\dimexpr\ifdim #1<0pt -\fi#1\relax
  \relax
}
\begin{document}\noindent
Consider the set \(Y\). Let \ldots\\
Consider the set \(Y\)\flexibleHSkip{-.1em}. \flexibleHSkip{.1em}Let \ldots\\
Consider the set \(Y\)\flexibleHSkip{-.1em}.\flexibleHSkip{.1em} Let \ldots\\
Consider the set \(Y\), and let \ldots\\
Consider the set \(Y\)\flexibleHSkip{-.1em}, \flexibleHSkip{.1em}and let \ldots\\
Consider the set \(Y\)\flexibleHSkip{-.1em},\flexibleHSkip{.1em} and let \ldots
\end{document}

수확량pdflatex

Computer Modern으로 출력

표준 글꼴(Computer Modern) 및

NewTX로 출력

뉴TX와 함께하세요. 사이의 공간이 줄어든 버전

답변1

나는 단순히 .수학에 적용할 것입니다. 어쨌든 mathrm 글꼴에서 가져와 글꼴에 지정된 커른이 적용될 수 있도록 합니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}

\begin{document}

$Y$. ABC

$Y.$ ABC


\end{document}

관련 정보