LaTeX is a macro package implemented on Don Knuth's TeX programming language and is used primarily for creating high quality written documents. Note that http://tex.stackexchange.com is specifically dedicated to LaTeX questions (and TeX, and other related technologies).

learn more… | top users | synonyms

3
votes
2answers
2k views

Drawing formulas with Quartz 2d

In my iPhone App I'd like to draw a few formulas. How can I manage that with quartz 2d? Is there a way to build formulas like for example in latex? Or are there any existing frameworks? Thanks.
35
votes
7answers
19k views

Getting LaTeX into R Plots

I would like to add LaTeX typesetting to elements of plots in R (e.g., the title, axis labels, annotations, etc.) using either the combination of base/lattice or with ggplot2. Is there a way to get ...
188
votes
6answers
104k views

LaTeX source code listing like in professional books

How should a latex source code listing look like to produce an output like in known books, for example one for the Spring Framework? I've tried with the latex listings package but wasn't able to ...
73
votes
8answers
14k views

Tools for making latex tables in R [closed]

On general request, a community wiki on producing latex tables in R. In this post I'll give an overview of the most commonly used packages and blogs with code for producing latex tables from less ...
89
votes
6answers
50k views

LaTeX package to do syntax highlighting of code in various languages

I am looking for a LaTeX package that does syntax highlighting on code. For example, right now I use the verbatim block to write code: \begin{verbatim} <html> <head> ...
42
votes
15answers
9k views

Recommended build system for latex? [closed]

I'm trying to figure out the best build system for latex. Currently, I use latex-makefile, editing in vim, and viewing changes in Okular or gv. The major problem is that it sometimes gets hides ...
136
votes
40answers
25k views

Best practices in LaTeX [closed]

What are some good practices when typesetting LaTeX documents? I use LaTeX mostly to typeset papers. Here is a short list of what I consider LaTeX good practices, most of them would be common sense ...
99
votes
4answers
23k views

Source code highlighting in LaTeX

I need to highlight source code in LaTeX. The package listings seems to be the best choice for most use-cases and for me it was, until now. However, now I need more flexibility. Generally, what I’m ...
27
votes
15answers
8k views

Math equations on the web

How can I render Math equations on the web? I am already familiar with LaTeX's Math mode.
14
votes
14answers
4k views

How best to write documentation targeting both HTML and PDF?

Latex-to-html converters I've seen in the past have been pretty awful. Editing raw html is no fun and doesn't seem to translate well to the printed page. How do others solve this problem? Links to ...
5
votes
3answers
1k views

Rendering mathematical formulas on an iDevice

Is there any support for rendering/displaying mathematical formulas under iOS? I'm assuming there's nothing built-in to the OS itself, so a solution that is free-as-in-beer and won't cause my app to ...
3
votes
1answer
444 views

How to convert HTML with mathjax into latex using pandoc?

I have some HTML documents with MathJax equations, and I want to convert them to latex, and then to pdf. I'd like to use pandoc. However, pandoc replaces $ with \$ and it replaces \ in formulas with ...
2
votes
5answers
1k views

render math equations for websites latex

I'm looking for a standalone math equation renderer that generates a gif or png file. It should be able to take equation input from a URL. It has to work on a webserver, preferably on IIS and .NET ...
184
votes
38answers
31k views

Is LaTeX worth learning today? [closed]

I know that LaTeX is big in the world of academia, and was probably a big name in desktop publishing before the glory days of WordPerfect and Microsoft Office but as a Windows user that is interested ...
120
votes
15answers
45k views

Good PDF report generator tool for Python

What is a good tool for PDF report generation in Python? I've checked out ReportLab, but it seems to be awfully low-level for what I want to do. My current hunch is to call TeX on the command-line and ...
34
votes
20answers
6k views

Is LaTeX used outside mathematics and academia?

This seems like an interesting forum to ask if anyone's come across semi-serious LaTeX usage outside of its traditional fields like mathematics, computer science, and other academic disciplines. ...
22
votes
4answers
6k views

Don't make me manually abort a LaTeX compile when there's an error

