Reputation: 43189
This might be painfully obvious but how do I write Latex script inline in IPython notebook file so when it is parsed it does not start a new line?
Upvotes: 9
Views: 5885
The answer can be found in this helpful cookbook
Inline uses $...$
$...$
Displayed used $$...$$
$$...$$
Upvotes: 14