presentation
Fragments in reveal.js using Markdown
It support attributes now, by adding tag: <!– .element: class=”fragment” –>. There are more attributes supported such as background, index, etc. See more examples on official doc: Element Attributes, Slide Attributes.
UIModalPresentationFormSheet resizing view
MyModalViewController *targetController = [[[MyModalViewController alloc] init] autorelease]; targetController.modalPresentationStyle = UIModalPresentationFormSheet; targetController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; [self presentModalViewController:targetController animated:YES]; // it is important to do this after presentModalViewController:animated: targetController.view.superview.bounds = CGRectMake(0, 0, 200, 200);
Should css class names like ‘floatleft’ that directly describe the attached style be avoided?
It’s great until you re-design, and narrow is highlighted yellow, center converts better left-justified, and the image you called floatleft now belongs on the right. I’ll admit to the sin of using floatleft and clear as CSS class names, but it is much easier to maintain your CSS if you choose names that relate to … Read more
How do I embed source code or HTML in Open Office Org Presentations without using screenshots?
Some people says that copying code from Eclipse editor works well (UPDATE: Proven FALSE). Another alternative is exporting to RTF (can also export line numbers), or to clipboard, from Highlight and then opening/pasting it in OpenOffice.org. (UPDATE: Proven TRUE) Here is a Highlight GUI screen shot: You can also switch from OpenOffice.org to LibreOffice, and … Read more
Include code that does not run in Rpresentation Markdown
Have you tried eval=FALSE in the knitr code chunk options? e.g.: “`{r eval=FALSE} print(“Don’t run me”) “`
Hiding the presentation controls in LaTeX beamer presentation [closed]
Yes, from p.223 of the Beamer guide: To remove navigation symbols, \usenavigationsymbolstemplate{} Although it looks like the syntax has changed since then. This more recent page has: \setbeamertemplate{navigation symbols}{}%remove navigation symbols
How To Format A Block of Code Within a Presentation? [closed]
An on-line syntax highlighter: http://hilite.me/ Just copy and paste into your document.
How to add new line in Markdown presentation?
See the original markdown specification (bold mine): The implication of the “one or more consecutive lines of text” rule is that Markdown supports “hard-wrapped” text paragraphs. This differs significantly from most other text-to-HTML formatters (including Movable Type’s “Convert Line Breaks” option) which translate every line break character in a paragraph into a <br /> tag. … Read more