Michael F. Stemper
2021-02-21 21:35:55 UTC
I wanted to see which LaTeX packages I was using for a particular
project, so I did:
***@host$ grep -h "\\usep" *tex | sort | uniq
% \usepackage{array} % for math mode columns in tabular
% \usepackage{graphicx}
% \usepackage{longtable}
% \usepackage{mathrsfs} % for mathscr
% \usepackage{tikz-cd} % for commutative diagrams
\usepackage{amsmath} % for implication and align*
\usepackage{amssymb} % for black-board set names
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{parskip}
***@host$
However, that showed unused packages as well. So I tried
anchoring my grep to the beginning of the line, and got:
***@host$ grep -h "^\\usep" *tex | sort | uniq
***@host$
Why isn't this working? What am I overlooking? How
should I have said it?
project, so I did:
***@host$ grep -h "\\usep" *tex | sort | uniq
% \usepackage{array} % for math mode columns in tabular
% \usepackage{graphicx}
% \usepackage{longtable}
% \usepackage{mathrsfs} % for mathscr
% \usepackage{tikz-cd} % for commutative diagrams
\usepackage{amsmath} % for implication and align*
\usepackage{amssymb} % for black-board set names
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{parskip}
***@host$
However, that showed unused packages as well. So I tried
anchoring my grep to the beginning of the line, and got:
***@host$ grep -h "^\\usep" *tex | sort | uniq
***@host$
Why isn't this working? What am I overlooking? How
should I have said it?
--
Michael F. Stemper
The name of the story is "A Sound of Thunder".
It was written by Ray Bradbury. You're welcome.
Michael F. Stemper
The name of the story is "A Sound of Thunder".
It was written by Ray Bradbury. You're welcome.