Skip to content

Commit ea0ffbc

Browse files
committed
Changes to README, latex package and pdf generation script
1 parent b86a47a commit ea0ffbc

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Unless otherwise noted, this work is licensed under a [Creative Commons Attribut
2323

2424
For more information, see [POGIL](http://pogil.org), [CS POGIL](http://cspogil.org), and [Intro CS POGIL](http://introcspogil.org/).
2525

26-
## CS 1 and CS 2
26+
## CS 1 (Introduction to Programming in C++)
2727
* [Introduction to C++](https://wwu-cs.github.io/cpp_pogil/CS1/01_introduction.pdf)
2828
* [Arithmetic Operations and Assignment](https://wwu-cs.github.io/cpp_pogil/CS1/02_arithmetic.pdf)
2929
* [Algorithmic Thinking](https://wwu-cs.github.io/cpp_pogil/CS1/03_algorithms.pdf)
@@ -52,7 +52,7 @@ For more information, see [POGIL](http://pogil.org), [CS POGIL](http://cspogil.o
5252
* [Exception Handling](https://wwu-cs.github.io/cpp_pogil/CS1/26_exceptions.pdf)
5353
* [Recursion](https://wwu-cs.github.io/cpp_pogil/CS1/27_recursion.pdf)
5454

55-
## Algorithms and Computation
55+
## CS 2 (Data Structures and Algorithms)
5656

5757
* [Algorithm Analysis](https://wwu-cs.github.io/cpp_pogil/CS2/01_algorithm_analysis.pdf)
5858
* [Sorting](https://wwu-cs.github.io/cpp_pogil/CS2/02_sorting.pdf)
@@ -63,8 +63,17 @@ For more information, see [POGIL](http://pogil.org), [CS POGIL](http://cspogil.o
6363
* [Binary Trees](https://wwu-cs.github.io/cpp_pogil/CS2/07_binary_trees.pdf)
6464
* [Binary Search Trees](https://wwu-cs.github.io/cpp_pogil/CS2/08_binary_search_trees.pdf)
6565

66-
## Architecture and Organization
67-
* To be added
66+
## AR (Architecture and Organization)
67+
* [Communication](https://wwu-cs.github.io/cpp_pogil/AR/01_communication.pdf)
68+
* [Electricity](https://wwu-cs.github.io/cpp_pogil/AR/02_electricity.pdf)
69+
* [Number Systems](https://wwu-cs.github.io/cpp_pogil/AR/03_number_systems.pdf)
70+
* [Logic and Gates](https://wwu-cs.github.io/cpp_pogil/AR/04_logic_and_gates.pdf)
71+
* [Addition](https://wwu-cs.github.io/cpp_pogil/AR/05_addition.pdf)
72+
* [Subtraction](https://wwu-cs.github.io/cpp_pogil/AR/06_subtraction.pdf)
73+
* [Memory](https://wwu-cs.github.io/cpp_pogil/AR/07_memory.pdf)
74+
* [Automation (Part 1)](https://wwu-cs.github.io/cpp_pogil/AR/08_automation_part_1.pdf)
75+
* [Automation (Part 2)](https://wwu-cs.github.io/cpp_pogil/AR/09_automation_part_2.pdf)
76+
* [Characters](https://wwu-cs.github.io/cpp_pogil/AR/10_characters.pdf)
6877

6978
## Sources
7079

cspogil.sty

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ Record your team's answers to the key questions (marked with \mbox{\key}) below.
383383
\hfill
384384
\begin{minipage}{0.853\linewidth}
385385
\small
386-
\textsuperscript{\textcopyright}2019 by \activityeditor{}, \activitysource{}. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
386+
\textsuperscript{\textcopyright}2019-2023 by \activityeditor{}, \activitysource{}. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
387387
\end{minipage}
388388
\clearpage
389389
}

renderAllPogils.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,7 @@ process_folder "CS1"
4848
echo "Processing CS2 activities..."
4949
process_folder "CS2"
5050

51+
echo "Processing AR activities..."
52+
process_folder "AR"
53+
5154
echo "All done!"

0 commit comments

Comments
 (0)