Main Page: Difference between revisions

From NARS2000
Jump to navigationJump to search
Line 7: Line 7:
* Editing Conventions
* Editing Conventions


To enter APL text, enclose each symbol or function name in braces, and surround the entire phrase with &ltapl>...</apl>.  For example, the phrase
To enter APL text, enclose each symbol or function name in braces, and surround the entire phrase with &ltapl>...</apl>.  For example, the phrase
 
  <apl size="large" font=SImPL>((V{iota}V)={iota}{rho}V)/V</apl>
  <apl size="large" font=SImPL>((V{iota}V)={iota}{rho}V)/V</apl>
 
is encoded as
is encoded as
 
  &lt;apl size="large"&gt;((V&#123;iota}V)=&#123;iota}&#123;rho}V)/V&lt;/apl&gt;
  &lt;apl size="large"&gt;((V&#123;iota}V)=&#123;iota}&#123;rho}V)/V&lt;/apl&gt;
 
The arguments to &lt;apl&gt; are '''font=''', '''size=''', and '''weight=''', where each keyword takes as an argument the usual CSS values.  For example, the tag
The arguments to &lt;apl&gt; are '''font=''', '''size=''', and '''weight=''', where each keyword takes as an argument the usual CSS values.  For example, the tag
 
  &lt;apl font="SImPL" size="large" weight="bold"&gt;...&lt;/apl&gt;
  &lt;apl font="SImPL" size="large" weight="bold"&gt;...&lt;/apl&gt;
 
translates into
translates into
 
  &lt;span style="font-family: SImPL; font-size: large; font-weight: bold;">...&lt;/span&gt;
  &lt;span style="font-family: SImPL; font-size: large; font-weight: bold;">...&lt;/span&gt;

Revision as of 20:08, 16 May 2007

Welcome To The NARS2000 Project

If you are not familiar with Wikis, please consult the User's Guide for information on using the wiki software.

Getting started

  • Editing Conventions

To enter APL text, enclose each symbol or function name in braces, and surround the entire phrase with &ltapl>...</apl>. For example, the phrase

((V⍳V)=⍳⍴V)/V

is encoded as

<apl size="large">((V{iota}V)={iota}{rho}V)/V</apl>

The arguments to <apl> are font=, size=, and weight=, where each keyword takes as an argument the usual CSS values. For example, the tag

<apl font="SImPL" size="large" weight="bold">...</apl>

translates into

<span style="font-family: SImPL; font-size: large; font-weight: bold;">...</span>