Skip to content

Commit

Permalink
switch sources to fork names
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Apr 9, 2024
1 parent 3973220 commit fa57f64
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 225 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- run: echo $PWD
- run: ls -al ./
- run: ls -al ../
- run: sed -i 's/VERSIONNUMBER/${{ github.ref_name }}/g' ZenCompetition.tex
- run: pdflatex -jobname=ZenCompetition-${{ github.ref_name }} ZenCompetition.tex
- run: sed -i 's/VERSIONNUMBER/${{ github.ref_name }}/g' LSScopeSequence.tex
- run: pdflatex -jobname=LSScopeSequence-${{ github.ref_name }} LSScopeSequence.tex
- run: ls -al .
- name: release
uses: actions/create-release@v1
Expand All @@ -40,6 +40,6 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ZenCompetition-${{ github.ref_name }}.pdf
asset_name: ZenCompetition-${{ github.ref_name }}.pdf
asset_path: LSScopeSequence-${{ github.ref_name }}.pdf
asset_name: LSScopeSequence-${{ github.ref_name }}.pdf
asset_content_type: application/binary
3 changes: 3 additions & 0 deletions LSScopeSequence.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1
\BOOKMARK [1][-]{section.2}{\376\377\000N\000a\000m\000e\000t\000a\000g\000s}{}% 2
\BOOKMARK [1][-]{section.3}{\376\377\000P\000o\000w\000e\000r\000P\000o\000i\000n\000t}{}% 3
137 changes: 137 additions & 0 deletions LSScopeSequence.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
\documentclass{article}
\usepackage{enumitem,amssymb}
\usepackage{lipsum} % for filler text
\usepackage{fancyhdr}
\pagestyle{fancy}

\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
pdftitle={Lower School Scope and Sequence},
pdfpagemode=FullScreen,
}



\newlist{todolist}{itemize}{2}
\setlist[todolist]{label=$\square$}
\usepackage{easylist}
\fancyfoot{} % clear all footer fields
\fancyfoot[LE,RO]{\thepage} % page number in "outer" position of footer line
\renewcommand{\headrulewidth}{0pt}
\fancyfoot[RE,LO]{Version VERSIONNUMBER} % other info in "inner" position of footer line
\fancyhead[R]{ \date{\today}}

\usepackage{pgfgantt}

\usepackage[landscape,margin=0.75in,headsep=.2in]{geometry}


\def\myProgress{90}
\def\nametags{Nametags}
\def\ppt{PowerPoint}

\begin{document}
\title{Lower School Scope and Sequence}
\begin{titlepage}
\vspace*{\stretch{1.0}}
\begin{center}
\Large\textbf{Lower School Scope and Sequence}\\
\end{center}
\vspace*{\stretch{2.0}}
\end{titlepage}


\vspace{1cm}
\section{Introduction}
\begin{todolist}
\item Name Game
\item What is technology?
\item What do you know/want to learn?
\end{todolist}
\section{\nametags}
\begin{todolist}
\item Create Tinkercad account
\item Follow worksheet to make nametag
\item Turn in Nametag STL file
\end{todolist}
\section{\ppt}
\begin{todolist}
\item Create a Google Presentation
\item Document How to make a Nametag
\item Turn in PPT
\end{todolist}
\newpage

\begin{figure}[tbp]
\begin{center}
\begin{ganttchart}[y unit title=0.4cm,
y unit chart=0.5cm,
vgrid,hgrid,
title label anchor/.style={below=-1.6ex},
title left shift=.05,
title right shift=-.05,
title height=1,
progress label text={},
bar height=0.7,
group right shift=0,
group top shift=.6,
group height=.3]{1}{48}
%labels
\gantttitle{Rotations}{48} \\
\gantttitle{1}{2}
\gantttitle{2}{2}
\gantttitle{3}{2}
\gantttitle{4}{2}
\gantttitle{5}{2}
\gantttitle{6}{2}
\gantttitle{7}{2}
\gantttitle{8}{2}
\gantttitle{9}{2}
\gantttitle{10}{2}
\gantttitle{11}{2}
\gantttitle{12}{2}
\gantttitle{13}{2}
\gantttitle{14}{2}
\gantttitle{15}{2}
\gantttitle{16}{2}
\gantttitle{17}{2}
\gantttitle{18}{2}
\gantttitle{19}{2}
\gantttitle{20}{2}
\gantttitle{21}{2}
\gantttitle{22}{2}
\gantttitle{23}{2}
\gantttitle{24}{2} \\
%tasks
\ganttbar{Intro}{1}{2} \\
\ganttbar{\nametags}{3}{5} \\
\ganttbar{\ppt}{6}{10} \\
\ganttbar{task 4}{11}{15} \\
\ganttbar{task 5}{20}{22} \\
\ganttbar{task 6}{18}{19} \\
\ganttbar{task 7}{16}{18} \\
\ganttbar{task 8}{21}{48}

%relations
\ganttlink{elem0}{elem1}
\ganttlink{elem0}{elem3}
\ganttlink{elem1}{elem2}
\ganttlink{elem3}{elem4}
\ganttlink{elem1}{elem5}
\ganttlink{elem3}{elem5}
\ganttlink{elem2}{elem6}
\ganttlink{elem3}{elem6}
\ganttlink{elem5}{elem7}
\end{ganttchart}
\end{center}
\caption{Bancroft 5th Grade Sequence}
\end{figure}




\end{document}
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Zen Robotics Pentatholon
# Bancroft Lower School Scope and Sequence

This repository hosts the tex source for the scope and sequence documents

This repository hosts the central repository of competition documents.



Loading

0 comments on commit fa57f64

Please sign in to comment.