diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/philosophersimprint')
-rw-r--r-- | Master/texmf-dist/source/latex/philosophersimprint/philosophersimprint.dtx | 48 |
1 files changed, 44 insertions, 4 deletions
diff --git a/Master/texmf-dist/source/latex/philosophersimprint/philosophersimprint.dtx b/Master/texmf-dist/source/latex/philosophersimprint/philosophersimprint.dtx index 2f8b051d45e..7bedb74dc57 100644 --- a/Master/texmf-dist/source/latex/philosophersimprint/philosophersimprint.dtx +++ b/Master/texmf-dist/source/latex/philosophersimprint/philosophersimprint.dtx @@ -1,6 +1,6 @@ % \iffalse %<*gobble> -% $Id: philosophersimprint.dtx,v 1.40 2012-06-02 20:11:30 boris Exp $ +% $Id: philosophersimprint.dtx,v 1.42 2013-01-15 03:57:36 boris Exp $ % % Copyright 2007, Boris Veytsman <boris@varphi.com> % This work may be distributed and/or modified under the @@ -20,7 +20,7 @@ % derived file philosophersimprint.cls % % \fi -% \CheckSum{775} +% \CheckSum{788} % % %% \CharacterTable @@ -52,7 +52,7 @@ \ProvidesFile{philosophersimprint.dtx} %</gobble> %<class>\ProvidesClass{philosophersimprint} -[2012/06/01 v1.2 Typesetting articles for Philosophers' Imprint] +[2013/01/13 v1.3 Typesetting articles for Philosophers' Imprint] %<*gobble> % \end{macrocode} % @@ -296,6 +296,14 @@ % information from the date and author list. You need to set it % explicitly. % +% \DescribeMacro{\copyrightlicense} +% By default all papers in the journal are licensed under +% under a Creative Commons +% Attribution-NonCommercial-NoDerivatives 3.0 License. You can +% override this setting by using \cmd{\copyrightlicense}\marg{Other +% license}. +% +% % \DescribeMacro{\subject} % This macro, if present, sets the ``Subject'' field in the PDF % metadata. For example: @@ -403,6 +411,24 @@ % In most cases the amount of manual intervention necessary to % achieve alignment is fairly small. % +% In some cases one can achieve better results by tweaking \TeX\ +% parameters. For example, the settings +% \begin{verbatim} +% \clubpenalty=1000\widowpenalty=1000\displaywidowpenalty=1000 +% \interfootnotelinepenalty=-1000 +% \interlinepenalty=-100 +% \end{verbatim} +% may lead to fuller pages, but may produce some unwaned orphans and +% clubs. Setting them to +% \begin{verbatim} +% \clubpenalty=10000\widowpenalty=10000\displaywidowpenalty=10000 +% \interfootnotelinepenalty=0 +% \interlinepenalty=0 +% \end{verbatim} +% will decrease the number of orphans and clubs, but may lead to +% unwanted white spaces on the pages. Sometimes judicious changes of +% the parameters in strategic places may help. +% % \subsection{Acknowledgements} % % The author is grateful to John Horty, David Velleman and Victor @@ -1028,6 +1054,16 @@ % \end{macro} % \end{macro} % +% \begin{macro}{\copyrightlicense} +% \changes{v1.13}{2013/01/13}{Added macro} +% This adds license information: +% \begin{macrocode} +\newcommand*{\copyrightlicense}[1]{\gdef\@copyrightlicense{#1}} +\copyrightlicense{This work is licensed under a Creative Commons + Attribution-NonCommercial-NoDerivatives 3.0 License} +% \end{macrocode} +% \end{macro} +% % Some games with the numbers % \begin{macro}{\PHIM@addzeros} % \changes{v0.5}{2007/04/04}{Corrected documentation} @@ -1137,6 +1173,7 @@ % \changes{v0.5}{2007/04/05}{Moved URL def outside hyperref check} % \changes{v0.7}{2007/04/18}{Changed lengths and fonts} % \changes{v1.2}{2012/06/01}{Added trailing slash to the title page url} +% \changes{v1.3}{2013/01/13}{Added copyright license} % Simulated page should look more or less like the real one. % \begin{macrocode} \def\maketitle@simulated{% @@ -1161,8 +1198,10 @@ {\large\itshape\@affiliation\par}% \vskip 0pt plus 0.2fill\relax {\ifx\@copyrightinfo\@empty~\else% - \copyright\space\@copyrightinfo\fi\\[0.3ex] + \copyright\space\@copyrightinfo\fi\\ \itshape + \ifx\@copyrightlicense\@empty~\else% + \@copyrightlicense\fi\\[0.3ex] \edef\PHIM@url{% www.philosophersimprint.org/\@@journalvolume\@@journalnumber/} \ifPHIM@hyperref\relax @@ -1370,3 +1409,4 @@ %\PrintIndex % \endinput + |