PreTeXtBook / pretext

PreTeXt: an authoring and publishing system for scholarly documents
https://pretextbook.org
Other
266 stars 208 forks source link

Punctuation in pdf in Exercise titles #926

Closed nordstromjf closed 6 years ago

nordstromjf commented 6 years ago

I am using [] in exercise titles in my PreTeXt code as follows:

Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])
rbeezer commented 6 years ago

Ooh, that's bad. Likely the brackets are being confused with the end of an optional argument.

It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an "m" tag? If not, is it better that way?

Maybe the title needs "protection" with curly braces, like I believe is happening with optional short titles already (migrating to the ToC).

On 07/26/2018 12:40 PM, nordstromjf wrote:

I am using [] in exercise titles in my PreTeXt code as follows:

Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

davidfarmer commented 6 years ago

The part should be in math mode, but there could be some case we did not think of yet that has regular square brackets.

On Thu, 26 Jul 2018, Rob Beezer wrote:

Ooh, that's bad. Likely the brackets are being confused with the end of an optional argument.

It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an "m" tag? If not, is it better that way?

Maybe the title needs "protection" with curly braces, like I believe is happening with optional short titles already (migrating to the ToC).

On 07/26/2018 12:40 PM, nordstromjf wrote:

I am using [] in exercise titles in my PreTeXt code as follows:

Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LNXipT7UhSAgJJ69SuGX4eZ6ecrgks5uKh9BgaJpZM4Vibr0.gif]

nordstromjf commented 6 years ago

The first instance I have this notation in a title, I would like it to say “Payoff for [Bet, Fold].” With the syntax I posted in the issue, the pdf says “Payoff for [Bet, Fold .]” The html is fine, and looks like I want. Here are some things I tried and what happened:

Payoff for <m>[Bet, Fold]</m>, of course the Bet and Fold are italicized in the html, but the big problem is I couldn’t tex it since when I ran pdflatex it got an error: missing $. [Bet,Fold], and [\text{Bet}, \text{Fold}], here the html still looks a little weird because the math font is different from the regular font, but again I get the missing $ error with pdflatex. I think it is the use of [] that is causing problems, since if I try Bet, Fold with no [ ], I don’t get an error. I already switched notation throughout the book since {Bet, Fold} had problems in the pdf (missing {}). So, basically the use of [] in math tags makes things worse in titles. Jen ------------------------------------------ Jennifer Firkins Nordstrom Department of Mathematics Linfield College jfirkins@linfield.edu From: "David W. Farmer" Reply-To: rbeezer/mathbook Date: Thursday, July 26, 2018 at 1:09 PM To: rbeezer/mathbook Cc: Jennifer Nordstrom , Author Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926) The part should be in math mode, but there could be some case we did not think of yet that has regular square brackets. On Thu, 26 Jul 2018, Rob Beezer wrote: > Ooh, that's bad. Likely the brackets are being confused with the end of an > optional argument. > > It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an > "m" tag? If not, is it better that way? > > Maybe the title needs "protection" with curly braces, like I believe is > happening with optional short titles already (migrating to the ToC). > > On 07/26/2018 12:40 PM, nordstromjf wrote: > > I am using [] in exercise titles in my PreTeXt code as follows: > > > > Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LNXipT7UhSAgJJ69SuGX4eZ6ecrgks5uKh9BgaJpZM4Vibr0.gif]

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408220109, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0WgiNoH3Ghib2as2euBbO4Y53MMxV2ks5uKiIegaJpZM4Vibr0.

rbeezer commented 6 years ago

Thanks for the debugging. The use of [,] and {,} by LaTeX for grouping and arguments is almost certainly the root cause, along with titles moving around.

We've protected against this sort of thing befor - I've got an idea for a fix.

You could try the PTX elements, and (iirc)for now, as well. Not sure if they will behave better. They might.

On 07/27/2018 04:38 PM, nordstromjf wrote:

