lyx_mirror/lib/citeengines/jurabib.citeengine

216 lines
7.7 KiB
Plaintext
Raw Normal View History

# \DeclareLyXCiteEngine[jurabib.sty]{Jurabib (BibTeX)}
# DescriptionBegin
# Jurabib supports a range of author-year styles primarily suitable for law studies
# and the Humanities. It includes localizations for English, German, French, Dutch,
# Spanish and Italian.
# DescriptionEnd
# Excludes: basic | natbib | biblatex
# Author: Julien Rioux <jrioux@lyx.org>
Format 63
Requires jurabib
2017-01-04 12:30:50 +00:00
# The framework (biblatex|bibtex)
CiteFramework bibtex
2017-01-04 12:30:50 +00:00
# Cite style variants (default|authoryear|natbib)
# We provide only authoryear citations
CiteEngineType authoryear
2017-01-04 12:30:50 +00:00
# Default style file
DefaultBiblio jurabib
# Maximum number of names before "et al." chimes in
MaxCiteNames 3
2017-01-04 12:30:50 +00:00
# The syntax of the cite command definitions below is:
# LyXName|alias*<!_stardesc!_stardesctooltip>[][]=latexcmd
#
# * LyXName: The LyX name as output in the LyX file. For
# portability reasons, we try to use the same
# name for same-formatted commands in the
# different engines (thus many names stem from
# natbib).
# * Alias: A (comma-separated) list of commands that fall
# back to the given LyX name in the current engine.
# This is a bit like "ObsoletedBy" in the layouts.
# * latexcmd: The actual LaTeX command that is output.
#
# Alias and latexcmd are optional. If no latexcmd is given, the
# LyXName will be output to LaTeX.
#
# Note further:
#
# * Capitalization indicates that the command also has a capitalized
# form (\Latexcmd vs. \latexcmd). These usually enforce upcasing of
# name prefixes (von Goethe => Von Goethe).
# * Brackets [] indicate the number of optional arguments (0, 1, 2).
# * The star * indicates there is a starred version of the command
# (\latexcmd* vs. \latexcmd). By default, the starred version means:
# Expand the author list even if the maxnames setting would cause
# BibTeX/Biber to shorten it with "et al.".
# If the star has a different meaning for a command, it can be
# specified in angle brackets: <!_stardesc!_stardesctooltip>.
# Maximal two translatable macro keywords, marked by the prefix '!_',
# can be given. The first points to the string that replaces the
# "Full aut&hor list" checkbox label in the Citation dialog, the
# second one an optional tooltip for this checkbox. Note that these
# two macros have to be defined in the CiteFormat section (see below),
# dropping the '!' from the prefix (see below), e.g.:
# _stardesc Starred command label
# _stardesctooltip Tooltip for the starred command checkbox.
# FIXME: support for these jurabib styles (fileformat)
# citefield []{}
# footcite [][]
# footcitetitle [][]
# footcitet [][]
# footcitep [][]
# footcitealt [][]
# footcitealp [][]
# footciteauthor [][]
# footciteyear [][]
# footciteyearpar [][]
# footfullcite [][]
2017-01-04 12:30:50 +00:00
#
# CITE COMMAND DEFINITIONS
#
CiteEngine authoryear
# \cite* is not implemented: use \cite instead, it's the same
cite [][]
citetitle [][]
citet [][]
citep [][]
citealt [][]
citealp [][]
citeauthor [][]
citeyear [][]
citeyearpar [][]
fullcite [][]
nocite
End
2017-01-04 12:30:50 +00:00
#
# CITE FORMAT
#
# The following defines how the commands are represented in the GUI
# (inset button and citation dialog) as well as in XHTML, docbook and
# plain text output.
#
CiteFormat authoryear
2017-01-04 12:30:50 +00:00
#
# MACROS
#
# 1. Translatable bits (need to be marked by _ prefix)
#
_notcited not cited
_addtobib Add to bibliography only.
_fullcite bibliography entry
_bibentry Bibliography entry.
_before before
_shorttitle short title
2017-01-04 12:30:50 +00:00
#
# 2. Macros re-used in the style definitions
#
!open (
!sep ;
!close )
2017-01-04 12:30:50 +00:00
# A link that lets us jump to the bibliography entry in LyXHTML
# %clean:key% will be substituted by the cite key to give a unique id
!startlink {!<a href='#LyXCite-%clean:key%'>!}
!endlink {!</a>!}
2017-01-04 12:30:50 +00:00
# "ShortAuthor" or "??"
!shortauthor {%shortauthor%[[%shortauthor%]][[??]]}
# "... ShortTitle" (button) / "... ShortTitle <short title>" (dialog)
!shorttitle {%shorttitle%[[ %shorttitle%]][[{%dialog%[[ <%_shorttitle%>]]}]]}
# "prenote "
!textbefore {%textbefore%[[%textbefore% ]]}
# "/prenote" (button) / "/prenote/<before>" (dialog)
!textbefore2 {%textbefore%[[/%textbefore%]][[{%dialog%[[/<%_before%>]]}]]}
# ", postnote"
!textafter {%textafter%[[, %textafter%]]}
# " postnote"
!textafter2 {%textafter%[[ %textafter%]]}
# Add a year if it exists (else "??") and possibly a modifier (as in 2017a)
!year {%year%[[%year%]][[??]]}{%modifier%[[%modifier%]]}
# "ShortAuthor/prenote postnote..."
!cite %!startlink%%!shortauthor%%!endlink%%!textbefore2%%!textafter2%%!nextcite%
2017-01-04 12:30:50 +00:00
# "ShortAuthor/prenote ShortTitle postnote..."
!citetitle %!startlink%%!shortauthor%%!endlink%%!textbefore2%%!shorttitle%%!textafter2%%!nextcitetitle%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor (Year, postnote)..."
!citet %!textbefore%%!startlink%%!shortauthor%%!endlink% %!open%%!year%%!textafter%%!close%%!nextcitet%
2017-01-04 12:30:50 +00:00
# "(prenote ShortAuthor, Year, postnote)"
!citep %!open%%!citealp%%!close%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor Year, postnote..."
!citealt %!textbefore%%!startlink%%!shortauthor% %!year%%!endlink%%!textafter%%!nextcitealt%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor, Year, postnote..."
!citealp %!textbefore%%!startlink%%!shortauthor%, %!year%%!endlink%%!textafter%%!nextcitealp%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor, postnote..."
!citeauthor %!textbefore%%!startlink%%!shortauthor%%!endlink%%!textafter%%!nextauthor%
2017-01-04 12:30:50 +00:00
# "prenote Year, postnote..."
!citeyear %!textbefore%%!startlink%%!year%%!endlink%%!textafter%%!nextyear%
2017-01-04 12:30:50 +00:00
# "prenote (Year), postnote..."
!citeyearpar %!textbefore%%!open%%!startlink%%!year%%!endlink%%!close%%!textafter%%!nextyearpar%
2017-01-04 12:30:50 +00:00
# "prenote in: Key, postnote..."
!fullcite {%textbefore%[[%textbefore% in: ]]}%bibentry%{%textafter%[[ %textafter%]]}%!nextfullcite%
2017-01-04 12:30:50 +00:00
# "...; ShortAuthor postnote..."
!nextcite {%next%[[%!sep% %!startlink%%!shortauthor%%!endlink%%!textafter2%%!nextcite%]]}
2017-01-04 12:30:50 +00:00
# "...; ShortAuthor ShortTitle postnote..."
!nextcitetitle {%next%[[%!sep% %!startlink%%!shortauthor%%!endlink%%!shorttitle%%!textafter2%%!nextcitetitle%]]}
2017-01-04 12:30:50 +00:00
# "...; prenote ShortAuthor (Year, postnote)..."
!nextcitet {%next%[[%!sep% %!citet%]]}
2017-01-04 12:30:50 +00:00
# "...; prenote ShortAuthor Year, postnote..."
!nextcitealt {%next%[[%!sep% %!citealt%]]}
2017-01-04 12:30:50 +00:00
# "...; prenote ShortAuthor, Year, postnote..."
!nextcitealp {%next%[[%!sep% %!citealp%]]}
2017-01-04 12:30:50 +00:00
# "...; prenote ShortAuthor, postnote..."
!nextauthor {%next%[[%!sep% %!citeauthor%]]}
2017-01-04 12:30:50 +00:00
# "...; prenote Year, postnote..."
!nextyear {%next%[[%!sep% %!citeyear%]]}
2017-01-04 12:30:50 +00:00
# "...; prenote (Year), postnote..."
!nextyearpar {%next%[[%!sep% %!citeyearpar%]]}
2017-01-04 12:30:50 +00:00
# "...; Key, postnote..."
!nextfullcite {%next%[[%!sep% %bibentry%%textafter%%!nextfullcite%]]}
# "...; Key..."
!nextkey {%next%[[%!sep% %key%%!nextkey%]]}
2017-01-04 12:30:50 +00:00
#
# ACTUAL STYLE DEFINITIONS
#
2017-01-04 12:30:50 +00:00
# "ShortAuthor/prenote postnote; NextShortAuthor postnote..."
cite %!cite%
2017-01-04 12:30:50 +00:00
# "ShortAuthor/prenote ShortTitle postnote; NextShortAuthor ShortTitle postnote..."
citetitle %!citetitle%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor (Year, postnote); prenote NextShortAuthor (Year, postnote)..."
citet %!citet%
2017-01-04 12:30:50 +00:00
# "(prenote ShortAuthor, Year, postnote)"
citep %!citep%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor Year, postnote; prenote NextShortAuthor Year, postnote..."
citealt %!citealt%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor, Year, postnote.; prenote NextShortAuthor, Year, postnote..."
citealp %!citealp%
2017-01-04 12:30:50 +00:00
# "prenote ShortAuthor, postnote; prenote NextShortAuthor, postnote..."
citeauthor %!citeauthor%
2017-01-04 12:30:50 +00:00
# "prenote Year, postnote; prenote Year, postnote..."
citeyear %!citeyear%
2017-01-04 12:30:50 +00:00
# "prenote (Year), postnote; prenote (Year), postnote..."
citeyearpar %!citeyearpar%
2017-01-04 12:30:50 +00:00
# "Bibliography entry." (dialog) / "Key; Key ... (full cite)" (button)
fullcite {%dialog%[[%_bibentry%]][[{%label%[[%!fullcite%]][[%key%%!nextkey% (%_fullcite%)]]}]]}
2017-01-04 12:30:50 +00:00
# "Add to bibliography only." (dialog) / "Key; Key ... (not cited)" (button)
nocite {%dialog%[[%_addtobib%]][[%key%%!nextkey% (%_notcited%)]]}
End