-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 39 LaTeX math support #54
base: master
Are you sure you want to change the base?
Conversation
Organize resources
Remove unnecessary entries added during LaTeX mode development
:junit ["test/java"] | ||
:junit-formatter :plain | ||
:junit-results-dir "target/test-results" | ||
:profiles {:dev {:dependencies [[junit/junit "4.12"] [com.github.dakusui/thincrest "3.6.0"]] | ||
:java-source-paths ["test/java"]}}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was intended to run JUnit based tests with lein test
.
@@ -227,7 +227,7 @@ | |||
@Test public void testFindBoundariesExpandingFromUOutside() throws FileNotFoundException, IOException { | |||
TextGrid grid; | |||
grid = new TextGrid(); | |||
grid.loadFrom("tests/text/simple_U01.txt"); | |||
grid.loadFrom("test-resources/text/simple_U01.txt"); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After introducing lein-junit
, which executes JUnit based tests under test/java
directory, I realized existing tests are not passing since we do not have resources under tests
directory but in test-resources
directory.
These changes will make those tests work again.
@stathissideris , I believe this pull request is ready to merge. |
Hi, I would very much welcome a merge of this PR! |
Seems like we need to resolve the conflict. |
… issue-39-LaTeXmathSupport
I resolved the conflict by moving the modification made by Toni Dietze [email protected] in |
I could figure out a way to remove unnecessary changes introduced by my IDE. |
This is a pull request that offers an implementation of Issue-#39 (LaTeX math mode support)
README
Usage and syntax
Command line
(snip)
(snip)
Syntax
(snip)
LaTeX mode.
If you place LaTeX formulae inside 2
$
s, it will be rendered usingjlatexmath
. That is, if you have a following input files.This will be rendered as follows.
Limitations
This feature is only available when you are generating
.png
files.Discussions
.svg
support is discussed separately in Issue-44.Tasks
*
is rendered as a bullet point (or a connector?) even if it is placed inside$
and$
.pom.xml
pom.xml
toproject.clj
leiningen
.