The first instance I have this notation in a title, I would like it to say “Payoff for [Bet, Fold].” With the syntax I posted in the issue, the pdf says “Payoff for [Bet, Fold .]” The html is fine, and looks like I want. Here are some things I tried and what happened:

Payoff for <m>[Bet, Fold]</m>, of course the Bet and Fold are italicized in the html, but the big problem is I couldn’t tex it since when I ran pdflatex it got an error: missing $. [Bet,Fold], and [\text{Bet}, \text{Fold}], here the html still looks a little weird because the math font is different from the regular font, but again I get the missing $ error with pdflatex. I think it is the use of [] that is causing problems, since if I try Bet, Fold with no [ ], I don’t get an error. I already switched notation throughout the book since {Bet, Fold} had problems in the pdf (missing {}). So, basically the use of [] in math tags makes things worse in titles. Jen ------------------------------------------ Jennifer Firkins Nordstrom Department of Mathematics Linfield College jfirkins@linfield.edu From: "David W. Farmer" Reply-To: rbeezer/mathbook Date: Thursday, July 26, 2018 at 1:09 PM To: rbeezer/mathbook Cc: Jennifer Nordstrom , Author Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926) The part should be in math mode, but there could be some case we did not think of yet that has regular square brackets. On Thu, 26 Jul 2018, Rob Beezer wrote: > Ooh, that's bad. Likely the brackets are being confused with the end of an > optional argument. > > It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an > "m" tag? If not, is it better that way? > > Maybe the title needs "protection" with curly braces, like I believe is > happening with optional short titles already (migrating to the ToC). > > On 07/26/2018 12:40 PM, nordstromjf wrote: > > I am using [] in exercise titles in my PreTeXt code as follows: > > > > Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread

https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LNXipT7UhSAgJJ69SuGX4eZ6ecrgks5uKh9BgaJpZM4Vibr0.gif]

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408220109, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0WgiNoH3Ghib2as2euBbO4Y53MMxV2ks5uKiIegaJpZM4Vibr0.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926#issuecomment-408563953, or mute the thread https://github.com/notifications/unsubscribe-auth/ABy2ci1hUSqzRQjho0iajZD6ftcjyNrxks5uK6SIgaJpZM4Vibr0.

nordstromjf commented 6 years ago

Hi Rob,

The element works just like [ ]. I have updated both my html and my matching pdf on my git hub page. So if you are curious you can see how the pdf looks: https://nordstromjf.github.io/IntroGameTheoryv4.pdf

Section 2.4 has the first occurrence.

Again, the HTML looks just fine.

Jen

Jennifer Firkins Nordstrom Department of Mathematics Linfield College

jfirkins@linfield.edu

From: Rob Beezer notifications@github.com Reply-To: rbeezer/mathbook reply@reply.github.com Date: Friday, July 27, 2018 at 5:06 PM To: rbeezer/mathbook mathbook@noreply.github.com Cc: Jennifer Nordstrom jfirkins@linfield.edu, Author author@noreply.github.com Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926)

Thanks for the debugging. The use of [,] and {,} by LaTeX for grouping and arguments is almost certainly the root cause, along with titles moving around.

We've protected against this sort of thing befor - I've got an idea for a fix.

You could try the PTX elements, and (iirc)for now, as well. Not sure if they will behave better. They might.

On 07/27/2018 04:38 PM, nordstromjf wrote:

The first instance I have this notation in a title, I would like it to say “Payoff for [Bet, Fold].” With the syntax I posted in the issue, the pdf says “Payoff for [Bet, Fold .]” The html is fine, and looks like I want. Here are some things I tried and what happened:

