단어 사이의 공백 - 한 줄만

단어 사이의 공백 - 한 줄만

한 줄로만 단어 간 공백을 변경하고 싶습니다. 나는 세계적인 변화를 원하지 않습니다. 여러 토론을 보았지만 아무 효과가 없었습니다. 아마도 제가 답변을 이해하지 못했기 때문일 수도 있습니다. 내 MWE를 참조하세요. 두 번째 줄을 축소하고 싶습니다. 감사해요.

\documentclass[foolscap, 10pt]{octavo}
\usepackage{xcolor}
\usepackage{anyfontsize}
\usepackage{fancyhdr}
\usepackage[
twoside=true,
paperwidth=115mm, paperheight=195mm,
layoutsize={115mm, 195mm},
%layoutoffset={5mm, 10mm},
%textheight=15.5cm,
textwidth=8.5cm,
%outer=1.5cm,
left=1cm,
right=1.5cm,
top=1.7cm,
bottom=2.2cm
    ]
    {geometry}
\usepackage[italian]{varioref}
\usepackage[italian]{babel}
\usepackage[babel=true]{microtype}%%% 
\usepackage{blindtext}
\usepackage{layout}
%MULTIPLE COLUMNS
\usepackage{paracol}
\twosided
\footnotelayout{m}
\columnsep=0.1\textwidth
\columnratio{0.65}



\usepackage{fontspec}
\usepackage{polyglossia}
\usepackage{ebgaramond}
\setdefaultlanguage{italian}
%\setotherlanguage{hebrew}
%\newfontfamily{\hebrewfont}{New Peninim MT}

\begin{document}
\newpage\null\thispagestyle{empty}
\thispagestyle{empty}
\vspace*{30pt}
 {\centering\footnotesize 
%Impaginazione \ dell'autore \\ Nel mese di Nissan    5783 \\ Aprile \ \  2023 \\
%Impaginazione \ dell'autore \\ Nissan 5783, Aprile  2023 \\
Impaginazione \ dell'autore \\ Nel mese di Nissan  5783 \\ Aprile 2023 \\
 \end{document}

답변1

를 통해 단어 사이의 공백을 수정할 수 있습니다 \spaceskip. 마찬가지로 를 통해 문장 사이의 공백을 수정할 수 있습니다 \xspaceskip. \spaceskip아래의 최소 작업 예제에서 사용법을 보여줍니다 .

\documentclass[10pt]{article}
\def\pangram{The quick brown fox jumps over the lazy dog.}
\parindent=0pt
\usepackage{stix2}
\begin{document}
I will first find the default interword spacing for this font:
\begin{itemize}
\item
fontdimen2 (default interword space) = \the\fontdimen2\font
\item
fontdimen3 (default interword space stretch) = \the\fontdimen3\font
\item
fontdimen4 (default interword space shrink) = \the\fontdimen4\font
\end{itemize}
Thus, using 10pt=1em, the default interword spacing for \fontname\font{} is 0.2345em plus 0.1167em minus 0.078em.
Using units of em here ensures that the interword spacing scales with the font size.
\par
\bigskip
\large
I increase the font size so that the interword spacing is more clear.
\par
\textbf{Default interword spacing:}
\par
\pangram
\par
\textbf{Moreinterword spacing:}
\par
{%
    \setlength{\spaceskip}{0.6em plus 0.30em minus 0.2em}%
    \pangram{}
}
\par
\textbf{Less interword spacing:}
\par
{%
    \setlength{\spaceskip}{0.1em plus 0.05em minus 0.0667em}%
    \pangram{}
}
\par
\textbf{Back to Default interword spacing:}
\par
\pangram
\end{document}

관련 정보