Java is a general-purpose, concurrent, class-based, object-oriented programming language.

learn more… | top users | synonyms

0
votes
0answers
47 views

Is it possible to use MathML to describe data tables? [closed]

I want to display data tables using MathML. I googled it but all the results describe mtable with examples showing describing matrices. So, I'm puzzled whether it is possible. I need to display data ...
1
vote
1answer
102 views

Is there a LaTex java .jar?

I'm very interested in using the Java LaTeX Report library, but one of the requirements is an installed or portable LaTeX distribution. My software would be running on various servers and it would not ...
1
vote
1answer
284 views

Include java code to display text in latex

is it possible to do something like the following in texlipse? \documentclass{article} \usepackage{listings} \begin{document} \section{Title} import java \subsection{Subtitle} I want to display ...
3
votes
2answers
171 views

Is there any solution to include Java Applets in presentations/beamers?

I am preparing a presentation on the compiler Texmaker "documentclass" in "beamer". I was fascinated with the package "multimedia" which is a solution to include movies in the presentation. Question: ...
5
votes
1answer
170 views

Problem formatting java code in my latex document (overshooting the page)

My code is being formatted in a way that makes it drift off the page when it's too long rather than just jump to a new line. I have tried lots of different things, pasted all kinds of examples from ...
2
votes
1answer
200 views

Java Code in a paper

I am writing a paper and would like to include some of my "real-world" Java code. What is the best way to accomplish this? I would like to see two templates: My explanation to the right of my Java ...
1
vote
1answer
116 views

How can I highlight Java bytecode?

I usually use minted to display highlighted source code. But it seems as if minted would not support Java bytecode (see list of supported languages). How can I insert highlighted java bytecode? (Is ...
3
votes
0answers
159 views

pdflatex + java applet? [closed]

I am writing lecture notes in Euclidean/Noneuclidean geometry, see here. The lecture 10 is about geometric constructions, where I use some java applets for construction. So far I made a hyperlink ...
4
votes
1answer
159 views

utf8 math characters from source code file with minted in XeLaTeX

I want XeLaTeX/minted to display all my mathematical characters from my .java source file. More detailed: I file my programming homework in PDF documents in my university. I have been using LaTeX and ...
1
vote
1answer
92 views

Listings package and BigInteger Library Conflict?

In my java code, I have extensively used the variables and methods from the BigInteger library. In LaTeX, in order to display my code neatly, I have used listings package. So between the ...
5
votes
1answer
275 views

How to render Android listings with syntax highlighting?

I need to include the source code of a bigger Android project in the documentation written with LaTeX. Do you recommend any particular package that is capable of highlighting Java code and which also ...
1
vote
1answer
280 views

Pointing to Java files not in root latex folder using listings

I am trying to use listings to point to a Java source code file. The file path is different from the Latex document. Below is an example of what I am trying to do, though it doesn't compile it says it ...
1
vote
1answer
389 views

What commands/environments are supported by jLatexMath?

Is there documentation on which commands are available? For example right now I cant even \\ to get linebreaks, however \textcolor{red}{\mathfrak{A}rea}A=\pi r^2 works perfectly...
3
votes
4answers
3k views

TeX rendering in a Java application

I want to render math formulas in my Java GUI application. I am looking for a library made for computer use, not web use, which can render TeX. I have already tried jLatexMath, but it's very slow when ...