Graphics, Figures & Tables ⇒ changing numbering subfigure
changing numbering subfigure
the reference, in the text, from 1a) to 1a and 2a) to 2a etc.
The problem is at the subfigure. This code puts 1a and 2a.
I would rather have just a. I realize this may be easy to
fix for some. But, the ending 4 lines are greek to me.
thanks,
henry
\renewcommand{\thesubfigure}{\thefigure\alph{subfigure}}
\makeatletter
\renewcommand{\@thesubfigure}{\thesubfigure:\space}
\renewcommand{\p@subfigure}{}
\makeatother
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
changing numbering subfigure
Code: Select all
\renewcommand{\thesubfigure}{\alph{subfigure}}
\makeatletter
\renewcommand{\@thesubfigure}{\thesubfigure:\space}
\renewcommand{\p@subfigure}{\thefigure}
\makeatother