summaryrefslogtreecommitdiff
path: root/info
diff options
context:
space:
mode:
Diffstat (limited to 'info')
-rw-r--r--info/latex-for-undergraduates/LaTeX_for_Undergraduates.pdfbin1744790 -> 1742177 bytes
-rw-r--r--info/latex-for-undergraduates/LaTeX_for_Undergraduates.tex19
-rw-r--r--info/latex-for-undergraduates/README.md4
-rw-r--r--info/latex-for-undergraduates/alounsburymacros-doc.pdfbin210116 -> 210110 bytes
-rw-r--r--info/latex-for-undergraduates/alounsburymacros-doc.tex4
-rw-r--r--info/latex-for-undergraduates/alounsburymacros.sty4
6 files changed, 7 insertions, 24 deletions
diff --git a/info/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf b/info/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf
index 0588645347..905c03c106 100644
--- a/info/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf
+++ b/info/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf
Binary files differ
diff --git a/info/latex-for-undergraduates/LaTeX_for_Undergraduates.tex b/info/latex-for-undergraduates/LaTeX_for_Undergraduates.tex
index eaad3e62b2..7ef4473b81 100644
--- a/info/latex-for-undergraduates/LaTeX_for_Undergraduates.tex
+++ b/info/latex-for-undergraduates/LaTeX_for_Undergraduates.tex
@@ -33,7 +33,7 @@
}
}
\author{Andrew Lounsbury}
- \date{March 6, 2022}
+ \date{October 6, 2022}
\maketitle
\vspace{1.5in}
@@ -793,21 +793,4 @@ end FOR
RETURN num
\end{Verbatim}
However, there are better options from other packages shown \href{https://en.wikibooks.org/wiki/LaTeX/Algorithms}{here} and \href{https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings}{here}.
-
-\subsection{Poetry in \LaTeX} \label{subsec:poetry}
-The \href{https://ctan.org/pkg/verse}{\texttt{verse}} package allows us to typeset poetry in \LaTeX.
-\poemtitle*{yep} % * prevents this from being in the table of contents
- \settowidth{\versewidth}{stanza 1}
- \begin{verse}[\versewidth]
- stanza 1, \\
- a few words, \\
- some new \\
- lines
-
- stanza 2 \\
- a few more, \\
- assonance almost \\
- rhymes
- \end{verse}
- \attrib{Andrew Lounsbury \\ April 28, 2021}
\end{document} \ No newline at end of file
diff --git a/info/latex-for-undergraduates/README.md b/info/latex-for-undergraduates/README.md
index 0d6ae6b6b6..145aec6538 100644
--- a/info/latex-for-undergraduates/README.md
+++ b/info/latex-for-undergraduates/README.md
@@ -1,7 +1,7 @@
# LaTeX for Undergraduates
## Author: Andrew Lounsbury, alounsbury8@gmail.com
-## Version 1.0.1
-## 2022/03/06
+## Version 1.0.2
+## 2022/10/06
## License: Public Domain
## Author's Note
diff --git a/info/latex-for-undergraduates/alounsburymacros-doc.pdf b/info/latex-for-undergraduates/alounsburymacros-doc.pdf
index 007db2b280..2542149a6d 100644
--- a/info/latex-for-undergraduates/alounsburymacros-doc.pdf
+++ b/info/latex-for-undergraduates/alounsburymacros-doc.pdf
Binary files differ
diff --git a/info/latex-for-undergraduates/alounsburymacros-doc.tex b/info/latex-for-undergraduates/alounsburymacros-doc.tex
index 85aa2d32d0..6c98909bcb 100644
--- a/info/latex-for-undergraduates/alounsburymacros-doc.tex
+++ b/info/latex-for-undergraduates/alounsburymacros-doc.tex
@@ -11,7 +11,7 @@
\begin{document}
\title{The \texttt{alounsburymacros} package}
- \author{1.0.1 \ 2022/03/06}
+ \author{1.0.2 \ 2022/10/06}
\date{Andrew Lounsbury}
\maketitle
@@ -22,7 +22,7 @@
If you're reading this, you're presumably an undergraduate student who might be interested in using \LaTeX. In general, I think the best way to start using \LaTeX\ and then form a habit of it is to start early and to learn things little by little. \p
That being said, one of the most useful things you can do is to write commands that make things easier. I would recommend accumulating these commands in one file (package) as you go along, similarly to what I've done here with \texttt{alounsburymacros}.
\begin{example*}
- In Advanced Calculus, I found that I was having to type $\mathscr{R}(\alpha)$ (\texttt{\textbackslash mathscr\{R\}(\textbackslash alpha)}) over and over again. So, I wrote the command
+ In Real Analysis, I found that I was having to type $\mathscr{R}(\alpha)$ (\texttt{\textbackslash mathscr\{R\}(\textbackslash alpha)}) over and over again. So, I wrote the command
\begin{verbatim}
\newcommand{\ara}{\mathscr{R}(\alpha)}
\end{verbatim}
diff --git a/info/latex-for-undergraduates/alounsburymacros.sty b/info/latex-for-undergraduates/alounsburymacros.sty
index 495c38efa0..e9b6dd0a92 100644
--- a/info/latex-for-undergraduates/alounsburymacros.sty
+++ b/info/latex-for-undergraduates/alounsburymacros.sty
@@ -1,4 +1,4 @@
-% alounsburymacros.sty 1.0.1 2022/03/06
+% alounsburymacros.sty 1.0.2 2022/10/06
% Andrew Lounsbury
% This file was not generated from source code.
@@ -6,7 +6,7 @@
% Marking this file as a package
\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{alounsburymacros}[2022/03/06 1.0.1 miscellaneous commands]
+\ProvidesPackage{alounsburymacros}[2022/10/06 1.0.2 miscellaneous commands]
% This allows commands that use things from these packages to work even if we
% haven't put them in \usepackage{} in the preamble.