Template:Frac/doc: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Quondum
(→‎See also: better wording)
m (106 revisions imported)
 
(29 intermediate revisions by 17 users not shown)
Line 1: Line 1:
{{Documentation subpage}}
{{Documentation subpage}}
<!--PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE-->
<!-- Place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[Wikipedia:Wikidata]]) -->
{{No subst}}
This template builds an alternative form of [[common fraction]]s. The template takes one, two, or three parameters: the optional integer (may be signed), the optional numerator and the required denominator; in this order.  
This template builds an alternative form of [[common fraction]]s. The template takes one, two, or three parameters: the optional integer (may be signed), the optional numerator and the required denominator; in this order.  


Please '''do not''' <code>subst:</code>itute it. This template should '''not''' be used in science or mathematical articles, per [[MOS:FRAC]] and [[MOS:MATH#Fractions]]; use {{tl|sfrac}} instead. To allow numerical sorting of a column containing fractions, use {{tl|sortfrac}} instead. It is a combination of this template and {{tl|sort}}.
Please '''do not''' <code>subst:</code>itute it. This template should '''not''' be used in science or mathematical articles, per [[MOS:FRAC]] and [[MOS:MATH#Fractions]]; use {{tl|sfrac}} instead. To allow numerical sorting of a column containing fractions, use {{tl|sortfrac}} instead. It is a combination of this template and {{tl|sort}}.
;<code><nowiki>{{frac|A|B|C}}</nowiki></code>: {{frac|A|B|C}} (integer, numerator and denominator)
;<code><nowiki>{{frac|A|B|C}}</nowiki></code>: {{frac|A|B|C}} (integer, numerator and denominator)
:<source lang=html5><span class="frac">A<sup>&nbsp;B</sup>⁄<sub>C</sub></span></source>
;<code><nowiki>{{frac|A|B}}</nowiki></code>: {{frac|A|B}} (numerator and denominator)
;<code><nowiki>{{frac|A|B}}</nowiki></code>: {{frac|A|B}} (numerator and denominator)
:<source lang=html5><span class="frac"><sup>A</sup>⁄<sub>B</sub></span></source>
;<code><nowiki>{{frac|A}}</nowiki></code>: {{frac|A}} (denominator only)
;<code><nowiki>{{frac|A}}</nowiki></code>: {{frac|A}} (denominator only)
:<source lang=html5><span class="frac"><sup>1</sup>⁄<sub>A</sub></span></source>
;<code><nowiki>{{frac}}</nowiki></code>: {{frac}} (fraction slash only)
;<code><nowiki>{{frac}}</nowiki></code>: {{frac}} (fraction slash only)
:<source lang=html5><span class="frac">⁄</span></source>
== Parameters ==
<templatedata>
{
  "description": "A template for displaying common fractions of the form int+num/den nicely. It supports 0–3 anonymous parameters with positional meaning.",
  "params": {
    "1": {
      "label": "1st part from left",
      "description": "Denominator if only parameter supplied. Numerator if two parameters supplied. Integer if three parameters supplied. If no parameter is specified the template will render a fraction slash only.",
      "type": "string",
      "required": false
    },
    "2": {
      "label": "2nd part from left",
      "description": "Denominator if two parameters supplied. Numerator if three parameters supplied.",
      "type": "string",
      "required": false
    },
    "3": {
      "label": "3rd part from left",
      "description": "Denominator, always.",
      "type": "string",
      "required": false
    }
  }
}
</templatedata>


==Examples==
==Examples==
Line 44: Line 14:
;Units: {{frac|m|s}} {{frac|km|h}} {{frac|kg·m|s²}} {{frac|s}} {{frac|Mbit|s}}
;Units: {{frac|m|s}} {{frac|km|h}} {{frac|kg·m|s²}} {{frac|s}} {{frac|Mbit|s}}


==Deactivation and customization==
==Notes==
Users who prefer to see fractions inline, e.g. "1&nbsp;2⁄3" instead of "{{frac|1|2|3}}", can turn off the effects of this template by adding the following code to [[Help:User style|their user stylesheet]]:
*<code><nowiki>{{frac}}</nowiki></code> or <code>&amp;frasl;</code> may be used to print out the fraction slash glyph " &frasl; ".
<source lang="css">.frac > sup /* numerator */,
.frac > sub /* denominator */
{
  vertical-align: inherit /* or baseline */;
  font-size: inherit /* or 1em */;
  line-height: inherit /* or 1 */;
  position: inherit /* or static */;
}</source><!--untested-->
<!-- The following would work if the fraction slash was enclosed in a <code>span</code>
These selectors and properties can also be used as a base for custom rendering of vulgar fractions:
<source lang="css">/* Stacked Fractions */
.frac {
  display: inline-block;
  vertical-align: -0.6em;
  font-size: 85%;
  text-align: center;
}
.frac > span /* fraction slash */ {
  display: none;
}


.frac > sup /* numerator */,
== Parameters ==
.frac > sub /* denominator */ {
{{TemplateData header}}
   vertical-align: baseline;
<templatedata>{
   line-height: 1.2em;
"description": "A template for displaying common fractions of the form int+num/den nicely. It supports 0–3 anonymous parameters with positional meaning.",
   font-size: 1em;
"params": {
   position: static;
"1": {
   display: block;
   "label": "leftmost part",
   padding: 0 0.1em;
   "description": "Denominator if only parameter supplied. Numerator if 2 parameters supplied. Integer if 3 parameters supplied. If no parameter is specified the template will render a fraction slash only.",
}
   "type": "string/line",
.frac > sub {
   "required": false
   border-top: 1px solid;
},
"2": {
   "label": "middle-right part",
   "description": "Denominator if 2 parameters supplied. Numerator if 3 parameters supplied.",
  "inherits": "1"
},
"3": {
  "label": "rightmost part",
  "description": "Denominator, always.",
   "inherits": "1"
}
}
 
}}</templatedata>
</source>-->
 
== Code ==
 
<source lang=html5>
<span class="frac nowrap">{{#if:{{{3|}}}
|{{{1}}}<sup>&#32;{{{2}}}</sup>&frasl;<sub>{{{3}}}</sub>
|{{#if:{{{2|}}}
  |<sup>{{{1}}}</sup>&frasl;<sub>{{{2}}}</sub>
  |{{#if:{{{1|}}}
  |<sup>1</sup>&frasl;<sub>{{{1}}}</sub>
  |&frasl;
  }}
}}
}}</span>
</source>
 
==Notes==
*<code>&amp;frasl;</code> may be used to print out the fraction glyph " &frasl; "


==See also==
==See also==
 
* [[Wikipedia:Rendering math]]
*[[Wikipedia:«math»]]
* {{tl|1/2}} ({{1/2}}), {{tl|1/3}}, {{tl|2/3}}, {{tl|1/4}}, {{tl|3/4}} – shorthands that use this template
*{{tl|1/2}} ({{1/2}}), {{tl|1/3}}, {{tl|2/3}}, {{tl|1/4}}, {{tl|3/4}} – shorthands that use this template
* {{tl|sfrac}} ({{sfrac|2}}) – displays common fractions using a [[vinculum (symbol)|vinculum]] (horizontal line), for scientific and mathematical text
*{{tl|fraction}} ({{fraction|2}}) – uses precomposed glyphs when possible, whose use is discouraged by [[MOS:FRAC]] and [[MOS:MATH#Fractions]].
* {{tl|su}} ({{su|p=superscript|b=subscript}} text) – to align both b=subscript & p=[[superscript]]
*{{tl|sfrac}} ({{sfrac|2}}) – displays common fractions using a [[vinculum (symbol)|vinculum]] (horizontal line), for scientific and mathematical text
* {{tl|sub}} ({{sub|subscript}} text) – to show a [[subscript]]
* {{tl|sub}} ({{sub|subscript}} text) – to show a [[subscript]]
* {{tl|su}} ({{su|p=superscript|b=subscript}} text) – to align both b=subscript & p=[[superscript]]
* {{tl|sup}} ({{sup|superscript}} text) – to show a [[superscript]]
* {{tl|sup sub}} (text{{sup sub|sup|sub}}) – for both 1=superscript & 2=subscript
* [[Help:Displaying a formula#Fractions, matrices, multilines]]
* [[Help:Convert#Fractions]]
*[[Number Forms]], a Unicode block consisting primarily of vulgar fractions
* [[OpenType]] fonts feature ''frac'', [[CSS]] {{code|font-variant-numeric:diagonal-fractions|css}}
* {{Unichar|2215|DIVISION SLASH|ulink=Mathematical Operators|html=|nlink=slash (punctuation)#Encoding}}


<includeonly>
{{Math templates|notation}}
<!--CATEGORIES AND INTERWIKIS HERE, THANKS-->
[[Category:Wikipedia formatting and function templates|{{PAGENAME}}]]
[[Category:Mathematical formatting templates|{{PAGENAME}}]]


[[af:Sjabloon:Breuk]]
<includeonly>{{Subpage other||
[[ar:قالب:Frac]]
<!-- Categories below this line, please; interwikis at Wikidata -->
[[as:সাঁচ:Frac]]
[[Category:Fraction templates]]
[[az:Şablon:Frac]]
}}</includeonly>
[[bar:Vorlage:Bruch]]
[[bn:টেমপ্লেট:Frac]]
[[ca:Plantilla:Frac]]
[[cs:Šablona:Zlomek]]
[[da:Skabelon:Brøk]]
[[diq:Şablon:Frac]]
[[de:Vorlage:Bruch]]
[[el:Πρότυπο:Frac]]
[[et:Mall:Murd]]
[[es:Plantilla:Fracción]]
[[fa:الگو:تقسیم]]
[[fi:Malline:Murtoluku]]
[[fr:Modèle:Fraction]]
[[frr:Vorlage:Bruch]]
[[gan:Template:Frac]]
[[hi:साँचा:Frac]]
[[hy:Կաղապար:Frac]]
[[id:Templat:Frac]]
[[ja:Template:分数]]
[[jv:Cithakan:Frac]]
[[ko:틀:분수]]
[[is:Snið:Brot]]
[[lt:Šablonas:Frac]]
[[lv:Veidne:Frac]]
[[mg:Endrika:Ampaha]]
[[mk:Шаблон:Дроп]]
[[ml:ഫലകം:Frac/വിവരണം]]
[[mr:साचा:Frac]]
[[ms:Templat:Frac]]
[[ne:ढाँचा:Frac]]
[[nl:Sjabloon:Breuk]]
[[nn:Mal:Brøk]]
[[no:Mal:Brøk]]
[[oc:Modèl:Fraccion]]
[[or:ଛାଞ୍ଚ:Frac]]
[[os:Шаблон:Лыст]]
[[pl:Szablon:U]]
[[pt:Predefinição:Frac]]
[[qu:Plantilla:Frac]]
[[ro:Format:Fracție]]
[[ru:Шаблон:Дробь]]
[[simple:Template:Frac]]
[[sl:Predloga:Ulomek]]
[[sq:Stampa:Frac]]
[[su:Citakan:Frac]]
[[sv:Mall:Frac]]
[[ta:வார்ப்புரு:Fraction]]
[[te:మూస:Frac]]
[[tr:Şablon:Frac]]
[[uk:Шаблон:Дріб]]
[[zh:Template:Fraction]]
[[zh-yue:Template:分數]]
</includeonly>

Latest revision as of 13:19, 3 September 2020

This template builds an alternative form of common fractions. The template takes one, two, or three parameters: the optional integer (may be signed), the optional numerator and the required denominator; in this order.

Please do not subst:itute it. This template should not be used in science or mathematical articles, per MOS:FRAC and MOS:MATH#Fractions; use {{sfrac}} instead. To allow numerical sorting of a column containing fractions, use {{sortfrac}} instead. It is a combination of this template and {{sort}}.

{{frac|A|B|C}}
A BC (integer, numerator and denominator)
{{frac|A|B}}
AB (numerator and denominator)
{{frac|A}}
1A (denominator only)
{{frac}}
(fraction slash only)

Examples

Numbers
121323143415253545165617273747576718385878116316516716916111613161516
Units
mskmhkg·m1sMbits

Notes

  • {{frac}} or &frasl; may be used to print out the fraction slash glyph " ⁄ ".

Parameters

This is the TemplateData for this template used by TemplateWizard, VisualEditor and other tools. See a monthly parameter usage report for this template in articles based on this TemplateData.

TemplateData for Frac

A template for displaying common fractions of the form int+num/den nicely. It supports 0–3 anonymous parameters with positional meaning.

Template parameters

ParameterDescriptionTypeStatus
leftmost part1

Denominator if only parameter supplied. Numerator if 2 parameters supplied. Integer if 3 parameters supplied. If no parameter is specified the template will render a fraction slash only.

Lineoptional
middle-right part2

Denominator if 2 parameters supplied. Numerator if 3 parameters supplied.

Lineoptional
rightmost part3

Denominator, always.

Lineoptional

See also