As suggested here, latexmk is a handy way to continually compile your document whenever the source changes. But often when you're working on a document you'll end up with errors and then latex will ...
87
votes
5answers
86k views

How do you change the document font in LaTeX? [closed]

Absolute beginner LaTeX question here: How do you change the font for the whole document to sans-serif (or anything else)?
14
votes
8answers
9k views

What is the best way to embed LaTeX in a webpage?

I'm not asking about converting a LaTeX document to html. What I'd like to be able to do is have some way to use LaTeX math commands in an html document, and have it appear correctly in a browser. ...
8
votes
6answers
2k views

Looking for a self-contained equation rendering library

Is there such a thing as a small, self-contained library that will render an equation written in a text-based format (e.g. LaTeX or MathML) to an image (either vector or raster)? It would be ...
5
votes
3answers
5k views

Typesetting LaTeX fraction terms to be larger in an equation

I have the following formula in LaTeX, based on Fisher's Exact Test. (NOTE: requires the use of the amsmath package for \binom.) \begin{equation} P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, ...
7
votes
4answers
3k views

How to use non-ASCII characters in Matlab figures (for use in LaTeX doc)?

I am using including Matlab-drawn figures into LaTeX. My usual workflow is as following: Script in matlab creates figure(s), I tweak what I find needs to be tweaked in visual figure editor, Figure ...
5
votes
1answer
5k views

Problem with float and pictures in LaTex

The picture is at the position of the header: http://dl.getdropbox.com/u/175564/%20latex1.png Code: \begin{figure} \subfloat[A ...
6
votes
9answers
12k views

PDF to LaTex Linux

I know how make a pdf from LaTex. Is there a way to extract the LaTex from a PDF I created earlier? How about if someone sends me a PDF and I like the formatting. Can I extract the LaTex from it? ...
4
votes
2answers
619 views

Latex, Emacs: automatically open *TeX Help* buffer on error and close it after correction of the error?

I use the function TeX-parse-error defined by Ivan Andrus at the bottom of Emacs latexmk function throws me into an empty buffer in order to automatically open the *TeX Help* buffer when there was an ...
2
votes
1answer
586 views

Math rendering library for iPhone OS

Is there a library to render mathematical equations that can be used in iPhone OS? I would be very happy with a library that renders MathML or LaTeX to a format that iPhone OS can display. If the ...
1
vote
3answers
1k views

How do I emit the text content of a reference in LaTeX?

I have a section: \section{Introduction} \label{sec:introduction} I'd like a link to the section where the link text is the name of the section. I can use hyperref: The ...
69
votes
26answers
16k views

Is a successor for TeX/LaTeX in sight?

TeX/LaTeX is great, I use it in many ways. Some of its advantages are: it uses text files, this way the input-files can be diffed and many tools exist to work with text it is very flexible it has a ...
47
votes
11answers
39k views

How do I determine file encoding in OSX?

I'm trying to enter some UTF-8 characters into a LaTeX file in TextMate (which says its default encoding is UTF-8), but LaTeX doesn't seem to understand them. Running cat my_file.tex shows the ...
18
votes
6answers
2k views

Recommendations for developing Sweave documents

I'm looking to streamline my Sweave document creation, and I'd like to hear about people's current setups. I feel like the holy grail goes something like this: Editing Rnw code on one half of the ...
15
votes
9answers
6k views

LaTeX equivalent to Google Chart API

I'm currently looking at different solutions getting 2 dimensional mathematical formulas into webpages. I think that the wikipedia solution (generating png images from LaTeX sourcecode) is good enough ...
30
votes
11answers
18k views

How do I convert LaTeX to plain-text (ASCII)?

Scenario: I have a document I created using LaTeX (my resume in this case), it's compiling in pdflatex correctly and outputting exactly what I'd like. Now I need the same document to be converted to ...
40
votes
3answers
19k views

To have no pagebreak after \include in LaTeX

My LaTeX makes me pagebreaks after each subsection because my subsections are in separate files. I use the command \include{file} which adds a pagebreak after the use of it. I would like to have no ...
26
votes
4answers
6k views

