150 likes | 228 Views
Jan Nonnen. Research SE@Bonn. Scope. Introduction. In this document you will find a couple of layouts that you should use to create your Presentation. On the following slides we will present you some rules that your final presentation should follow. Layout Master. Introduction.
E N D
Jan Nonnen Research SE@Bonn
Scope • Introduction • In this document you will find a couple of layouts that you should use to create your Presentation. • On the following slides we will present you some rules that your final presentation should follow.
Layout Master • Introduction • Together with this slides you received a Layout Master. This is used to give your slides a basic style. Please do not modify these layouts. Stick to the design colors.
Allowed Layouts • Introduction • The Master Layout contains several Layouts but not all of them are suitable for every occasion.
Allowed Layouts • Introduction • Together with the white style there is also a master with a black background. This should be used for the final presentation at the end of the lab. • Thus we advice you to use the white layout.
Common Practice • Keywords • There are several things you can do to produced well balanced presentation slides. • Do not write full sentences • Keywords should support your talk and don‘t have to explain everything • Use highlighting of keywords judiciously
Reduction • Keywords • Start with full sentences • Copy the content to the Powerpoint notes • Highlight the main word in each sentence • Delete all other words • Unhighlight all remaining words
Jan Nonnen, Paul Imhoff Example Slides
Dummy Text • Examples • Loremipsum • dolor • elitr Use only Keywords Minimum font size is 30pt
Dummy Comparison • Examples • Lorem ipsum • dolor • elitr • vero • accusam • rebum Compare two Approaches with this format
Guns don‘t kill people, bullets do • Sledge Hammer
Matcher • Examples assertThat(theBiscuit,equalTo(myBiscuit)); assertThat(theBiscuit,is(equalTo(myBiscuit))); assertThat(theBiscuit,is(myBiscuit)); Use this layout for short sourcecode listings, e.g. single statements Minimum font size is 24pt
import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.*; import junit.framework.TestCase; public class BiscuitTest extends TestCase { public void testEquals() { Biscuit theBiscuit = new Biscuit("Ginger"); Biscuit myBiscuit = new Biscuit("Ginger"); assertThat(theBiscuit, equalTo(myBiscuit)); } } Use this layout for long sourcecode listings. Minimum font size is 20pt Matcher