我怎样才能使删除大写字母(lettrine)后的前几行向左对齐?

我怎样才能使删除大写字母(lettrine)后的前几行向左对齐?

使用以下代码,字母章节编号后面的第一行文本的开头并不总是与第二行的开头完全对齐。

改变 Nindent 或 Findent 的值并不能从整体上解决问题。

\documentclass[12pt]{article}
\usepackage{xcolor}
\usepackage{lettrine}
\usepackage{lipsum}

%%%%chapter format
\newcommand{\chaplabel}{}
\newcommand{\gnumChapters}{0}
\newcommand{\gChapter}[1]{\lettrine[lines=2,nindent=.25em,findent=.1em]{{\textcolor{black}{#1}}}{}\markboth{\chaplabel\ #1:1}{\chaplabel\ #1:1}\renewcommand{\gnumChapters}{#1}}

%%%%verse format
\makeatletter
% define a 'smaller textsuperscript' macro
\DeclareRobustCommand*\textsmallsuperscript[1]{%
\@textsmallsuperscript{\selectfont#1}}
\def\@textsmallsuperscript#1{%
{\m@th\ensuremath{^{\mbox{\fontsize\ssf@size\z@#1}}}}}
\makeatletter

\newcommand{\gverse}[1]{{\textsmallsuperscript{#1}\hspace*{.1em}\ignorespaces\markboth{\chaplabel\ \gnumChapters:#1}{\chaplabel\gnumChapters:#1}}\ignorespaces}

\begin{document}
\gChapter{1}
\gverse{1-2}\lipsum[2]
\gChapter{11}
\gverse{3}\lipsum[3]
\gChapter{22}
\gverse{4}\lipsum[4]
\gChapter{33}
\gverse{5}\lipsum[5]
\gChapter{245}
\gverse{6}\lipsum[6]
\end{document}

在此处输入图片描述

答案1

缩进块的第一行以 后的行尾空格开始\gChapter{...}。可以使用 删除它\ignorespaces,例如:

\newcommand{\gChapter}[1]{%
  \lettrine[
    lines=2,
    findent=0.5em,
    nindent=0em,
  ]{%
    {\textcolor{black}{#1}}%
  }{}%
  \markboth{\chaplabel\ #1:1}{\chaplabel\ #1:1}%
  \renewcommand{\gnumChapters}{#1}%
  \ignorespaces
}

LaTeX 警告

LaTeX Font Warning: Size substitutions with differences
(Font)              up to 5.26443pt have occurred.

可以通过使用包fix-cm(使 Computer Modern 字体可扩展) 或lmodern(Latin Modern Fonts,Computer Modern 的后继者) 来删除。示例使用后者:

结果,第 1 页

相关内容