Is there a javascript LaTeX equation renderer?

I am looking for a purely client side javascript library that renders latex equations as HTML/CSS. I hate that all I see are utilities that request an image from a server. Example usage: ...
11
votes
8answers
2k views

How do I get Emacs to fill sentences, but not paragraphs?

I've seen at least two recommendations on StackOverflow to insert newlines between sentences when editing LaTeX documents. The reason being that the practice facilitates source control, diffing, and ...
9
votes
4answers
9k views

Using LaTeX, how can I have a list of references at the end of each section? [closed]

I want to generate the bibliography for each section, and have it at the end of the section. When I do this at the moment it generates the full bibliography and places it after each section. Is there ...
7
votes
2answers
842 views

Trouble using Vim's syn-include and syn-region to embed syntax highlighting

I am trying to get Vim to syntax highlight any file that ends with extension .Rtex in the following way: All top level text is highlighted as TeX Exception: any text enclosed in ...
17
votes
3answers
3k views

How to call latexmk in emacs, and jump to next-error

I would like to use latexmk to compile my LaTeX documents in Emacs. Especially I need the Emacs functionality next-error, which is typically called with C-x `, and jumps to the next LaTeX error in the ...
16
votes
2answers
24k views

Adding a caption to an equation in LaTeX

Well, it seems simple enough, but I can't find a way to add a caption to an equation. The caption is needed to explain the variables used in the equation, so some kind of table-like structure to keep ...
15
votes
5answers
15k views

Is there any LaTeX package for drawing Gantt diagrams?

Are there LaTeX packages for (more or less) easily drawing Gantt diagrams? Thanks.
12
votes
4answers
4k views

LaTeX for PDF generation in production

I used LaTeX for writing couple of white papers while I was in grad school. From that I have a really good impression about it in terms of what LaTeX allows user to do, especially the fine control it ...
12
votes
5answers
3k views

Disabling underscore-to-subscript in Emacs Org-Mode export

When I export to PDF via org-mode (C-c C-e d), any words with underscores end up being partially converted to subscript. How can I prevent this from happening? I found this article on the subject: ...
35
votes
2answers
11k views

Hiding the presentation controls in LaTeX beamer presentation

I am currently building a presentation using LaTeX beamer. Is there a way to hide the presentation controls on the bottom of the slides? I don't use those controls, and they sometimes collide with the ...
15
votes
2answers
26k views

How to Remove Footers of LaTeX Beamer Templates?

I am using the "beamerthemesplit" template of the Beamer LaTeX package. This templates includes the author's name and the title of the presentation in the footer of all pages. Is anyone aware of any ...
21
votes
1answer
1k views

Numbered equations/formulas

How do you number equations in Mathematica notebooks so that they are exported correctly into latex? In case you don't know how to put numbered equations here is quick review. 1) Open a new notebook ...
12
votes
5answers
26k views

How do I break a long equation over lines?

I am trying to add an equation in a new line. The problem is that the equation is too long for the line, and I need to break it manually. Otherwise, it just overlaps to the right column, or to the ...
7
votes
3answers
2k views

How can I make Org-mode export to LaTeX with a specific preamble?

When I do C-c C-e l to export an Org file to LaTeX it produces a document with a particular preamble. Instead of this particular preamble I would like it to use a preamble of my choice. Say that I ...
7
votes
1answer
2k views

sphinx customization of latexpdf output?

Just curious if anyone knows how to customize the sphinx output when using the latexpdf target? I've seen lots of custom stuff for html output, but cant seem to find any example of custom pdf output. ...
8
votes
3answers
2k views

Tips for collaboratively editing a LaTeX document

My default setup is to put the tex source in a subversion repository and insert notes to each other as comments in the source when making changes to other people's content. It all feels pretty ...
3
votes
2answers
286 views

Sweave, include sourced R-Function files

I have an Rjob writen in file a.R which calls functions writen in file b.R, and a snw file c.snw. I call c.snw via "R CMD c.snw". I am looking for a possibilty to only include a.R via ...

1 2 3 4 5 7