Skip to content

Latest commit

 

History

History
177 lines (132 loc) · 4.21 KB

clauses-examples.adoc

File metadata and controls

177 lines (132 loc) · 4.21 KB

Section Title

Note
Examples (Delete this note).
Use these items as needed.  You should create a new file for each section, starting at Section 4.
Therefore the first file would be:
  section-04.adoc followed by section-05.adoc.
You would then update book.adoc with the appropriate sections.

Level 2

Normal Paragraph with Bold and italic and underline text

Level 3 -

Normal paragraph

Level 4 -

Normal paragraph

Adding a Quote

As he spoke there was the sharp sound of horses' hoofs and grating wheels against the curb, followed by a sharp pull at the bell. Holmes whistled.

"A pair, by the sound," said he. "Yes," he continued, glancing out of the window. "A nice little brougham and a pair of beauties. A hundred and fifty guineas apiece. There’s money in this case, Watson, if there is nothing else."

— Sir Arthur Conan Doyle
The Adventures of Sherlock Holmes

Adding images

Looks like this:

image:<target>[<attributes>]

Dragon from Diagon Alley

Then add your caption (Figures are auto numbered):

[[image]]
.figure label
image::<target>[]
dragon
Figure 1. dragon

And you can link to it here: dragon.

Adding a Table (auto numbered)

update as necessary

Table 1. Table Label
Service OWS Common SOAP Version Namespace Error Handling  Capabilities WSDL SOAP Action Header Non-XML Transmission

WFS 2.0

r3

conflict

Y

soap:Fault/ soap:Server & soap:Text

SOAP

N

N

SwA

CSW 2.0.2

r9

1.2

Y

soap:Fault/ soap:Server & soap:Text

SOAP

Y

N

SwA

Adding a Sidebar

An Example Sidebar

Any AsciiDoc SectionBody element (apart from SidebarBlocks) can be placed inside a sidebar.

Adding Literals

Literals work ike an HTML <pre> tag

Consul *necessitatibus* per id,
consetetur, eu pro everti postulant
homero verear ea mea, qui.

Adding Notes or Admonishments

Note: This is a simple note

Note
This is a more complex Note.
You can insert more text here.

TIP, NOTE, IMPORTANT, WARNING and CAUTION admonishment paragraph styles are generated by placing NOTE:, TIP:,IMPORTANT:, WARNING: or CAUTION: as the first word of the paragraph.

Or like this:

Tip
This is a tip

insert tip here

Warning
This is a warning.

You must put text here

To insert an HTML HR or line, use a line of three or more apostrophe characters:


Unordered Lists

  • Item

  • Item

    • Subitem

      • Sub-subitem

  • Item

Ordered Lists

  . Item 1 . Item 2 .. Item 2a .. Item 2b …​ Item 2b(i) …​. Item 2b(i)A . Item 3

Example Code Listing

Label
<ows:Operation name="GetCapabilities">
  <ows:DCP>
    <ows:HTTP>
      <ows:Post xlink:href="http://www.opengis.uab.es/cgi-bin/world/MiraMon5_0.cgi?">
        <ows:Constraint name="PostEncoding">
          <allowedValues>
            <ows:Value>SOAP</ows:Value>
          </ows:AllowedValues>
        </ows:Constraint>
      </ows:Post>
    </ows:HTTP>
  </ows:DCP>
</ows:Operation>
<ows:Operation name="GetTile">
  <ows:DCP>
    <ows:HTTP>
      <ows:Post xlink:href="http://www.opengis.uab.es/cgi-bin/world/MiraMon5_0.cgi?">
        <ows:Constraint name="PostEncoding">
          <ows:AllowedValues>
            <ows:Value>SOAP</ows:Value>
          </ows:AllowedValues>
        </ows:Constraint>
      </ows:Post>
    </ows:HTTP>
  </ows:DCP>
</ows:Operation>