I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
Index » Products » LaTeX Equation Editor »

Error when display latex

redvelvet\′s Photo
9 Apr 17, 10:27AM
(1 reply)
Error when display latex
I have an question that have been saved in database table named Question. I save a question using latex editor. But when i try to view question using codecogs, then the question not displayed correctly.

<script type="text/javascript" src="http://latex.codecogs.com/latexit.js"></script>
<label class="width30Percent">Question</label>>
<div lang="latex"> <?php echo <div class="orangebox">[$]</div>data['Question']['question_text'] ?> </div>

it will be displayed:
29638/capture_1.jpg
+

Please help
CodeCogs\′s Photo
30 Apr 17, 6:26AM
Hi,

I wouldn't use latexit for this type of job. Better to submit the equation directly to latex.codecogs.com. So try:

<label class="width30Percent">Question</label>>
<div>
  <p><?php echo $data['Question']['question_text'] ?></p>
  <img src="latex.codecogs.com/gif.latex?<?php echo $data['Question']['formula'] ?>
</div>

I'm assuming in your database you have some 'question text' and also the latex for a 'formula'.
Currently you need to be logged in to leave a message.