Added index of packages used

This commit is contained in:
Kenneth John Odle 2026-07-25 08:59:06 -04:00
parent d8b0603d8c
commit 7455de7144
6 changed files with 20 additions and 5 deletions

View File

@ -2,7 +2,7 @@
\section{To Convert a PDF to an Image} \section{To Convert a PDF to an Image}
\lettrine[]{U}{se} the \texttt{pdftoppm} command (from the \label{poppler-utils} \texttt{poppler-utils} package) to convert part or all of a pdf to an image. For example, to convert a pdf to a png: \lettrine[]{U}{se} the \texttt{pdftoppm} command (from the \label{poppler-utils} \texttt{poppler-utils}\index{poppler-utils} package) to convert part or all of a pdf to an image. For example, to convert a pdf to a png:
\begin{Verbatim}[] \begin{Verbatim}[]
pdftoppm input.pdf output -png pdftoppm input.pdf output -png
@ -30,7 +30,7 @@ Doubling the resolution along both axes will increase the file size by an approx
\section{To Extract Images from a PDF File} \section{To Extract Images from a PDF File}
\lettrine[findent=0mm]{T}{o} extract images from a pdf file, use the \texttt{pdfimages} command (also from package mention in \S \ref{poppler-utils} ). \lettrine[findent=0mm]{T}{o} extract images from a pdf file, use the \texttt{pdfimages} command (also from the same package\index{poppler-utils} mention in \S \ref{poppler-utils} ).
\section{This is just a test} \section{This is just a test}

3
chapters/ch02-text.tex Normal file
View File

@ -0,0 +1,3 @@
\chapter{Text}
\section{How to Manipulate Text}

5
chapters/ch03-files.tex Normal file
View File

@ -0,0 +1,5 @@
\chapter{Files}
\section{To Remove Part of a Filename from Multiple Files}
\lettrine{U}{se} the \texttt{mmv}\index{mmv} package to do this.

View File

@ -11,6 +11,8 @@
\usepackage{float} % Allow floats in multicol environments \usepackage{float} % Allow floats in multicol environments
\usepackage{tcolorbox} \usepackage{tcolorbox}
\usepackage{fancyvrb} \usepackage{fancyvrb}
%\usepackage{etoolbox}
\usepackage{imakeidx}
\usepackage{aurical} % Font for section titles \usepackage{aurical} % Font for section titles
%\usepackage{libertinus} % Font for section titles %\usepackage{libertinus} % Font for section titles
%\usepackage{uncial} % Font for section titles %\usepackage{uncial} % Font for section titles

View File

@ -52,4 +52,5 @@
% Lettrine options % Lettrine options
%\renewcommand{\LettrineFontHook}{\Zallmanfamily} %\color{green5}} % Initial font and color %\renewcommand{\LettrineFontHook}{\Zallmanfamily} %\color{green5}} % Initial font and color
\renewcommand{\LettrineFontHook}{\EileenBlfamily} %\color{green5}} % Initial font and color \renewcommand{\LettrineFontHook}{\EileenBlfamily} %\color{green5}} % Initial font and color
%\renewcommand*{\DefaultLhang}{0.5} % Default lhang value %\renewcommand*{\DefaultLhang}{0.5} % Default lhang value

View File

@ -8,6 +8,8 @@
%%% Get it started %%% Get it started
\checkandfixthelayout % Required if you have altered settings for the memoir class \checkandfixthelayout % Required if you have altered settings for the memoir class
% Make an index
\makeindex[title=Packages Mentioned, intoc]
\begin{document} \begin{document}
\pagenumbering{roman} \pagenumbering{roman}
@ -40,7 +42,9 @@
%%% Input chapters here %%% Input chapters here
\input{chapters/ch00-intro} \input{chapters/ch00-intro}
\input{chapters/ch01-images} \input{chapters/ch01-images}
% \input{chapters/ch02} \input{chapters/ch02-text}
% \input{chapters/ch03} \input{chapters/ch03-files}
\printindex
\end{document} \end{document}