Skip to content

Commit

Permalink
Merge pull request #178 from metanorma/tahoma
Browse files Browse the repository at this point in the history
Tahoma
  • Loading branch information
Intelligent2013 authored Feb 21, 2023
2 parents fa92357 + 2d71ee9 commit cd9e7f4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SHELL ?= /bin/bash
endif

#JAR_VERSION := $(shell mvn -q -Dexec.executable="echo" -Dexec.args='$${project.version}' --non-recursive exec:exec -DforceStdout)
JAR_VERSION := 1.60
JAR_VERSION := 1.61
JAR_FILE := mn2pdf-$(JAR_VERSION).jar

all: target/$(JAR_FILE)
Expand Down
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ Tag the same version in Git:

[source,xml]
----
git tag v1.60
git push origin v1.60
git tag v1.61
git push origin v1.61
----

Then the corresponding GitHub release will be automatically created at:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.metanorma.fop</groupId>
<artifactId>mn2pdf</artifactId>
<version>1.60</version>
<version>1.61</version>
<name>Metanorma XML to PDF converter</name>
<packaging>jar</packaging>
<url>https://www.metanorma.org</url>
Expand Down
14 changes: 14 additions & 0 deletions src/main/resources/pdf_fonts_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,20 @@ Relative config URLs are resolved relative to location of this file.
<font-triplet name="Montserrat ExtraBold" style="normal" weight="normal"/>
</font>

<!-- Tahoma -->
<font kerning="yes" embed-url="tahoma.ttf">
<font-triplet name="Tahoma" style="normal" weight="normal"/>
</font>
<font kerning="yes" embed-url="tahoma.ttf" simulate-style="true">
<font-triplet name="Tahoma" style="italic" weight="normal"/>
</font>
<font kerning="yes" embed-url="tahomabd.ttf">
<font-triplet name="Tahoma" style="normal" weight="bold"/>
</font>
<font kerning="yes" embed-url="tahomabd.ttf" simulate-style="true">
<font-triplet name="Tahoma" style="italic" weight="bold"/>
</font>

</fonts>

<!-- This option lets you specify additional options on an XML handler -->
Expand Down

0 comments on commit cd9e7f4

Please sign in to comment.