summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/fonts/newtx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-03-14 23:00:57 +0000
committerKarl Berry <karl@freefriends.org>2015-03-14 23:00:57 +0000
commit012c5d6c6578dac0ebcda410db474bc9a2c0cf4d (patch)
tree5315e400032a6d8c6beccd95f62d494c3f97eb62 /Master/texmf-dist/doc/fonts/newtx
parentc493011f1ad4ff5cd2973ed6a6a3d4c9fec6470f (diff)
newtx (14mar15)
git-svn-id: svn://tug.org/texlive/trunk@36513 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts/newtx')
-rw-r--r--Master/texmf-dist/doc/fonts/newtx/README6
-rw-r--r--Master/texmf-dist/doc/fonts/newtx/newtxdoc.pdfbin383962 -> 384033 bytes
-rw-r--r--Master/texmf-dist/doc/fonts/newtx/newtxdoc.tex12
3 files changed, 12 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/fonts/newtx/README b/Master/texmf-dist/doc/fonts/newtx/README
index f118d604a46..2a618bbfbb1 100644
--- a/Master/texmf-dist/doc/fonts/newtx/README
+++ b/Master/texmf-dist/doc/fonts/newtx/README
@@ -1,10 +1,14 @@
This package, initially based on txfonts, provides many fixes and enhancements to the txfonts package, splitting it into two separate packages---newtxtext and newtxmath, which may be run independently of one another. It provides scaling, improved metrics, and other options. In particular, newtxmath offers a libertine option which substitutes Linux Libertine (provided with TeXLive and MikTeX) italic and Greek letters for the default Times letters, providing a good match for the Libertine text font, which is heavier than Computer Modern but lighter than Times, and in my experience, looks very sharp and clear on the screen.
-Current version: 1.412, 03/03/2015
+Current version: 1.42, 03/13/2015
This material is subject to the LaTeX Project Public License. See http://www.ctan.org/license/lppl1.3
for the details of that license.
+Changes in version 1.42
+1. Modified newtxtext.sty to detect whether babel loaded and change behavior of osf accordingly.
+2. Corresponding change to documentation.
+
Changes in version 1.412
Corrected some errors in *ntxsups.fd affecting bfseries.
diff --git a/Master/texmf-dist/doc/fonts/newtx/newtxdoc.pdf b/Master/texmf-dist/doc/fonts/newtx/newtxdoc.pdf
index db004ab560d..d86b5ee368a 100644
--- a/Master/texmf-dist/doc/fonts/newtx/newtxdoc.pdf
+++ b/Master/texmf-dist/doc/fonts/newtx/newtxdoc.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/fonts/newtx/newtxdoc.tex b/Master/texmf-dist/doc/fonts/newtx/newtxdoc.tex
index c16d2ff836e..a4083b32052 100644
--- a/Master/texmf-dist/doc/fonts/newtx/newtxdoc.tex
+++ b/Master/texmf-dist/doc/fonts/newtx/newtxdoc.tex
@@ -78,16 +78,18 @@ load roman and typewriter text fonts at 95\% of normal size, and the sans serif
The option \texttt{osf} instructs the text fonts to use old-style figures \oldstylenums{1234567890} rather than the default lining figures $1234567890$. As of version $1.23$, {\tt newtxtext} loads initially with lining figures so the math package uses lining figures in math mode. The option {\tt osf} switches to old-style figures in text at the very end of the preamble, forcing the use of oldstyle figures in text, but not math. In previous versions, it was necessary to run
\verb|\useosf| after loading math. This is no longer required, but does no harm.
-There is one special case where \verb|\useosf| is necessary: in you use the {\tt babel} package, you may receive puzzling error messages if you used a preamble containing
+There is one special case where \verb|\useosf| is necessary: in you use the {\tt babel} package, you should load it before {\tt newtxtext}---for example:
+%may receive puzzling error messages if you used a preamble containing
\begin{verbatim}
-\usepackage[osf]{newtxtext}
\usepackage[<babel options>]{babel}
-\usepackage{newtxmath}
+\usepackage[osf]{newtxtext}
+% works as expected if no math package loaded
\end{verbatim}
-There error, when it occurs, seems to be caused by an incompatibility between some {\tt babel} code and the {\tt etoolbox} command \verb|\AtEndPreamble|. In this case, use instead the more cumbersome form
+If you want to use {\tt babel} and a math package, you have to be aware of an incompatibility between some {\tt babel} code and the {\tt etoolbox} command \verb|\AtEndPreamble|. In this case, use instead the more cumbersome form:
\begin{verbatim}
-\usepackage{newtxtext}
\usepackage[<babel options>]{babel}
+\usepackage{newtxtext}
+<other babel font loading commands>
\usepackage{newtxmath}
\useosf % must be after loading math package
\end{verbatim}