Skip to content

Latest commit

 

History

History
83 lines (62 loc) · 1.46 KB

talk.md

File metadata and controls

83 lines (62 loc) · 1.46 KB

Talk title

  • Your name
  • Date, etc

Note: Anything after Note will be taken as part of the speaker notes. Super useful. Remember that pressing the S key you get the notes.


Agenda

  • a
  • b
  • c

First section

You can use your good markdown

but also HTML!
___

Sub-topic

Some code

CREATE OR REPLACE FUNCTION zoom(scaledenominator numeric)
RETURNS integer
AS $$
BEGIN
	CASE
		WHEN scaleDenominator > 1000000000
			THEN RETURN 0;
		WHEN scaleDenominator <= 1000000000 AND scaleDenominator > 500000000
			THEN RETURN 1;
		WHEN scaleDenominator <= 500000000 AND scaleDenominator > 200000000
			THEN RETURN 2;
		WHEN scaleDenominator <= 200000000 AND scaleDenominator > 100000000
			THEN RETURN 3;
		...
		WHEN scaleDenominator <= 100
		THEN RETURN 23;
	END CASE;
END;
$$ language 'plpgsql';

Second section

<iframe src="https://team.cartodb.com/u/jsanz/viz/2d2dbc20-0b3f-11e6-abc3-0ecd1babdde5/embed_map" frameborder="0" style="width:100%;height:500px;" > </iframe>

Another subtopic

  • A bullet list
  • With elements
  • Shownig after click

A slide with a custom background!!