• Skip to primary navigation
  • Skip to content
  • Skip to footer
Paul's Blog
  • Posts
  • Collections
  • Categories
  • Tags
  • Rust Resources
  • C++ Resources
  • About
    Paul

    Paul

    Me hacking away at things.

    • GitHub

    Latex: continuous numbering of tables/figures across chapters

    September 13, 2017 less than 1 minute read

    put this in your preamble

    [code language="latex"]
    \usepackage{chngcntr}
    \counterwithout{figure}{chapter}
    \counterwithout{table}{chapter}
    [/code]

    https://tex.stackexchange.com/questions/28333/continuous-v-per-chapter-section-numbering-of-figures-tables-and-other-docume

    Tags: latex, numbering

    Updated: September 13, 2017

    Previous Next

    You May Also Enjoy

    Rust in Action by Tim McNamara

    May 24, 2025 less than 1 minute read

    The book “Rust in Action” by Tim McNamara is widely recommended online as a good and basic learning resource for Rust.

    Splitting intervals - Part 3: Adding a trailing, optional boolean argument

    March 18, 2025 5 minute read

    The intervals should get a custom boolean flag which will be supplied via a trailing, defaulted argument. Adding this to splitting functions for a hard-coded...

    Splitting intervals - Part 2: Making template errors suck less

    March 18, 2025 2 minute read

    Template error messages in C++ can be horrendeous. Adding compile-time checks via concepts or static_asserts can go a long way. Lets do this here.

    Splitting intervals - Part 1

    March 17, 2025 4 minute read

    This will be a story on how to reduce repetitive code via variadic templates (hello modern C++ ;) ).

    • Feed
    © 2025 Paul's Blog. Powered by Jekyll & Minimal Mistakes.