To order citations in your paper, you might want to use cite package like this:
\usepackage{cite}
However, as it was described here, the package conflicts with natbib package embedded into elsarticle.
The solution is to use biboptions:
For example:
\documentclass[3p]{elsarticle}
\biboptions{sort&compress}
%...
\usepackage{cite}
However, as it was described here, the package conflicts with natbib package embedded into elsarticle.
The solution is to use biboptions:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% round - round parentheses are used (default) | |
%% square - square brackets are used [option] | |
%% curly - curly braces are used {option} | |
%% angle - angle brackets are used <option> | |
%% semicolon - multiple citations separated by semi-colon | |
%% colon - same as semicolon, an earlier confusion | |
%% comma - separated by comma | |
%% numbers- selects numerical citations | |
%% super - numerical citations as superscripts | |
%% sort - sorts multiple citations according to order in ref. | |
list | |
%% sort&compress - like sort, but also compresses numerical | |
citations | |
%% compress - compresses without sorting | |
%% | |
%% \biboptions{comma,round} |
\documentclass[3p]{elsarticle}
\biboptions{sort&compress}
%...
No comments:
Post a Comment