I would like to know that which one of the following commands is faster in running?
\usepackage{A,B,C,...} or
\usepackage{A}
\usepackage{B}
\usepackage{C}
...
Thanks
I would like to know that which one of the following commands is faster in running?
\usepackage{A,B,C,...} or
\usepackage{A}
\usepackage{B}
\usepackage{C}
...
Thanks
In either case, the difference is too small to worry about it. If you preamble is slow to process, you might consider using mylatex to speed things up.
I think the only difference that may arise is when you have to specify some options for the packages you are loading. In this case you have to load the packages one by one.
\usepackage[pdftex]{xcolor,graphicx}).
– Geoffrey Jones
Aug 29 '10 at 12:38