We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
经过了3个月的千锤百炼(浑水摸鱼),下周终于要答辩了。现在有点空,把用模板使用过程中的一些经验总结一下。方便以后的小朋友吧。
注:2和3是由于我之前的文章的Latex代码已经写好了,迁移到这个模板上的时候出现冲突。如果从头在这个模板上开始写文章,则并不存在这样的问题。
\RequirePackage { algorithm2e } % 算法代码 \tl_set:Nn \algorithmcfname { 算法 } \SetAlCapSty {} \SetAlCapFnt {} \box_new:N \l__whu_space_box \hbox_set:Nn \l__whu_space_box { \nobreakspace } \SetAlgoCaptionSeparator { \hbox_to_wd:nn { 1 em - \box_wd:N \l__whu_space_box } {} } % 算法标题后会跟一个不间断空格 ~,这里将其宽度减掉
增加
\RequirePackage { algorithm } % 算法代码 \RequirePackage {algpseudocode} \renewcommand{\algorithmicrequire}{\textbf{Input:}} \renewcommand{\algorithmicensure}{\textbf{Output:}} \tl_set:Nn \algorithmcfname { 算法 } \box_new:N \l__whu_space_box \hbox_set:Nn \l__whu_space_box { \nobreakspace }
\RequirePackage { subcaption }
\RequirePackage{subfigure} \RequirePackage[subfigure]{tocloft}
\renewcommand\cftsubsecindent{4em}
最后,感谢模板的开发人员,没有这个模板的话写毕业论文应该相当麻烦。 然后我把我修改后的cls文件放在这里。我并不懂cls文件语法,这个文件的修改也全是照葫芦画瓢,但是它确实能够完成我的目标,只是结构比较混乱。希望能为大家提供参考。 whu-thesis.txt
The text was updated successfully, but these errors were encountered:
第四点:首先先把Windows中的Cambria Math的字体文件放在项目目录中,然后修改cls文件中的数学字体设置,往其中的可选项中添加cambria.ttc:
math-font .choices:nn = { xits , termes , cambria.ttc, none } { \__whu_math_fontset:n { \l_keys_choice_tl } }, % 数学字体
即可生效
Sorry, something went wrong.
似乎还需要在这里将原始的 math-font 替换为 cambria.ttc
% 根据系统判断调用字体 \sys_if_platform_windows:TF { \keys_define:nn { whu / style } { font .initial:n = times, math-font .initial:n = cambria.ttc, % changed here cjk-font .initial:n = windows, } } { \file_if_exist:nTF { /System/Library/Fonts/Menlo.ttc } % 使用 menlo 判断 mac,来自 ctex { \keys_define:nn { whu / style } { font .initial:n = times, math-font .initial:n = cambria.ttc, % changed here cjk-font .initial:n = mac, } } { \keys_define:nn { whu / style } { font .initial:n = xits, math-font .initial:n = cambria.ttc, % changed here cjk-font .initial:n = fandol, } } }
No branches or pull requests
经过了3个月的千锤百炼(浑水摸鱼),下周终于要答辩了。现在有点空,把用模板使用过程中的一些经验总结一下。方便以后的小朋友吧。
注:2和3是由于我之前的文章的Latex代码已经写好了,迁移到这个模板上的时候出现冲突。如果从头在这个模板上开始写文章,则并不存在这样的问题。
注释掉195-203行
增加
将372行注释掉
\RequirePackage { subcaption }
并将319行改为
\renewcommand\cftsubsecindent{4em}
目录中三级标题缩进 #66 (comment)最后,感谢模板的开发人员,没有这个模板的话写毕业论文应该相当麻烦。
然后我把我修改后的cls文件放在这里。我并不懂cls文件语法,这个文件的修改也全是照葫芦画瓢,但是它确实能够完成我的目标,只是结构比较混乱。希望能为大家提供参考。
whu-thesis.txt
The text was updated successfully, but these errors were encountered: