我正在写一本包含多个题词的书,我想更改一些题词的配置(如宽度、规则长度等)。由于我只编辑一些题词,所以我想找到一种方法来让其他题词保留默认配置。
所以,我的问题是:有没有办法改变一个(且只有一个)题词的配置,而保持其余题词的原样?
如果有办法更改文本中的配置,这样新值从设置那一刻起就得到遵守,我就可以根据需要设置这些值,编写题词,然后将它们重新重置为默认值。在这种情况下,我问你:你知道题词配置的默认值是什么吗(例如宽度和规则长度)?我在哪里可以找到它们?
编辑:
根据要求(抱歉,信息不足:/),这里有一个代码可以表达我的意思:
...
\usepackage{epigraph}
...
\epigraph{text1}{author1} % Epigraph with default configurations
...
% Make some changes, that either act only on the next epigraph, or can be unmade after it
\epigraph{text2}{author2} % Epigraph with new configurations
% Unmake the changes, if that's the case
...
\epigraph{text3}{author3} % Epigraph with default configurations
...
答案1
戴上我那非常古怪的读心术,也许您正在使用该epigraph
软件包。如果是这样,那么您可以本地更改题词布局。
...
\usepackage{epigraph}
...
\epigraph{text}{source} % first epigraph
...
% \begin % wrong for local redefinitions
\begingroup % local redefinitions
\setlength{epigraphwidth}{0.7\textwidth} % make it wider
% other changes
\epigraph{text2}{source2} % second epigraph
% \end % wrong for forget local redefinitions
\endgroup % forget local redefinitions
...
\epigraph{text3}{source3} % third epigraph typeset as per first epigraph
...
有关默认题词布局的详细信息,请阅读手册(texdoc epigraph
),特别是代码的前几行。
如果您不使用该epigraph
软件包,那么由于您提供的信息不足,我就浪费了我的时间。 --- GOM
编辑
在上面我使用了\begin
和,\end
这是完全错误的,因为它们带有参数。我应该使用\begingroup
和\endgroup
。