Difference between revisions of "Paragraph Referencing"

From Wiki
Jump to navigation Jump to search
m
Line 1: Line 1:
<div style="color: red">Çorrected version will come soon :-)</div>
 
 
 
The {{module|pararef}} module understands a paragraph as a full closed block of one thought. This means that inside a paragraph enumerations, formulas etc. can appear. That is why a paragraph must be defined manually via <code>\startParagraph</code> and <code>\stopParagraph</code>.
 
The {{module|pararef}} module understands a paragraph as a full closed block of one thought. This means that inside a paragraph enumerations, formulas etc. can appear. That is why a paragraph must be defined manually via <code>\startParagraph</code> and <code>\stopParagraph</code>.
  
Line 32: Line 30:
 
==References==
 
==References==
  
Now the more practical part: the paragraph referencing. To reference to an paragraph the package pararef contains the function <code>\crossref</code>
+
Now the more practical part: the paragraph referencing. To reference to an paragraph the package pararef makes use of the [[Cross Referencing|crossref]] module.
 
 
<texcode>
 
\crossref[<reference>]
 
\crossref[brakets=...,text=...][<reference>]
 
</texcode>
 
  
 
Here a simple usage example:
 
Here a simple usage example:
Line 43: Line 36:
 
<texcode>
 
<texcode>
 
\usemodule[pararef]
 
\usemodule[pararef]
 +
\usemodule[crossref]
  
 
\starttext
 
\starttext
Line 60: Line 54:
 
Here are two references to destinations on the same page:
 
Here are two references to destinations on the same page:
 
\startitemize[nowhite]
 
\startitemize[nowhite]
\item ref1 should be: para. 1.1/2 and is: \crossref[text={para.}][ref1]
+
\item ref1 should be: para. 1.1/2 and is: \crossref[label={para.}][ref1]
\item ref2 should be: sec. 1.2 and is: \crossref[text={sec.}][ref2]
+
\item ref2 should be: sec. 1.2 and is: \crossref[label={sec.}][ref2]
 
\stopitemize
 
\stopitemize
 
Here is one references with brakets:
 
Here is one references with brakets:
 
\startitemize[nowhite]
 
\startitemize[nowhite]
\item ref1 should be: para. 1.1/2 and is: \crossref[brakets=yes,text={para.}][ref1]
+
\item ref1 should be: (para. 1.1/2) and is: \crossref[left={(},right={)},label={para.}][ref1]
 
\stopitemize
 
\stopitemize
 
\stopParagraph
 
\stopParagraph
Line 77: Line 71:
 
Here are two references to destinations on an other page:
 
Here are two references to destinations on an other page:
 
\startitemize[nowhite]
 
\startitemize[nowhite]
\item ref1 should be: para. 1.1/2 on page 1 and is: \crossref[text={para.}][ref1]
+
\item ref1 should be: para. 1.1/2 on page 1 and is: \crossref[label={para.}][ref1]
\item ref2 should be: sec. 1.2 on page 1 and is: \crossref[text={sec.}][ref2]
+
\item ref2 should be: sec. 1.2 on page 1 and is: \crossref[label={sec.}][ref2]
 
\stopitemize
 
\stopitemize
 
\stopParagraph
 
\stopParagraph
Line 146: Line 140:
 
The brakets and text part for <code>\crossref</code> can also be adjusted or extended with other languages:
 
The brakets and text part for <code>\crossref</code> can also be adjusted or extended with other languages:
  
<texcode>
 
\setupparareftext[en][braketOpen={(}]
 
\setupparareftext[en][braketClose={)}]
 
\setupparareftext[en][atpageLeft={ on page }]
 
\setupparareftext[en][atpageRight={}]
 
\setupparareftext[de][braketOpen={(}]
 
\setupparareftext[de][braketClose={)}]
 
\setupparareftext[de][atpageLeft={ auf Seite }]
 
\setupparareftext[de][atpageRight={}]
 
</texcode>
 
  
 
For now the color and style of the paragraph title has to be set via the normal outer margin settings.
 
For now the color and style of the paragraph title has to be set via the normal outer margin settings.

Revision as of 00:45, 2 November 2012

The t-pararef module understands a paragraph as a full closed block of one thought. This means that inside a paragraph enumerations, formulas etc. can appear. That is why a paragraph must be defined manually via \startParagraph and \stopParagraph.

Paragraphs

Each paragraph gets numbered started by each title. In order to link to a paragraph it can be reference by the optional parameter reference=... as a text reference.

One or more paragraphs can be summarized by a low level title which is displayed as a margin note (margin title) via the optional parameter title=....

 \startParagraph[reference=...,title=...]
 ...
 \stopParagraph

Here how a single paragraph with a title looks like:

\usemodule[pararef]

\starttext
\startParagraph[title={Paragraph heading}]
\input tufte
\stopParagraph
\stoptext

t-pararef-1.jpg


References

Now the more practical part: the paragraph referencing. To reference to an paragraph the package pararef makes use of the crossref module.

Here a simple usage example:

\usemodule[pararef]
\usemodule[crossref]

\starttext

\startchapter[title={Lorem ipsum}]
\startsection[title={Dolor sit}]

\startParagraph
\input tufte 
\stopParagraph

\startParagraph[reference=ref1]
\input tufte 
\stopParagraph

\startParagraph
Here are two references to destinations on the same page:
\startitemize[nowhite]
\item ref1 should be: para. 1.1/2 and is: \crossref[label={para.}][ref1]
\item ref2 should be: sec. 1.2 and is: \crossref[label={sec.}][ref2]
\stopitemize
Here is one references with brakets:
\startitemize[nowhite]
\item ref1 should be: (para. 1.1/2) and is: \crossref[left={(},right={)},label={para.}][ref1]
\stopitemize
\stopParagraph

\stopsection
\startsection[title={Amet},reference=ref2]

\page

\startParagraph
Here are two references to destinations on an other page:
\startitemize[nowhite]
\item ref1 should be: para. 1.1/2 on page 1 and is: \crossref[label={para.}][ref1]
\item ref2 should be: sec. 1.2 on page 1 and is: \crossref[label={sec.}][ref2]
\stopitemize
\stopParagraph

\stopsection
\stopchapter
\stoptext

t-pararef-2.jpg t-pararef-3.jpg

Text part divider

Each section (subsection, subsubsection etc.) has mostly three parts:

  • introduction part,
  • one or several main parts and
  • summary part.

Each part contains one or more paragraphs. To make the logic parts visible the parts are divided by a line \textpartdivider.

\usemodule[pararef]

\starttext

\startsection[title={Lorem ipsum}]
\startParagraph
Some introduction text \input tufte
\stopParagraph

\textpartdivider

\dorecurse{3}{
\startParagraph
Some main theme text \input tufte
\stopParagraph
}

\textpartdivider

\startParagraph
Some section summarizing text \input tufte
\stopParagraph

\stopsection
\startsection[title={Doloris sit}]
...
\stopsection
\stoptext

t-pararef-4.jpg

Settings

Often references (or links) are printed in a different color than the normal text. In pararef the colors can be set via three paramters:

  • crossrefColor for the entire reference text,
  • textpartdividerColor for the color of the line and
  • paragraphNumberColor for the number of the paragraph.

They are defined as parameters of the module:

\usemodule[pararef][crossrefColor=...,textpartdividerColor=...,paragraphNumberColor=...]
...

The brakets and text part for \crossref can also be adjusted or extended with other languages:


For now the color and style of the paragraph title has to be set via the normal outer margin settings.