Skip to content
[email protected] edited this page May 4, 2021 · 11 revisions

Welcome to the nudtpaper wiki!

1. 编译方法

1.1 使用texstudio

1.1.1 文档类使用biber选项时即\documentclass[doctor,twoside,biber]{nudtpaper}:设置默认文献工具为biber

图片

设置完毕后点击构建并查看按钮 图片 ,即可完成自动编译。

1.1.2 文档类不使用biber选项时即\documentclass[doctor,twoside]{nudtpaper}:设置默认文献工具为bibtex

图片

1.2 使用命令行

注意编译命令:

1.2.1 在使用biber选项时:三步命令

xelatex thesis.tex

biber thesis

xelatex thesis.tex

(注意biber命令后面的文件名不需要加扩展名,如果要加也是要加bcf而不是tex,比如biber thesis.bcf)

1.2.2 不使用biber选项时:四步命令

xelatex thesis.tex

bibtex thesis

xelatex thesis.tex

xelatex thesis.tex

2. 字体

2.1 正文字体

2.1.1 ttf 选项

这是windows下常用的字体,通常不需要下载:

英文用

    \setmainfont{Times New Roman PS Std}
    \setsansfont{Arial}
    \setmonofont{Courier New}

中文用

    \setCJKmainfont[BoldFont={STZhongsong}]{SimSun}
    \setCJKsansfont{SimHei} % Hei
    \setCJKmonofont{FangSong} % Fangsong

2.1.2 otf 选项

英文用windows下常用的字体,通常不需要下载,中文用adobe字体,若没有则需要下载。

    %%%% Windows Thesis Fonts
    \setmainfont{Times New Roman PS Std}
    \setsansfont{Arial}
    \setmonofont{Courier New}
    %%%% Using Adobe Family Fonts
    \setCJKmainfont[BoldFont={STZhongsong}]{Adobe Song Std}
    \setCJKsansfont{Adobe Heiti Std} % Hei
    \setCJKmonofont{Adobe Fangsong Std} % Fangsong

2.1.3 fz 选项

英文用windows下常用的字体,通常不需要下载,中文用方正字体,若没有则需要下载。

    %%%% Windows Thesis Fonts
    \setmainfont{Times New Roman PS Std}
    \setsansfont{Arial}
    \setmonofont{Courier New}
    %%%% Using Founder Family Fonts
    \setCJKmainfont[BoldFont={FZYaSong-DB-GBK}]{FZShuSong_GB18030-Z01}
    \setCJKsansfont{FZHei-B01} % Hei
    \setCJKmonofont{FZFangSong-Z02} % fs

2.1.4 fandol 选项

英文用windows下常用的字体,通常不需要下载,中文用fandol字体,texlive带通常不需要下载。

    %%%% Windows Thesis Fonts
    \setmainfont{Times New Roman PS Std}
    \setsansfont{Arial}
    \setmonofont{Courier New}
    %%%% Using Fandol Family Fonts
    \setCJKmainfont{FandolSong}
    \setCJKsansfont{FandolHei} % Hei
    \setCJKmonofont{FandolFang} % fs

上面若字体不存在,可以根据 https://github.com/liubenyuan/nudtpaper/issues/15 提示下载

2.1.5 参考文献中的波浪号字体

使用FreeSerif 比较漂亮,通常texlive自带,不需要下载,若不存在,可以根据 https://github.com/liubenyuan/nudtpaper/issues/29 提示下载。

2.2 数学字体

目前使用默认的amsmath字体,texlive等发行版自带,无需下载。

其它格式修改

参考:https://github.com/liubenyuan/nudtpaper/issues/15