1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
%\iffalse THIS IS A META COMMENT
% File: scrguide.mbs
% Copyright 2001 Markus Kohm
% E-mail: markus.kohm@gmx.de
%
% This program can be redistributed and/or modified under the terms
% of the LaTeX Project Public License Distributed from CTAN
% archives in directory macros/latex/base/lppl.txt; either
% version 1 of the License, or any later version.
%
% It is part of the KOMA-Script bundle,
%====================================================================
% A Journal Definition File for extra journals
% to be included with other master bibliography style files
%--------------------------------------------------------------------
% (See version and date in the \ProvidesFile command below)
%--------------------------------------------------------------------
% This file is self-documenting: simply LaTeX it!
%====================================================================
%
%-------------------------------------------------------------------
% Begin module:
%\fi
% \ProvidesFile{scrguide.mbs}[2001/03/22 0.1]
%\iffalse
%<*a&!a>
% The following ensures that the driver part is not seen by makebst
% The driver part must not contain any \end other than \end{document} !
\ifx\endoptions\undefined\let\tempx=\relax\else
\long\def\tempx#1\end#2{}\fi\tempx
%</a&!a>
%<*driver>
\NeedsTeXFormat{LaTeX2e}%
\documentclass[a4paper,10pt,twoside]{article}%
\usepackage{doc}%
\raggedbottom
\CodelineNumbered
\RecordChanges
% Comment out next line to print coding
\OnlyDescription
\setlength{\oddsidemargin}{0.5\paperwidth}
\addtolength{\oddsidemargin}{-0.5\textwidth}
\addtolength{\oddsidemargin}{-1in}
\setlength{\evensidemargin}{\oddsidemargin}
\begin{document}
\DocInput{scrguide.mbs}
\end{document}
%</driver>
% END OF META COMMENT \fi
% \CharacterTable
% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
% Digits \0\1\2\3\4\5\6\7\8\9
% Exclamation \! Double quote \" Hash (number) \#
% Dollar \$ Percent \% Ampersand \&
% Acute accent \' Left paren \( Right paren \)
% Asterisk \* Plus \+ Comma \,
% Minus \- Point \. Solidus \/
% Colon \: Semicolon \; Less than \<
% Equals \= Greater than \> Question mark \?
% Commercial at \@ Left bracket \[ Backslash \\
% Right bracket \] Circumflex \^ Underscore \_
% Grave accent \` Left brace \{ Vertical bar \|
% Right brace \} Tilde \~}
%
% \setcounter{StandardModuleDepth}{1}
% \setcounter{IndexColumns}{2}
% \setlength{\IndexMin}{10cm}
%
% \changes{0.1}{2001/03/22}{Initial contributed version}
%
% \pagestyle{myheadings}
% \markboth{Markus Kohm}{Extra Journal Names}
%
% \title{{\bfseries Extra Journal Definition File}\\
% for master bibliographic style files}
%
% \author{Markus Kohm}
%
% \GetFileInfo{scrguide.mbs}
% \date{This paper describes file \texttt{\filename},\\
% version \fileversion{} from \filedate}
%
% \maketitle
%
% \MakeShortVerb{\|}
%
% \parskip=1ex \parindent=0pt
%
% \newcommand{\btx}{{\sc Bib}\TeX}
% \newcommand{\dtx}{\textsf{docstrip}}
%
% \section{Introduction}
%
% This file adds a list of preprogrammed extra journal names to
% bibliographic style files, in both full and abbreviated versions.
% These defined journal names will be added to those in the main master
% bibliography style file.
%
% This is not a self-sufficient \texttt{.mbs} file, but rather may
% be used together with one that contains support for
% external definition files.
% %
% See the documentation for \texttt{makebst} for formatting details.
%
% \section{The Menu Information}
%
% All the menu information is nested between \dtx{} guard options
% |%<*options>| \dots\ |%</options>|, and the last command is
% |\endoptions|. The rest of the file is nested between |%<*!options>|
% \dots\ |%</!options>| in order to exclude it if \dtx{} is used to
% extract only the menu information.
%
% A journal-names files should contain at most only one option, \texttt{jabr}.
% This is because \texttt{merlin} version~3.5 can now handle several
% journal-name files, but does not look into them for the options, but
% rather asks for \texttt{jabr} from the main file. For compatibility with
% older versions, the option menu must be kept here.
%
% \begin{macrocode}
%<*options>
\mes{^^JEXTRA JOURNAL NAMES:}
\optdef{*}{}{Full extra journal names}{}
\optdef{a}{jabr}{Abbreviate extra names}{for journals}
\getans
\endoptions
%</options>
% \end{macrocode}
%
% \StopEventually{\PrintChanges}
%
% \section{The Coding}
% \begin{macrocode}
%<*!options>
%<*jabr>
MACRO{DTK}{"Die \TeX\-nische Ko\-m\^^b{o}\-die"}
MACRO{TUGboat}{"TUGboat"}
MACRO{TTN}{"\TeX{} and TUG News"}
MACRO{KOMAScript}{\KOMAScript}
%</jabr>
%</!options>
% End module: scrguide.mbs
% \end{macrocode}
% \Finale
|