From 0542243ac8be1fa821f15b496dcfa945b9c2acb3 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 1 Nov 2010 00:01:31 +0000 Subject: ijmart 1.6 (31oct10) git-svn-id: svn://tug.org/texlive/trunk@20276 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/bibtex/bst/ijmart/ijmart.bst | 10 ++-- Master/texmf-dist/doc/latex/ijmart/Makefile | 62 +++++++++++++++++++++++ Master/texmf-dist/doc/latex/ijmart/README | 3 ++ Master/texmf-dist/doc/latex/ijmart/ijmart.pdf | Bin 283624 -> 285153 bytes Master/texmf-dist/doc/latex/ijmart/ijmsample.bib | 6 ++- Master/texmf-dist/doc/latex/ijmart/ijmsample.pdf | Bin 379710 -> 379710 bytes Master/texmf-dist/source/latex/ijmart/Makefile | 62 ----------------------- Master/texmf-dist/source/latex/ijmart/ijmart.dtx | 40 +++++++++++++-- Master/texmf-dist/tex/latex/ijmart/ijmart.cls | 2 +- 9 files changed, 112 insertions(+), 73 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/ijmart/Makefile delete mode 100644 Master/texmf-dist/source/latex/ijmart/Makefile diff --git a/Master/texmf-dist/bibtex/bst/ijmart/ijmart.bst b/Master/texmf-dist/bibtex/bst/ijmart/ijmart.bst index 7c1209fa04e..d307da33614 100644 --- a/Master/texmf-dist/bibtex/bst/ijmart/ijmart.bst +++ b/Master/texmf-dist/bibtex/bst/ijmart/ijmart.bst @@ -71,6 +71,7 @@ ENTRY howpublished institution journal + fjournal key language month @@ -385,9 +386,12 @@ FUNCTION {format.title} } FUNCTION {format.journal.vol.year} -{ journal empty$ - { "journal name" missing.warning ""} - { journal } +{ fjournal empty$ + { journal empty$ + { "journal name" missing.warning ""} + { journal } + if$ } + { fjournal } if$ volume empty$ 'skip$ diff --git a/Master/texmf-dist/doc/latex/ijmart/Makefile b/Master/texmf-dist/doc/latex/ijmart/Makefile new file mode 100644 index 00000000000..322c5b46111 --- /dev/null +++ b/Master/texmf-dist/doc/latex/ijmart/Makefile @@ -0,0 +1,62 @@ +# +# Makefile for ijmart package +# +# This file is in public domain +# +# $Id: Makefile,v 1.4 2007-08-21 02:04:10 boris Exp $ +# + +PACKAGE=ijmart + +SAMPLES = \ + ijmsample.tex + +PDF = $(PACKAGE).pdf ${SAMPLES:%.tex=%.pdf} + +all: ${PDF} + + +%.pdf: %.dtx $(PACKAGE).cls + pdflatex $< + - bibtex $* + pdflatex $< + - makeindex -s gind.ist -o $*.ind $*.idx + - makeindex -s gglo.ist -o $*.gls $*.glo + pdflatex $< + while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ + do pdflatex $<; done + + +%.cls: %.ins %.dtx + pdflatex $< + +%.pdf: %.tex $(PACKAGE).cls + pdflatex $< + - bibtex $* + pdflatex $< + while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ + do pdflatex $<; done + + + +.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls + + +clean: + $(RM) $(PACKAGE).cls *.log *.aux \ + *.cfg *.glo *.idx *.toc \ + *.ilg *.ind *.out *.lof \ + *.lot *.bbl *.blg *.gls \ + *.dvi *.ps *.thm *.tgz *.zip + +distclean: clean + $(RM) $(PDF) + +# +# Archive for the distribution. Includes typeset documentation +# +archive: all clean + tar -czvf $(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude '*.zip' --exclude CVS . + +zip: all clean + zip -r $(PACKAGE).zip * -x '*~' -x '*.tgz' -x '*.zip' -x CVS -x 'CVS/*' \ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/ijmart/README b/Master/texmf-dist/doc/latex/ijmart/README index 833d0c50a51..675b20fa912 100644 --- a/Master/texmf-dist/doc/latex/ijmart/README +++ b/Master/texmf-dist/doc/latex/ijmart/README @@ -26,3 +26,6 @@ Version 1.4: Fixed the bug inherited from amsart: now appendices do not cause large indentations in table of contents Version 1.5: Added compatibility with babel + +Version 1.6: Bibliography style now understands fjournal field. + Documentation update diff --git a/Master/texmf-dist/doc/latex/ijmart/ijmart.pdf b/Master/texmf-dist/doc/latex/ijmart/ijmart.pdf index cf05e672dd1..5b3c21e4699 100644 Binary files a/Master/texmf-dist/doc/latex/ijmart/ijmart.pdf and b/Master/texmf-dist/doc/latex/ijmart/ijmart.pdf differ diff --git a/Master/texmf-dist/doc/latex/ijmart/ijmsample.bib b/Master/texmf-dist/doc/latex/ijmart/ijmsample.bib index 6d1f3eebef7..d1d7a9c70cd 100644 --- a/Master/texmf-dist/doc/latex/ijmart/ijmsample.bib +++ b/Master/texmf-dist/doc/latex/ijmart/ijmsample.bib @@ -3,7 +3,8 @@ @Article{dihe:newdir, author = {W. Diffie and E. Hellman}, title = {New directions in Cryptography}, - journal = {IEEE Transactions on Information Theory}, + fjournal = {IEEE Transactions on Information Theory}, + journal = {IEEE Trans. Inf. Theory}, year = 1976, volume = 22, number = 5, @@ -93,7 +94,8 @@ Complementarity Problems}, author = {C. J. Liu and Yutze Chow}, title = {On Operator and Formal Sum Methods for Graph Enumeration Problems}, - journal = {SIAM Journal of Algorithms and Discrete Methods}, + journal = {SIAM J. Algorith. and Discr. Meth.}, + fjournal = {SIAM Journal of Algorithms and Discrete Methods}, year = 1984, volume = 5, pages = {384--438} diff --git a/Master/texmf-dist/doc/latex/ijmart/ijmsample.pdf b/Master/texmf-dist/doc/latex/ijmart/ijmsample.pdf index 219047888f8..57d2092eea4 100644 Binary files a/Master/texmf-dist/doc/latex/ijmart/ijmsample.pdf and b/Master/texmf-dist/doc/latex/ijmart/ijmsample.pdf differ diff --git a/Master/texmf-dist/source/latex/ijmart/Makefile b/Master/texmf-dist/source/latex/ijmart/Makefile deleted file mode 100644 index 322c5b46111..00000000000 --- a/Master/texmf-dist/source/latex/ijmart/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# -# Makefile for ijmart package -# -# This file is in public domain -# -# $Id: Makefile,v 1.4 2007-08-21 02:04:10 boris Exp $ -# - -PACKAGE=ijmart - -SAMPLES = \ - ijmsample.tex - -PDF = $(PACKAGE).pdf ${SAMPLES:%.tex=%.pdf} - -all: ${PDF} - - -%.pdf: %.dtx $(PACKAGE).cls - pdflatex $< - - bibtex $* - pdflatex $< - - makeindex -s gind.ist -o $*.ind $*.idx - - makeindex -s gglo.ist -o $*.gls $*.glo - pdflatex $< - while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ - do pdflatex $<; done - - -%.cls: %.ins %.dtx - pdflatex $< - -%.pdf: %.tex $(PACKAGE).cls - pdflatex $< - - bibtex $* - pdflatex $< - while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ - do pdflatex $<; done - - - -.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls - - -clean: - $(RM) $(PACKAGE).cls *.log *.aux \ - *.cfg *.glo *.idx *.toc \ - *.ilg *.ind *.out *.lof \ - *.lot *.bbl *.blg *.gls \ - *.dvi *.ps *.thm *.tgz *.zip - -distclean: clean - $(RM) $(PDF) - -# -# Archive for the distribution. Includes typeset documentation -# -archive: all clean - tar -czvf $(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude '*.zip' --exclude CVS . - -zip: all clean - zip -r $(PACKAGE).zip * -x '*~' -x '*.tgz' -x '*.zip' -x CVS -x 'CVS/*' \ No newline at end of file diff --git a/Master/texmf-dist/source/latex/ijmart/ijmart.dtx b/Master/texmf-dist/source/latex/ijmart/ijmart.dtx index 9fa3275d422..89df6948690 100644 --- a/Master/texmf-dist/source/latex/ijmart/ijmart.dtx +++ b/Master/texmf-dist/source/latex/ijmart/ijmart.dtx @@ -1,5 +1,5 @@ % \iffalse -% $Id: ijmart.dtx,v 1.49 2010-03-03 03:50:11 boris Exp $ +% $Id: ijmart.dtx,v 1.50 2010-10-29 02:57:19 boris Exp $ % % Copyright 2007-2010, The Hebrew University Magnes Press % This work may be distributed and/or modified under the @@ -81,7 +81,8 @@ % \changes{v1.0}{2007/09/03}{Documentation update} % \changes{v1.1a}{2007/10/14}{Documentation update} % \changes{v1.3}{2008/01/27}{Documented the use of qedhere and mqedhere} -% +% \changes{v1.6}{2010/10/28}{Documentation updates: illustrations and +% bibliography} % %\section{Introduction} %\label{sec:intro} @@ -551,8 +552,31 @@ % list of references. For those authors who wish to use Bib\TeX, the % style |ijmart.bst| is included in the distribution. It should be % noted that the journal style requires full journal titles in -% references. This might require editing of |.bib| files. -% +% references. Following MathSciNet +% (\url{http://www.ams.org/mathscinet/} conventions, the style +% correctly processes article entries with both |journal| and +% |fjournal| fields, for example +% \begin{verbatim} +% @article {MR2663320, +% AUTHOR = {Farkas, J. Z. and Green, D. M. and Hinow, P.}, +% TITLE = {Semigroup analysis of structured parasite populations}, +% JOURNAL = {Math. Model. Nat. Phenom.}, +% FJOURNAL = {Mathematical Modelling of Natural Phenomena}, +% VOLUME = {5}, +% YEAR = {2010}, +% NUMBER = {3}, +% PAGES = {94--114}, +% ISSN = {0973-5348}, +% MRCLASS = {92D25 (35B35 35Q92 47D06 47N60)}, +% MRNUMBER = {2663320}, +% DOI = {10.1051/mmnp/20105307}, +% URL = {http://dx.doi.org/10.1051/mmnp/20105307}, +% } +% \end{verbatim} +% If an entry has only the |journal| field, it is used for the journal +% title. However, if the entry has also the |fjournal| field, the +% style assumes that this field contains the full (unabbreviated) +% title, and uses it for formatting bibliography. % %\subsection{Illustrations} %\label{sec:illustrations} @@ -563,6 +587,12 @@ % (see~\cite{Goossens97:LateXGraphicsCompanion} for a comprehensive % discussion of \LaTeX{} graphics possibilities). % +% Note that the journal uses \progname{dvips} for internal processing. +% If the authors submit their illustrations in the PNG, JPEG of PDF +% formats, they are converted to the EPS format by the technical +% editors. Sometimes this conversion may lead to the loss of quality +% and resolution. Therefore the authors are advised to submit the +% illustrations in the EPS format. % % % \StopEventually{% @@ -608,7 +638,7 @@ \ProvidesFile{ijmart.dtx} % %\ProvidesClass{ijmart} -[2010/03/02 v1.5 Typesetting articles for The Israel Journal of Mathematics] +[2010/10/18 v1.6 Typesetting articles for The Israel Journal of Mathematics] % \end{macrocode} % % \begin{macro}{\@classname} diff --git a/Master/texmf-dist/tex/latex/ijmart/ijmart.cls b/Master/texmf-dist/tex/latex/ijmart/ijmart.cls index d48bbc31cf9..ecf86a0c055 100644 --- a/Master/texmf-dist/tex/latex/ijmart/ijmart.cls +++ b/Master/texmf-dist/tex/latex/ijmart/ijmart.cls @@ -37,7 +37,7 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e} \ProvidesClass{ijmart} -[2010/03/02 v1.5 Typesetting articles for The Israel Journal of Mathematics] +[2010/10/18 v1.6 Typesetting articles for The Israel Journal of Mathematics] \def\@classname{ijmart}% \newif\ifijm@french \ijm@frenchfalse -- cgit v1.2.3