We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在同时增加figtoc、tabtoc的时候,整个分页会失效, 看了一下实现为什么会选择这么写,可能作者在写的时候基于了什么考虑。
\ifcug@toc@tab@show \let\cleardoublepage\relax \let\clearpage\relax \fi
第二个问题就是 图目录和表目录的,PDF链接是失效的,这个我没有找到原因。
The text was updated successfully, but these errors were encountered:
@aschenmaker 发几张截图看看
Sorry, something went wrong.
在cugtheis.cls文件中添加: \renewcommand{\listfigurename}{图清单} \renewcommand{\listtablename}{表清单} 并修改\newcommand{\makefrontpages}部分的相关代码可以解决,用下面代码替换: \newcommand{\makefrontpages}{% \maketitle \emptymatter \makeextrapages \makeauthorcv \makeabstract \tableofcontents \thispagestyle{empty} \frontmatter
%% 插图目录和表格目录 %% \chapter*{} \addcontentsline{toc}{chapter}{\hyperref[figures]{图清单}} \label{figures} \listoffigures \newpage \chapter*{} \addcontentsline{toc}{chapter}{\hyperref[tables]{表清单}} \label{tables} \listoftables \clearpage \mainmatter
}
No branches or pull requests
问题
1
在同时增加figtoc、tabtoc的时候,整个分页会失效,
看了一下实现为什么会选择这么写,可能作者在写的时候基于了什么考虑。
2
第二个问题就是 图目录和表目录的,PDF链接是失效的,这个我没有找到原因。
The text was updated successfully, but these errors were encountered: