包 fncychap:如何让标题框变小

包 fncychap:如何让标题框变小

我是 LaTeX 的新手,想以报告模式撰写我的论文。

我正在尝试使用该软件包fncychap,但我注意到我的排版版本有一个巨大的框,延伸到页面的一半。(我删除了“章节”一词,并做了一些其他格式更改。)

这是我正在使用的代码:

%set document class
\documentclass[12pt]{report}

%% CHAPTER FORMATTING %%
\usepackage{fix-cm} 
\usepackage[Rejne]{fncychap}
\ChNameVar{\Huge}\ChNumVar{\fontsize{62}{65}}
\ChTitleVar{\centering\Huge} \ChRuleWidth{1pt}
\renewcommand\FmN[1]{}

有谁能建议把盒子做得更小一点,像原来的一样文档

谢谢,

珍妮

答案1

我对您的代码做了一些小改动,现在结果应该更接近您想要实现的结果(框现在更紧密了)。我还做了一些注释来解释这些变化。

%set document class
\documentclass[12pt]{report}

%% CHAPTER FORMATTING %%
\usepackage{fix-cm} 
\usepackage[Rejne]{fncychap}
% not needed
%\ChNameVar{\Huge}
% without \selectfont to actually activate the changes \fontsize doesn't do
% anything
\ChNumVar{\fontsize{62}{65}\selectfont}
% this is pretty close to the default being \centering\Huge\rm, so not needed
%\ChTitleVar{\centering\Huge}
% this is the default anyway
%\ChRuleWidth{1pt}
\renewcommand\FmN[1]{}

\usepackage{duckuments}

\begin{document}
\duckument
\end{document}

第一页的输出:

在此处输入图片描述

相关内容