iihciyekub / MUST-Thesis

latex-template: 澳门科技大学,硕士or博士毕业论文模版

Home Page:https://iihciyekub.github.io/must-thesis-manual/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

想要将abstract等页面去除出目录

jutao-stu opened this issue · comments

commented

学长你好,想要将abstract、list of figures、list of tables去除出目录该如何修改代码?

commented

找到文件: .def/.sty/III2.comm.abstract.sty, 第23 - 48行, 将原始的 中文摘要环境命令修改, (英文摘要环境同逻辑修改)

原始

\newenvironment{abstract@cn}[1]{
    \clearpage
    \pagenumbering{Roman}
    \setcounter{page}{1}
    \setcnchapter{摘~要}
    \def\ii{#1}
    }{
    \par\noindent \textbf{關鍵字:} \ii
}

修改为:

\newenvironment{abstract@cn}[1]{
    \clearpage
    \pagenumbering{Roman}
    \setcounter{page}{1}
    \chapter*{\fontsize{18 pt}{\baselineskip}\selectfont 摘~要}
    \markboth{摘~要}{}
    \def\ii{#1}
    }{
    \par\noindent \textbf{關鍵字:} \ii
}

图表目录 , 在主文档文件文件第5 -14中的文档类选项中,将 以下的两个选项设置为 off 即可

    addFigTOC=off,
    addTabTOC=off

commented

谢谢前辈!