Difference between revisions of "User:Rlk"

From Wikiwasnonet
Jump to navigation Jump to search
Line 24: Line 24:
 
Ampersands are allowed: &, and so are other characters that need to be escaped
 
Ampersands are allowed: &, and so are other characters that need to be escaped
 
in HTML: <>.
 
in HTML: <>.
 +
 +
HTML formatting: <B>Bold</B>
 +
 +
<I>Italic</I>
 +
 +
<U>Underline</U>
 +
 +
<STRIKE>Strike out</STRIKE>
 +
 +
<FONT color=red>Colored Red</FONT>, <FONT color=green>Green</FONT>,  <FONT color=blue>Blue</FONT>, ...
 +
 +
<TT>typewriter font</TT>
 +
 +
<STRONG>Strong</STRONG>
 +
 +
<SPAN style="font-variant:small-caps"> Formatting a whole span, e.g. with small font</SPAN>
 +
 +
Use <SUP>superscripts</SUP> and <SUB>subscripts</SUB> especially useful for simple formulas
 +
 +
Invisible comments that only appear while editing the page: (not visible on this page now!)
 +
<!-- This is a comment. -->
  
 
What about Umlauts? "äöüÄÖÜß" should be ae oe ue AE OE UE and sharp s.
 
What about Umlauts? "äöüÄÖÜß" should be ae oe ue AE OE UE and sharp s.
Line 29: Line 50:
 
Is this '€' an (ISO-8859-15 encoded) Euro sign?  See the horizontal line below?
 
Is this '€' an (ISO-8859-15 encoded) Euro sign?  See the horizontal line below?
 
----
 
----
A silly code example (some Scheme I needed today)
+
And some mathematics: <math>\int_{-\infty}^{\infty} e^{-x^2}\,dx = (-1/2)! = \Gamma(1/2) = \sqrt{\pi}</math>.
 +
 
 +
A silly code example (some Scheme I needed at the time).
 
  (call-with-input-file "code.txt"
 
  (call-with-input-file "code.txt"
 
   (lambda (port)
 
   (lambda (port)
Line 37: Line 60:
 
       (display (list i c))
 
       (display (list i c))
 
       (newline) )))
 
       (newline) )))
 +
 +
Note that the leading spaces automatically produce a display in typewriter font.

Revision as of 16:20, 16 January 2007

Not a lot here for now, visit my static page.

Internal links

External links

A number of links harvested from my inbox, should be organised better!

  • TeX users group

Electronics

Miscellaneous

Formatting Tests

Demonstrate text styles: italic, bold and bold italic.

Ampersands are allowed: &, and so are other characters that need to be escaped in HTML: <>.

HTML formatting: Bold

Italic

Underline

Strike out

Colored Red, Green, Blue, ...

typewriter font

Strong

Formatting a whole span, e.g. with small font

Use superscripts and subscripts especially useful for simple formulas

Invisible comments that only appear while editing the page: (not visible on this page now!)

What about Umlauts? "äöüÄÖÜß" should be ae oe ue AE OE UE and sharp s.

Is this '€' an (ISO-8859-15 encoded) Euro sign? See the horizontal line below?


And some mathematics: .

A silly code example (some Scheme I needed at the time).

(call-with-input-file "code.txt"
  (lambda (port)
    (do ((i 0 (+ i 1))
         (c (read port) (read port)))
        ((>= i *code-length*))
      (display (list i c))
      (newline) )))

Note that the leading spaces automatically produce a display in typewriter font.