Skip to content
New issue

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

本科生论文模板的书面翻译无“附录A”字样,几个section也没有编号前缀 #682

Closed
TTtrace opened this issue Jun 6, 2021 · 3 comments

Comments

@TTtrace
Copy link

TTtrace commented Jun 6, 2021

编译环境

编译的系统:macOS 10.15
TeX 发行版:MacTeX 2020
模板版本:v7.2.2
模板类型:bachelor

描述问题

如题。
截图:
image

复现上述问题的代码:
main.tex:

\documentclass[degree=doctor]{thuthesis}
\begin{document}
...

\appendix
\input{data/appendix-translation}  % 本科生:外文资料的书面翻译
\end{document}

data/appendix-translation.tex:

% !TeX root = ../main.tex

\begin{translation}
\label{cha:translation}

\title{挠性转子的多平面平衡分析与实验}
\maketitle

\tableofcontents

\section{介绍}
...
@zepinglee
Copy link
Contributor

无法复现。

@TTtrace
Copy link
Author

TTtrace commented Jun 6, 2021

破案了,原来是因为我把「致谢」和「声明」放在「外文资料的书面翻译」前边了,前面的代码没写全:

% 附录
\appendix

% 致谢
\input{data/acknowledgements}

% 声明
\statement

\input{data/appendix-translation}  % 本科生:外文资料的书面翻译

直接把\input{data/appendix-translation}跟在\appendix后边就没问题:

\appendix
\input{data/appendix-translation}  % 本科生:外文资料的书面翻译

但参考系里的样例,「致谢」跟「声明」确实应该在「外文资料的书面翻译」之前,所以我应该这样写:

% 致谢
\input{data/acknowledgements}

% 声明
\statement

% 附录
\appendix
\input{data/appendix-translation}  % 本科生:外文资料的书面翻译

thuthesis-example.tex给的例子却是把「致谢」和「声明」放在了\appendix\input{data/appendix-translation}之后了,是因为硕士/博士论文的格式如此吗?
image

@zepinglee
Copy link
Contributor

thuthesis-example.tex给的例子却是把「致谢」和「声明」放在了\appendix\input{data/appendix-translation}之后了,是因为硕士/博士论文的格式如此吗?

对,thuthesis-example.tex 默认是按照研究生的格式,而本科生的顺序略有差异:附录需要放在声明后。

我添加了注释提醒本科生手动修改附录的位置,另外附录如果在声明前会报 warning(虽然可能大部分不会注意到)。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants