summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--document.sty6
1 files changed, 4 insertions, 2 deletions
diff --git a/document.sty b/document.sty
index 28f51f7..511d030 100644
--- a/document.sty
+++ b/document.sty
@@ -63,8 +63,10 @@
% Figures/Tables %
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
-% Count figure within sections (just like equations)
+% Count within sections (third table of section 5 would be Table 5.3)
\counterwithin{figure}{section}
-% Count table within sections (just like equations)
\counterwithin{table}{section}
+% Separate section number from fig/table with a hyphen (5-3 instead of 5.3)
+\renewcommand{\thefigure}{\thesection-\arabic{figure}}
+\renewcommand{\thetable}{\thesection-\arabic{table}}