Since it has been complained much about LaTeX code pop-up embedded in the render equation images, I decide to remove it now. The users will do not be interfered by such pop-up. However, you will be unable to copy the raw LaTeX code from the equations. Please feel free to express your opinions if you still need the code pop-up.
Archive for April, 2009
No code Pop-up right now
Friday, April 17th, 2009How to install jsTeXrender for phpBB 3.0.x forums
Sunday, April 5th, 2009- Code: Select all
[tex]f(x)=\int_{-\infty}^xe^{-t^2}dt[/tex]
and the output should be
f(x)=\int_{-\infty}^xe^{-t^2}dt
How to embed the render to phpBB 3.0.x forums
- From Administrator Control Panel, go to Styles->Style components->Templates->prosilver->Edit
- Select template file overall->overall_footer.html to edit
- Please get jsTeXrender JavaScript from http://yourequations.com
- Add the render JavaScript before </body> tag (see below figure)Please see the below figure for the demonstration

How to enable BBCode
- From Administrator Control Panel, go to Posting->BBCodes->Add a new BBCode
- Add to the BBCode usage with this code
- Code: Select all
[tex]{TEXT}[/tex]
and add to the HTML replacement with this code
- Code: Select all
<pre lang="eq.latex">{TEXT}</pre>
Please see the below figure for the demonstration

Optional
- You can use any custom BBCode instead of
- Code: Select all
[tex]...[/tex]
e.g.,
- Code: Select all
[eq]...[/eq]
or
- Code: Select all
[math]...[/math]
- You can use CODE instead of PRE tag as state the difference in docs.
- You can select Settings->Display on posting page to add BBCode Command Button to editor.
- You can edit Help line. This field contains the mouse over text of the BBCode.
If you are using phpBB 2.0.x forums, please see this instruction.
Please read more Tutorials
–
How to install jsTeXrender for phpBB 2.0.x forums
Sunday, April 5th, 2009- Code: Select all
[tex]f(x)=\int_{-\infty}^xe^{-t^2}dt[/tex]
and the output should be
f(x)=\int_{-\infty}^xe^{-t^2}dt
Note: For phpBB 2.0.x forums, you have to edit bbcode.php and overall_footer.tpl files manually. (See instruction for phpBB 3.0.x)
How to embed the render to phpBB 2.0.x forums
- Code: Select all
#--------[open]-----------------------------------------------------
/templates/subSilver/overall_footer.tpl
#--------[find]-----------------------------------------------------
</body>
#--------[before, add]----------------------------------------------
<script type="text/javascript" src="http://tex.yourequations.com/"></script>
How to enable BBCode
- Code: Select all
#--------[open]-----------------------------------------------------
/includes/bbcode.php
#--------[find]-----------------------------------------------------
// Remove our padding from the string..
#--------[before, add]----------------------------------------------
//[tex]latex_equation_here[/tex]
$text = preg_replace('/\[tex\](.*?)\[\/tex\]/ie',
"'<pre lang=\"eq.latex\">$1</pre>'",
$text);
Optional
- You can use any custom BBCode instead of
- Code: Select all
[tex]...[/tex]
e.g.,
- Code: Select all
[eq]...[/eq]
or
- Code: Select all
[math]...[/math]
- You can use CODE instead of PRE tag as state the difference in docs.
Please read more Tutorials
–
How to install jsTeXrender for WordPress blogs
Saturday, April 4th, 2009
For the example,
- Code: Select all
<pre lang="eq.latex">
\int_{0}^{1}\frac{x^{4}\left(1-x\right)^{4}}{1+x^{2}}dx
=\frac{22}{7}-\pi
</pre>
that will give the result
\int_{0}^{1}\frac{x^{4}\left(1-x\right)^{4}}{1+x^{2}}dx
=\frac{22}{7}-\pi
DOWNLOAD: Please visit wp-jstexrender plugin page to download, the installations are posted there.
Please read more Tutorials
–
How to install jsTeXrender for Blogger blogs
Saturday, April 4th, 2009
For the example,
- Code: Select all
<pre lang="eq.latex">
\int_{0}^{1}\frac{x^{4}\left(1-x\right)^{4}}{1+x^{2}}dx
=\frac{22}{7}-\pi
</pre>
that will give the result
\int_{0}^{1}\frac{x^{4}\left(1-x\right)^{4}}{1+x^{2}}dx
=\frac{22}{7}-\pi
How to insert JavaScript LaTeX equation render engine in Blogger
- From Dashboard, click the Layout of your blog
- Click Add a Page Element->HTML/JavaScript widget and Add to Blog
- Please get the jsTeXrender JavaScript from http://yourequations.com.
- Paste the JavaScript to the widget (see the below figure for the demonstration)

- Save changes and drag the HTML/JavaScript widget to the footer section or after the content (see the below figure for the demonstration)

Please read more Tutorials
–