有人可以向我解释一下为什么我会得到:
第一部分
但是之后:
第二部分
第三部分
除了解释之外,任何能成功解决这一奇怪现象的方案都将不胜感激。
% !TEX TS-program = lualatexmk
\documentclass[oneside]{scrbook}
\usepackage[french,british]{babel}
\usepackage{fontspec}
\usepackage{relsize}
\usepackage{fmtcount} %For ''Part One'' instead of ''Part 1''
\usepackage{titlesec}
\renewcommand*{\partformat}{\partname~\numberstring{part}}
\begin{document}
\part{This is Just a Part}
\part{This is Yet another Part}
\part{And, in Fact, One More}
\end{document}
答案1
这似乎是一个fmtcount
无法加载的错误fc-british.def
:
\documentclass[oneside]{scrbook}
\usepackage[french,british]{babel}
\usepackage{fmtcount} %For ''Part One'' instead of ''Part 1''
\makeatletter
\input{fc-british.def}
\makeatother
\usepackage{titlesec}
\renewcommand*{\partformat}{\partname~\numberstring{part}}
\begin{document}
\part{This is Just a Part}
\part{This is Yet another Part}
\part{And, in Fact, One More}
\end{document}