Compressing Consecutive Citation Numbers in LaTeX
When you have multiple consecutive citations like [14], [15], [16], [17], [19], LaTeX renders them individually by default, wasting space. Citation management packages automatically compress these to [14–17], [19], which is standard practice for numerical citation styles. Using the cite Package The cite package is the simplest approach. Add it to your preamble: \usepackage{cite} When…
