LaTeX Finding a Compatible LaTex Editor for Forum Posting

  • Thread starter Thread starter longrob
  • Start date Start date
  • Tags Tags
    Forum Latex
AI Thread Summary
The discussion centers on issues with posting LaTeX code from LyX v1.65 to a forum, where the code fails to render correctly. Users have noted that while the LaTeX displays properly in LyX and some online editors, it does not work in the forum's environment. A specific problem arises from the forum's handling of long strings of characters, which can inadvertently break the code due to a 50-character limit without spaces. A workaround suggested involves adding extra spaces to prevent this issue, but simply wrapping the code in an align environment is not sufficient. The conversation highlights the need for a compatible LaTeX editor that can generate code suitable for the forum's formatting requirements.
longrob
Messages
51
Reaction score
0
Hi all

I use Lyx v1.65 for creating LaTex.

Obviously it displays OK in Lyx. It also displays OK with an online editor I've tried
http://www.codecogs.com/latex/eqneditor.php

But invariably when I try to post LaTex to this forum it does not work. I've tried the sandbox which the reason for the error, but frankly speaking I don't have time to play around with LaTex code directly.

I wonder if anyone can suggest a good LaTex editor that is compatible with this forum.

FWIW, here's some LaTex created in Lyx which does not work here

\mathbf{\boldsymbol{\beta}^{\textrm{T}}A\boldsymbol{\beta}}&=\overset{n}{\underset{i=1}{\sum}}\overset{n}{\underset{j=1}{\sum}}\beta_{i}a_{ij}\beta_{j}

and

\frac{\partial(\mathbf{\mathbf{\beta}^{\textrm{T}}}\mathbf{A\boldsymbol{\beta}})}{\partial\beta_{k}}&=2\beta_{k}a_{kk}+2\overset{n}{\underset{i\neq k}{\sum}}a_{ki}\beta_{i}

Thanks
LR
 
Physics news on Phys.org
When you type 50 characters without a space, vBulletin will insert a space that usually breaks the code. Here you can see how it breaks the word "boldsymbol":

\mathbf{\boldsymbol{\beta}^{\textrm{T}}A\boldsymbol{\beta}}&=\overset{n}{\underset{i=1}{\sum}}\overset{n}{\underset{j=1}{\sum}}\beta_{i}a_{ij}\beta_{j}

The workaround is to type a few extra spaces. That won't be enough in this case, unless you also put it in an align environment (because of the & symbol).

\begin{align}\mathbf{\boldsymbol{\beta}^{\textrm{T}} A\boldsymbol{\beta}} &=\overset{n}{\underset{i=1}{\sum}} \overset{n}{\underset{j=1}{\sum}} \beta_{i}a_{ij}\beta_{j}\end{align}
 
Hi Fredrik

Thanks so much for the explanation !

So, just to be clear if I put
begin{align}
end{align}
around the text from Lyx, it should solve the problem ?

Thanks again
LR
 
Last edited:
No. That only ensures that the symbols & and \\ will be understood. To avoid the 50-character feature, you have to type extra spaces where they do no harm (at least one space every 50 characters).

It seems weird to me that Lyx gives you code that contains & and \\, but not the code to begin and end an align environment (or some other environment that understands those codes). That shouldn't work anywhere.
 

Similar threads

Replies
1
Views
3K
Replies
4
Views
4K
Replies
4
Views
4K
Replies
6
Views
5K
Replies
8
Views
3K
Replies
8
Views
3K
Replies
3
Views
2K
Back
Top