Problem index edit

Words edit

Sentences edit

Page endings edit

  • Template:Nop
  • NBSP between pages: put the offending text segment beginning in the footer, with a space in front of it in the footer, then includeonly that same text with the proper formatting at the beginning of the next page's main body with the NBSP outside of the includeonly statement. If there is a link, includeonly the entire link, then noinclude the offending text segment ending.

How to split a table across many Page: pages so they transclude neatly into one (User:Inductiveload) edit

Page 1
 {| table styling
 | col1 || col2 || col3 
 |-
 <noinclude>|}</noinclude> <---this is the footer of the page
Page 2
 <noinclude> {| table styling (same as page 1)</noinclude> <---this is the header
 {{nop}}
 | col1 || col2 || col3
 |-
 <noinclude>|}</noinclude> <---this is the footer of the page

...

Page x
 <noinclude> {| table styling (same as page 1)</noinclude> <---this is the header
 {{nop}}
 | col1 || col2 || col3
 |}

Footnotes of footnotes / references in references (User:Mpaa) edit

From: User:Inductiveload

Replace the outer

<ref name="foo" group="bar" follow="ook">Footnote content</ref>

with

{{#tag:ref|Footnote content|name=foo|group=bar|follow=ook}}

but leave the inner one alone.

For example, this text contains a footnote that itself contains a footnote.[outer 1]

  1. This is the outer footnote.[inner 1]
  1. This is the inner footnote

Footnote overflow (User:Hesperian) edit

This is for situations where the footnote runs on multiple pages in the printed text but needs to be combined for transclusion.

First page
{{#tag:ref|Footnote text before overflow.<includeonly>{{#section:Page:[Second page]|overflow}}</includeonly>}}
Subsequent pages
<section begin=text/>Page text<section end=text/>

<div style="font-size:smaller;">
<section begin=overflow/>Footnote overflow.<section end=overflow/>
</div>
Transclusion
{{Page:[First page]}}
{{#section:Page:[Second page]|text}}
Working examples