This template is used to display numbers with thousands separator in a sortable table and have them numerically sorted in alphabetic sort mode. It is applied to all numbers of a column, in cases where numeric sort mode does not work or is not desired.

The supplied input numbers should not have thousands separators. Apart from the added thousands separators the numbers are formatted like supplied (scientific notation or not, leading and trailing zeros, and a zero before the decimal point or not). This formatting does not affect the sorting order except for numbers not satisfying the limitations mentioned below.

Purpose सम्पादन गर्नुहोस्

If some table cells in a column contain text after the number, or if the numbers are preceded by some fixed text other than a currency symbol, alphabetic sorting mode is needed.

Also, formerly, for table sorting to function correctly, numbers had to be entered with not more than one thousands separator. As a workaround alphabetic sorting mode was applied, and the numbers provided with a hidden part so that alphabetic sorting corresponded with numeric sorting. Since a mix in one column of numbers formatted for alphabetic sorting and plain numbers does not allow proper sorting, adding a number in an existing table may require putting it in the format used in that column.

Method सम्पादन गर्नुहोस्

This template automatically creates hidden code like <span style="display:none">&0000000123456789.001230</span> before the actual displayed number. The preceding ampersand forces the sorting routine to use text sort. The routine sorts the total text without the tags, which corresponds to numeric sorting due to the leading zeros.

Limitations सम्पादन गर्नुहोस्

  • Negative numbers do not sort correctly with this template: while they correctly come at the low end, mutually they are sorted in reverse order (i.e., in the order of the absolute value).
  • The maximum number is 1×१०१६. While larger numbers correctly come at the high end, they are mutually sorted alphabetically.
  • There is a maximum of 6 digits after the decimal separator. When using a consistent non-scientific notation numbers with more than 6 digits after the decimal separator still sort correctly. They sort correctly with respect to 0 if they are written with the zero before the decimal point.
  • In the case of text before a number, the entry is positioned like 1×१०१६. If there are more of such entries they are mutually sorted alphabetically (primarily based on the text).

Parameters सम्पादन गर्नुहोस्

The template has only one required parameter: a real number without thousand separators.

Optional parameters
  • debug - To show the sort key, use |debug=yes.
    "{{nts|123456789.00123|debug=yes}}" gives "7008123456789001230♠१२३,४५६,७८९.००१२३" [१]
  • prefix - To add a prefix to the displayed number, use |prefix=some prefix
    "{{nts|123456789.00123|prefix=approx. }}" gives "approx. १२३,४५६,७८९.००१२३" [२]

Example सम्पादन गर्नुहोस्

{{Nts|123456789.00123}}

expands to

 <span style="display:none">&0000000123456789.001230</span> 123,456,789.00123 

which is rendered as १२३,४५६,७८९.००१२३

More examples सम्पादन गर्नुहोस्

Below are more examples, also illustrating the limitations mentioned above.

Note: Javascript sorting order: &+,-.0123456789Ee~

sortkey and number
1000000000000000000♠
1000000000000000000♠
1000000000000000000♠between २ and ३
1000000000000000000♠approx. १०
2999500000000000000♠−५
2999600000000000000♠−४
2998270000000000000♠−७३
2998330000000000000♠−६७
7005123456000000000♠१२३,४५६
7016203456789012345♠२.०३४५६७८९०१२३५×१०^१६
7017100345678901234♠१.००३४५६७८९०१२३×१०^१७
7015123456789012345♠१.२३४५६७८९०१२३५×१०^१५
7014234567890123456♠२.३४५६७८९०१२३४६×१०^१४
7013345678901234561♠३.४५६७८९०१२३४५६×१०^१३
7012456789012345612♠४.५६७८९०१२३४५६१×१०^१२
7011567890123456123♠५.६७८९०१२३४५६१२×१०^११
7010678901234561234♠६.७८९०१२३४५६१२३×१०^१०
7009789012345612345♠७.८९०१२३४५६१२३५×१०^
7008890123456123456♠८९०,१२३,४५६.१२३४६000
7007901234561234567♠९०,१२३,४५६.१२३४५७00
7005123456123456780♠१२३,४५६.१२३४५६७८
7005123456123456780♠१२३,४५६.१२३४५६७८
7004234561234567799♠२३,४५६.१२३४५६७८
7003345612345678000♠३,४५६.१२३४५६७८
7002456123456780000♠४५६.१२३४५६७८
7001561234567800000♠५६.१२३४५६७८
7000612345678000000♠६.१२३४५६७८
6999123456780000000♠०.१२३४५६७८
6999123456780000000♠०.१२३४५६७८
6998234567800000000♠०.०२३४५६७८
6997345678000000000♠०.००३४५६७८
6996456780000000000♠०.०००४५६७८
6995567800000000000♠५.६७८×१०^−५
6994678000000000000♠६.७८×१०^−६
6993780000000000000♠७.८×१०^−७
6992800000000000000♠×१०^−८
6992800000000000000♠×१०^−८
5000000000000000000♠

See also सम्पादन गर्नुहोस्

  • {{Ntsh}} - same as Nts, but does not display the number
  • {{Ntsc}} - for converted units, sorts by the first number
  • {{Ntss}} - same as Nts, but allows for the number to be scaled
  • {{Dts}} - for sorting dates
  • {{Sms}} - Probably a duplicate of {{Ntsh}}