How to disable automatically insert linebreak in need?

Assuming, you’re using a latex shortcode, the following should do what you’ve asked for: function leave_latex_alone($content) { $new_content=””; $pattern_full=”{(\[latex\].*?\[/latex\])}is”; $pattern_contents=”{\[latex\](.*?)\[/latex\]}is”; $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE); foreach ($pieces as $piece) if (preg_match($pattern_contents, $piece, $matches)) $new_content .= $matches[1]; else $new_content .= wptexturize(wpautop($piece)); return $new_content; } remove_filter(‘the_content’, ‘wpautop’); remove_filter(‘the_content’, ‘wptexturize’); add_filter(‘the_content’, ‘leave_latex_alone’, 99); This is an adapted … Read more

LaTeX for WordPress strips codes in loop

I don’t know much about that plugin but it applies filters to both the_content and the_excerpt, which seems reasonable to me. I have to assume that your theme is bypassing those filters somehow in the index listing. I can only guess at what it is doing, but you could add a filter to get_the_content and … Read more

Keeping LaTeX contents in line with non-latex text

I haven’t used that plugin, so I can’t speak to whether there are any configurations that would help. However, I think your issue could be solved with a simple css rule: img.latex { vertical-align: middle; } would center all your LaTeX-generated images on the line they fall on.

tech