stone-zeng / fduthesis

LaTeX thesis template for Fudan University
LaTeX Project Public License v1.3c
820 stars 207 forks source link

附录部分的图表编号 #166

Closed stone-zeng closed 3 years ago

stone-zeng commented 3 years ago

https://github.com/stone-zeng/fduthesis/blob/6c32f74f79618157c5f071d1773ef29f46f6daef/source/fduthesis.dtx#L4403-L4412

这导致附录中的图表编号有误,不是 A-1 而是 1-1

plong511 commented 3 years ago

https://github.com/stone-zeng/fduthesis/blob/6c32f74f79618157c5f071d1773ef29f46f6daef/source/fduthesis.dtx#L4403-L4412

这导致附录中的图表编号有误,不是 A-1 而是 1-1

我现在也遇到了这个问题,附录里的表格编号不对。该如何解决?这个dtx文件是怎么提取出来的呢?

stone-zeng commented 3 years ago

临时的 work around 是:

\appendix

\renewcommand{\thefigure}{\Alph{chapter}-\arabic{figure}}
\renewcommand{\thetable}{\Alph{chapter}-\arabic{table}}

\chapter{附录}

...

% \appendix 要在 \backmatter 之前
\backmatter
zepinglee commented 3 years ago

咋不用 \thechapter

stone-zeng commented 3 years ago

咋不用 \thechapter

我好像又智障了……