Payoff for <m>[Bet, Fold]</m>, of course the Bet and Fold are italicized in the html, but the big problem is I couldn’t tex it since when I ran pdflatex it got an error: missing $. [Bet,Fold], and [\text{Bet}, \text{Fold}], here the html still looks a little weird because the math font is different from the regular font, but again I get the missing $ error with pdflatex. I think it is the use of [] that is causing problems, since if I try Bet, Fold with no [ ], I don’t get an error. I already switched notation throughout the book since {Bet, Fold} had problems in the pdf (missing {}). So, basically the use of [] in math tags makes things worse in titles. Jen ------------------------------------------ Jennifer Firkins Nordstrom Department of Mathematics Linfield College jfirkins@linfield.edu From: "David W. Farmer" Reply-To: rbeezer/mathbook Date: Thursday, July 26, 2018 at 1:09 PM To: rbeezer/mathbook Cc: Jennifer Nordstrom , Author Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926) The part should be in math mode, but there could be some case we did not think of yet that has regular square brackets. On Thu, 26 Jul 2018, Rob Beezer wrote: > Ooh, that's bad. Likely the brackets are being confused with the end of an > optional argument. > > It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an > "m" tag? If not, is it better that way? > > Maybe the title needs "protection" with curly braces, like I believe is > happening with optional short titles already (migrating to the ToC). > > On 07/26/2018 12:40 PM, nordstromjf wrote: > > I am using [] in exercise titles in my PreTeXt code as follows: > > > > Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread

https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LNXipT7UhSAgJJ69SuGX4eZ6ecrgks5uKh9BgaJpZM4Vibr0.gif]

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408220109, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0WgiNoH3Ghib2as2euBbO4Y53MMxV2ks5uKiIegaJpZM4Vibr0.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926#issuecomment-408563953, or mute the thread https://github.com/notifications/unsubscribe-auth/ABy2ci1hUSqzRQjho0iajZD6ftcjyNrxks5uK6SIgaJpZM4Vibr0.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408566931, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0Wgr7p0JbONUPBhdMlrv7aWaCV4AK4ks5uK6sOgaJpZM4Vibr0.

rbeezer commented 6 years ago

Thanks for the testing. I'll get it fixed. Very busy with other PTX work for two weeks. What is your timeline for a beautiful PDF?

On July 30, 2018 3:00:57 PM EDT, nordstromjf notifications@github.com wrote:

Hi Rob,

The element works just like [ ]. I have updated both my html and my matching pdf on my git hub page. So if you are curious you can see how the pdf looks: https://nordstromjf.github.io/IntroGameTheoryv4.pdf

Section 2.4 has the first occurrence.

Again, the HTML looks just fine.

Jen

Jennifer Firkins Nordstrom Department of Mathematics Linfield College

jfirkins@linfield.edu

From: Rob Beezer notifications@github.com Reply-To: rbeezer/mathbook reply@reply.github.com Date: Friday, July 27, 2018 at 5:06 PM To: rbeezer/mathbook mathbook@noreply.github.com Cc: Jennifer Nordstrom jfirkins@linfield.edu, Author author@noreply.github.com Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926)

Thanks for the debugging. The use of [,] and {,} by LaTeX for grouping and arguments is almost certainly the root cause, along with titles moving around.

We've protected against this sort of thing befor - I've got an idea for a fix.

You could try the PTX elements, and (iirc)for now, as well. Not sure if they will behave better. They might.

On 07/27/2018 04:38 PM, nordstromjf wrote:

The first instance I have this notation in a title, I would like it to say “Payoff for [Bet, Fold].” With the syntax I posted in the issue, the pdf says “Payoff for [Bet, Fold .]” The html is fine, and looks like I want. Here are some things I tried and what happened:

