In <[email protected]> superhappyfuntime <[email protected]>
writes:
> it's not running. here it is:
> #this is antiWYSIWYG, an easy to learn cap for begginners to LaTeX.
> #this is defines what means what. you can just read howto.pdf instead
> of this part.
> here it is: = '\begin{document}'
> it's an article = '\documentclass article'
> it's a book = '\documentclass{book}'
> it's a letter = '\documentclass{letter}'
> it's a report = '\documentclass{report}'
> it's called = '\title{'
> it's over! = '\end{document}'
> #this is where you come in: type what you want below using the terms
> explained in howto.pdf
> print ('it's an article it's called test} here it is: Hello World!
> it's over!')
You cannot use words like
it's
inside a single-quoted string. Either escape the word like this:
it\'s
or enclose the entire string in double quotes.
--
John Gordon A is for Amy, who fell down the stairs
[email protected] B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
http://mail.python.org/mailman/listinfo/python-list