我想僅更改一行中的字間空間。我不想要任何全球性的改變。我看到了一些討論,但沒有任何效果,也許只是因為我不理解答案。請看我的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}