This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[final]{beamer} | |
| \mode<presentation>{\usetheme{Lankton}} | |
| \usepackage{amsmath,amsfonts,amssymb,pxfonts,eulervm,xspace} | |
| \usepackage[scaled]{helvet} | |
| \usepackage{graphicx} | |
| \usepackage{microtype} | |
| \usepackage{siunitx} | |
| \graphicspath{{./figures/}} | |
| \usepackage[orientation=landscape,size=a0,scale=1.4,debug]{beamerposter} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % adapted Philippe Dreuw and Thomas Deselaers | |
| % further adapted from edits by James Malcolm | |
| % finally, Shawn Lankton made some edits (www.shawnlankton.com) | |
| \ProvidesPackage{beamerthemeLankton} | |
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| \mode<presentation> | |
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Incursus, Dual SAR] | |
| Magnetic Field Stabilizer II | |
| Nanofiber Internal Structure II | |
| Small Armor Repairer II | |
| Small Armor Repairer II | |
| 1MN Microwarpdrive II | |
| J5b Phased Prototype Warp Scrambler I | |
| Small Capacitor Booster II,Navy Cap Booster 50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| start_game <- function(side_length) { | |
| # Boards are always square | |
| x <- rep(c(TRUE, FALSE), length.out = side_length^2) | |
| # Generate random probability for cells to start alive or dead | |
| p <- runif(min = 0, max = 1, n = side_length^2) | |
| # Set up the board | |
| board <- sample(x, size = side_length^2, replace = TRUE, prob = p) | |