Payoff for <m>[Bet, Fold]</m>, of course the Bet and Fold are italicized in the html, but the big problem is I couldn’t tex it since when I ran pdflatex it got an error: missing $. [Bet,Fold], and [\text{Bet}, \text{Fold}], here the html still looks a little weird because the math font is different from the regular font, but again I get the missing $ error with pdflatex. I think it is the use of [] that is causing problems, since if I try Bet, Fold with no [ ], I don’t get an error. I already switched notation throughout the book since {Bet, Fold} had problems in the pdf (missing {}). So, basically the use of [] in math tags makes things worse in titles. Jen ------------------------------------------ Jennifer Firkins Nordstrom Department of Mathematics Linfield College jfirkins@linfield.edu From: "David W. Farmer" Reply-To: rbeezer/mathbook Date: Thursday, July 26, 2018 at 1:09 PM To: rbeezer/mathbook Cc: Jennifer Nordstrom , Author Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926) The part should be in math mode, but there could be some case we did not think of yet that has regular square brackets. On Thu, 26 Jul 2018, Rob Beezer wrote: > Ooh, that's bad. Likely the brackets are being confused with the end of an > optional argument. > > It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an > "m" tag? If not, is it better that way? > > Maybe the title needs "protection" with curly braces, like I believe is > happening with optional short titles already (migrating to the ToC). > > On 07/26/2018 12:40 PM, nordstromjf wrote: > > I am using [] in exercise titles in my PreTeXt code as follows: > > > > Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread

https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LNXipT7UhSAgJJ69SuGX4eZ6ecrgks5uKh9BgaJpZM4Vibr0.gif]

— You are receiving this because you authored the thread. Reply to this email directly, view it on

GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408220109, or mute the

threadhttps://github.com/notifications/unsubscribe-auth/AR0WgiNoH3Ghib2as2euBbO4Y53MMxV2ks5uKiIegaJpZM4Vibr0.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub

https://github.com/rbeezer/mathbook/issues/926#issuecomment-408563953, or mute the thread

https://github.com/notifications/unsubscribe-auth/ABy2ci1hUSqzRQjho0iajZD6ftcjyNrxks5uK6SIgaJpZM4Vibr0.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408566931, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0Wgr7p0JbONUPBhdMlrv7aWaCV4AK4ks5uK6sOgaJpZM4Vibr0.

nordstromjf commented 6 years ago

No rush. I posted what I have. Unlikely that I will repost any time soon.

Thanks,

Jen

Sent from my iPad

On Jul 30, 2018, at 12:32 PM, Rob Beezer notifications@github.com<mailto:notifications@github.com> wrote:

Thanks for the testing. I'll get it fixed. Very busy with other PTX work for two weeks. What is your timeline for a beautiful PDF?

On July 30, 2018 3:00:57 PM EDT, nordstromjf notifications@github.com<mailto:notifications@github.com> wrote:

Hi Rob,

The element works just like [ ]. I have updated both my html and my matching pdf on my git hub page. So if you are curious you can see how the pdf looks: https://nordstromjf.github.io/IntroGameTheoryv4.pdf

Section 2.4 has the first occurrence.

Again, the HTML looks just fine.

Jen

Jennifer Firkins Nordstrom Department of Mathematics Linfield College

jfirkins@linfield.edumailto:jfirkins@linfield.edu

From: Rob Beezer notifications@github.com<mailto:notifications@github.com> Reply-To: rbeezer/mathbook reply@reply.github.com<mailto:reply@reply.github.com> Date: Friday, July 27, 2018 at 5:06 PM To: rbeezer/mathbook mathbook@noreply.github.com<mailto:mathbook@noreply.github.com> Cc: Jennifer Nordstrom jfirkins@linfield.edu<mailto:jfirkins@linfield.edu>, Author author@noreply.github.com<mailto:author@noreply.github.com> Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926)

Thanks for the debugging. The use of [,] and {,} by LaTeX for grouping and arguments is almost certainly the root cause, along with titles moving around.

We've protected against this sort of thing befor - I've got an idea for a fix.

You could try the PTX elements, and (iirc)for now, as well. Not sure if they will behave better. They might.

On 07/27/2018 04:38 PM, nordstromjf wrote:

The first instance I have this notation in a title, I would like it to say “Payoff for [Bet, Fold].” With the syntax I posted in the issue, the pdf says “Payoff for [Bet, Fold .]” The html is fine, and looks like I want. Here are some things I tried and what happened:

