0 votes
37 views
Hi, I'm noob. I need help. I want to increase space between \lik...\lik* and \liv1...\liv1* and print draft with PTXprint, but I don't know where to adjust the space setting.
PTXprint by (124 points) | 37 views

1 Answer

+2 votes
Best answer
I'm assuming you just want to get a little extra space in there. PTXprint has various interesting spaces that might be able to help and failing that you can define precisely how much space you want in there. So this answer may be longer than you were expecting and you are welcome to stop reading. Let's say you want about a full point size width in there, with a bit of stretch and shrink to help with line breaking. You can use a special Unicode character U+2003 (EM SPACE). To do this, add the following to your changes.txt (advanced, enable changes.txt):

```

'(\\lik\*)\s*(\\liv1)' > '\1\u2003\2'

```

which says to replace the space between the end of the lik and the start of the liv1 with the em space. It matches the closing \\lik* (and keeps it as \1) and also \\liv1 (as \2) and replaces the whole string with the kept \1 the replacement space and the \2.
You can also use our TeX name for this instead (\MSPACE) as in:

```

'(\\lik\*)\s*(\\liv1)' > '\1\\MSPACE\2'

```

All the Unicode spaces in the range \u2000-\u200B are open to you. But say you wanted a lot of space, more than a couple of \u2003 (yes you can put more than one in) gives you. Say you want to define exactly how much space you want in there. You can define your own space code. Let's call it \MYSPACE. We define it in ptxprint-mods.tex:

```

\def\MYSPACE{\hskip 4.6em minus 1em}

```

That's really wide but can shrink a bit. Then we need to insert it. You've probably guessed the changes.txt entry by now:

```

'(\\lik\*)\s*(\\liv1)' > '\1\\MYSPACE\2'

```

Have fun laying out your lists
by (656 points)
selected by
Thank you mhosken. I test all options as you suggest.

Related questions

+1 vote
1 answer 56 views
My problem: Sometimes in the maintext, the footnote caller auto-created in an alphabet order prints in the end of ... In PTXPrints, how to print the new footnote caller formatting?
Y Mdu Niê 124 asked Jan 14
0 votes
2 answers 30 views
In one project, a classic footnote looks like this: \f + \fr cc.v \fq keyword (mostly singular, if noun) \ ... hope to avoid inventing a wheel, which might already be available.
Tim 934 asked May 29
+1 vote
0 answers 25 views
When citing chapters and verses, use only a comma (,) to separate the chapter number from the verse number on header of the page. Example: Mc 1,39 (Mark chapter 1 verse 39)
Petrus Khoa 103 asked Jul 26, 2025
0 votes
1 answer 56 views
This is my problem: In the footnote, the translator provides the Hebrew word in source text and its range of meaning. The ... the size of the main font. How to solve this problem?
Y Mdu Niê 124 asked Mar 10
0 votes
1 answer 23 views
Hi! I would like to know if it's possible to render every verse with the book name, chapter, and verse number. Like GEN 1.1 In the beginning... GEN 1.2 ... Thanks
ChrisMacB 102 asked Nov 25, 2025
Welcome to Support Bible, where you can ask questions and receive answers from other members of the community.
I appeal to you, brothers and sisters, in the name of our Lord Jesus Christ, that all of you agree with one another in what you say and that there be no divisions among you, but that you be perfectly united in mind and thought.
1 Corinthians 1:10
3,038 questions
5,994 answers
5,661 comments
2,022 users