Questions tagged [numbered]

20 questions
7
votes
1 answer

orgmode, referring to an item in a numbered list

I need to refer to the number of an item in a numbered list. For example: 1. Something 2. See item (1) 3. Something else Orgmode lets me create hyperlinks, but these are useless in a printed document, so I need to refer to the actual number of the…
Mayer Goldberg
  • 1,378
  • 11
  • 23
4
votes
2 answers

How to number a sorted list in XSLT

I used xsl:sort in apply-templates to sort the elements and I would like to have them also numbered, but if I try to use xsl:number, then it just gives the original position, not the one after sorting. I guess variables can't be used either because…
Joza
  • 173
  • 1
  • 9
4
votes
3 answers

How to create a break in a numbered list in HTML

I am looking to create an alphabetized numbered list (which is fairly easy), however I am looking to add a break in the numbers for a place to add the letters (A, B, C, etc) however keep the chronology of the numbers. I know that I could do the…
B C
  • 41
  • 1
  • 2
3
votes
3 answers

VBA Access to Word error when creating numbered list

I have an Access database from which I create Word documents. I'm using Office 2016. When I run the code, I either get Error 462 "Remote server machine does not exist or is unavailable" or Error -2147023170 "Error: Automation error, The remote…
Sébastien
  • 33
  • 3
3
votes
3 answers

aligned equations with mathjax, and with equation numbers

I would like to write a series of numbered equations aligned at the equality sign. Like the usual .. math:: with multiple equations, but wrapped in \begin{align} ... \end{align} rather than \begin{equation} ... \end{equation}. Is there a way to do…
eudoxos
  • 18,545
  • 10
  • 61
  • 110
2
votes
2 answers

Word 2010 VBA macro to restart numbered lists

I have a Word 2010 document with a lot of lists that were copied from another document. Unfortunately, when I copied the lists into my document they do not start at 1 anymore as they did in the orginial but are continuing from the previous lists…
Pieter Zooi
  • 31
  • 1
  • 5
2
votes
4 answers

Fixing a few thousands filenames on linux

I have extracted clips from a video with ffmpeg, following this pattern 'clip-%4d.png'. This has yielded files like: clip-0001.png, clip-0002.png and so on. I have then applied many filters with imagemagick "convert" to those pictures, and it ran…
biximilien
  • 23
  • 3
1
vote
1 answer

JQuery wrap divs with numbered classes

This is somewhat tricky, assuming this scenario:
Mickey
Donald
I want to wrap the divs with the section class, numbering it…
Kinglybird
  • 319
  • 3
  • 8
1
vote
4 answers

how do you loop through javascript numbered variables?

how do you loop through javascript numbered variables? let count = 5; var test1 = "test1" var test2 = "test2" var test3 = "test3" var test4 = "test4" var test5 = "test5" for (let i = 0; i < count; i++) { console.log(test{i}); //no that don't…
jondavis4
  • 39
  • 4
1
vote
2 answers

How to create a bulleted or numbered list with Qt?

How to create a bulleted or numbered list in QTextEdit with Qt by clicking a button? Also it is necessary that make a list the paragraphes which are selected by clicking the same button. And when the cursor is in the list and you click the button,…
Narek
  • 38,779
  • 79
  • 233
  • 389
1
vote
1 answer

How do I rename multiple files after sorting by creation date?

I want to number files based on creation date rather than based on the old file names. Example: Assume the following files are listed in descending order of creation date. A.jpg D.jpg B.jpg C.jpg I want to rename these files such that A.jpg becomes…
Zorrina
  • 23
  • 1
  • 4
1
vote
1 answer

how to remove white space content between the bullet symbol and the paragraph using OpenXML

I'm creating a word document using c# and OpenXML. In the document I have several bulleted lists, My question is how to change the size of or remove the white space content between the bullet symbol and the paragraph?
0
votes
0 answers

Numbered bibliographies for each section

I am compiling my theses, but I am struggling to get the individual bibliographies number for each chapter. I manged to generate seperate bibliograpies and include them int he table of contents, but they remain unnummbered. Any adivse would be…
0
votes
2 answers

Generating consecutive numbered urls

I want to generate a text file containing the folowing lines: http://example.com/file1.pdf http://example.com/file2.pdf http://example.com/file3.pdf . . http://example.com/file1000.pdf Can any one advise how to do it using unix command line,…
Majid
  • 13
  • 4
0
votes
0 answers

How To Rank Rows in Descending Order Based on Chosen Column Values And Get Presented Only Qualified Rows?

Imagine my Mysql Tbl looks like this: Item|Score cam|2 car|5 window|1 glass|4 Now, I want php mysqli to present rows who's values (in the score column) are greater than "1". From our example, I want it presented like…
user11375621
1
2