Payoff for <m>[Bet, Fold]</m>, of course the Bet and Fold are italicized in the html, but the big problem is I couldn’t tex it since when I ran pdflatex it got an error: missing $. [Bet,Fold], and [\text{Bet}, \text{Fold}], here the html still looks a little weird because the math font is different from the regular font, but again I get the missing $ error with pdflatex. I think it is the use of [] that is causing problems, since if I try Bet, Fold with no [ ], I don’t get an error. I already switched notation throughout the book since {Bet, Fold} had problems in the pdf (missing {}). So, basically the use of [] in math tags makes things worse in titles. Jen ------------------------------------------ Jennifer Firkins Nordstrom Department of Mathematics Linfield College jfirkins@linfield.edu From: "David W. Farmer" > Reply-To: rbeezer/mathbook > Date: Thursday, July 26, 2018 at 1:09 PM To: rbeezer/mathbook > Cc: Jennifer Nordstrom >, Author > Subject: Re: [rbeezer/mathbook] Punctuation in pdf in Exercise titles (#926) The part should be in math mode, but there could be some case we did not think of yet that has regular square brackets. On Thu, 26 Jul 2018, Rob Beezer wrote: > Ooh, that's bad. Likely the brackets are being confused with the end of an > optional argument. > > It should be fixed. But in your case, is "[B,F]" mathematics? Are you using an > "m" tag? If not, is it better that way? > > Maybe the title needs "protection" with curly braces, like I believe is > happening with optional short titles already (migrating to the ToC). > > On 07/26/2018 12:40 PM, nordstromjf wrote: > > I am using [] in exercise titles in my PreTeXt code as follows: > > > > Expected value of [B, F]

Similarly, determine the expected value for Player 1 for the pure strategy pair [B, F]. What is Player 2's expected value?

The HTML puts the period after the ] in the title and looks fine, but the pdf generated from the latex version has [B, F .] (space, period, ])

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rbeezer/mathbook/issues/926, or mute the thread

https://github.com/notifications/unsubscribe-auth/ABy2cpmlDrjyHMagabdLTDqIgtW--krNks5uKhsjgaJpZM4Vibr0.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LNXipT7UhSAgJJ69SuGX4eZ6ecrgks5uKh9BgaJpZM4Vibr0.gif]

— You are receiving this because you authored the thread. Reply to this email directly, view it on

GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408220109, or mute the

threadhttps://github.com/notifications/unsubscribe-auth/AR0WgiNoH3Ghib2as2euBbO4Y53MMxV2ks5uKiIegaJpZM4Vibr0.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub

https://github.com/rbeezer/mathbook/issues/926#issuecomment-408563953, or mute the thread

https://github.com/notifications/unsubscribe-auth/ABy2ci1hUSqzRQjho0iajZD6ftcjyNrxks5uK6SIgaJpZM4Vibr0.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408566931, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0Wgr7p0JbONUPBhdMlrv7aWaCV4AK4ks5uK6sOgaJpZM4Vibr0.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/rbeezer/mathbook/issues/926#issuecomment-408982967, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AR0WgmbFLmUrC8jV9Ct52NJEggpokg3Gks5uL19EgaJpZM4Vibr0.

rbeezer commented 6 years ago

This should be fixed now. Thanks for your patience waiting for this. Testing with your examples would be appreciated.

Checkpoint 25.19 (or 25.20) of the sample article (which is now exposing an existing numbering bug).

Should fix about 10 of the similar blocks that are being styled via tcolorbox now. Fix at 46fa86197c8a685cfeb4520bf590613a2b91a218.

Rather than protecting optional arguments with groups (curly braces), I'd like to replace dangerous characters by safe equivalents, such as \textlbrace. But I can't seem to find one for square brackets.

rbeezer commented 6 years ago

And I should have also said: thanks for reporting this and testing the bad behavior.