Pasting LATEX Content from LyX Editor to Forum Posts

  • Context: LaTeX 
  • Thread starter Thread starter vijay_singh
  • Start date Start date
  • Tags Tags
    Forum Latex
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
8 replies · 3K views
vijay_singh
Messages
28
Reaction score
0
Hi

I am first time user of LATEX. I have LyX editor where I am able to create LATEX documents. But I couldn't find any clear solution for pasting that LATEX content into my posts in the forum. Is there any simple way to copy LATEX document from the editor to forum posts?
 
on Phys.org
[noparse]

cristo said:
You can put latex code in between [ tex ] and [ /tex] tags (without the spaces inside the square brackets)

Hi cristo! :smile:

You can type [noparse][tex]and[/tex] (without any spaces!) by surrounding them with [noparse] and [/noparse][/noparse]. :smile:
 
here's a perl script that turns valid LaTeX files* into forum LaTeX.

This script comes with no warranties, etc. If you hose your machine that's your fault.

usage: save file to script.pl, chmod it to executable, then do ./script.pl file

#!/usr/bin/perl -i
$_=@ARGV[0];
while(<>){
s/\$\$([^\$]*)\$\$/\[tex\]$1\[\/tex\]/g;
s/\$([^\$]*)\$/\[itex\]$1\[\/itex\]/g;
print;
}* this assumes that you use $ $ to denote inline LaTeX and $$ $$ for display math. Although the usage of $$ $$ should be discouraged (in favour of \[ \]) I chose to do it this way for no good reason. Change the regexps if you want.
 
Just testing

[tex]$ V_{bw} $ = $ V_{b} $ - $ V_{w} $[/tex]

*********************************************

Thanks guys. But Seems like LyX doesn't generate correct source. I had to put spaces and some dollars my self. What do you people use to generate latex source.
 
vijay_singh said:
Just testing

[tex]$ V_{bw} $ = $ V_{b} $ - $ V_{w} $[/tex]

*********************************************

Thanks guys. But Seems like LyX doesn't generate correct source. I had to put spaces and some dollars my self. What do you people use to generate latex source.

Hi vijay! :smile:

I've copied what you typed, and left out the spaces and dollars, and it works fine:

[tex]V_{bw}=V_{b}-V_{w}[/tex]

Click "QUOTE" to see what I typed.

(and generally click "QUOTE" to see other people's LaTeX typing, and just steal it! :smile:)
 
vijay_singh said:
What do you people use to generate latex source.

I only use Latex in here, and either type it in by hand or use the menu available when you click the "Go Advanced" button under the Quick Reply window.

Click the capital Sigma icon in advanced mode to get the Latex menu. Unfortunately, this feature is not enabled in every sub-forum (like this one). Not sure why that is.
 
vijay_singh said:
Just testing

[tex]$ V_{bw} $ = $ V_{b} $ - $ V_{w} $[/tex]

*********************************************

Thanks guys. But Seems like LyX doesn't generate correct source. I had to put spaces and some dollars my self. What do you people use to generate latex source.

You don't put the dollar signs in. They're the things that would tell the LaTeX program to interpret the contained text as mathematics if you were compiling the source on your machine at home. That isn't what happens in the forum. In this forum's implementation the $ and $$ are are replaced by the tex and itex tags.