texlive[64647] Master/texmf-dist/doc/latex/latex-for-undergraduates:

commits+karl at tug.org commits+karl at tug.org
Fri Oct 7 23:04:41 CEST 2022


Revision: 64647
          http://tug.org/svn/texlive?view=revision&revision=64647
Author:   karl
Date:     2022-10-07 23:04:41 +0200 (Fri, 07 Oct 2022)
Log Message:
-----------
latex-for-undergraduates (7oct22)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf
    trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.tex
    trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/README.md
    trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros-doc.pdf
    trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros-doc.tex
    trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros.sty

Modified: trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.tex	2022-10-07 21:04:19 UTC (rev 64646)
+++ trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.tex	2022-10-07 21:04:41 UTC (rev 64647)
@@ -33,7 +33,7 @@
 		}
 	}
 	\author{Andrew Lounsbury}
-	\date{March 6, 2022}
+	\date{October 6, 2022}
 	\maketitle
 	
 	\vspace{1.5in}
@@ -793,21 +793,4 @@
 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

Modified: trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/README.md	2022-10-07 21:04:19 UTC (rev 64646)
+++ trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/README.md	2022-10-07 21:04:41 UTC (rev 64647)
@@ -1,7 +1,7 @@
 # LaTeX for Undergraduates
 ## Author: Andrew Lounsbury, alounsbury8 at gmail.com
-## Version 1.0.1
-## 2022/03/06
+## Version 1.0.2
+## 2022/10/06
 ## License: Public Domain
 ## Author's Note
 

Modified: trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros-doc.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros-doc.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros-doc.tex	2022-10-07 21:04:19 UTC (rev 64646)
+++ trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros-doc.tex	2022-10-07 21:04:41 UTC (rev 64647)
@@ -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}

Modified: trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros.sty
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros.sty	2022-10-07 21:04:19 UTC (rev 64646)
+++ trunk/Master/texmf-dist/doc/latex/latex-for-undergraduates/alounsburymacros.sty	2022-10-07 21:04:41 UTC (rev 64647)
@@ -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. 



More information about the tex-live-commits mailing list.