You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the HTML output, every field should be enclosed in an appropriate CSS class. This would ease a lot defining a custom layout. For example, given the bibtex entry:
@Book{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984
}
The desired output HTML would be something like:
<dl><dt>
[<aname="texbook">1</a>]
</dt><ddclass="Book"><spanclass="author">Donald E. Knuth</span>.
<spanclass="title">The TeXbook.</span><spanclass="publisher">Addison-Wesley</span>, <spanclass="year">2005</span>.<br><preclass="bibtex" id="texbook">
@BookK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984
}
</pre></dd></dl>
The <span>, class and id tags don't do anything by themselves. However, they allow to modify the layout easily using CSS. For example, I would be able to use something like this:
.author {
font-weight: bold;
}
.title {
font-variant: italic;
}
pre.bibtex {
overflow: auto; /* if larger than maximum width, will produce scrollbars */
}
Moreover, implementing layout properties of different bibliographic styles will be rather straightforward since the CSS can be embedded in the header of the html file.
The text was updated successfully, but these errors were encountered:
In the HTML output, every field should be enclosed in an appropriate CSS class. This would ease a lot defining a custom layout. For example, given the bibtex entry:
The desired output HTML would be something like:
The
<span>
, class and id tags don't do anything by themselves. However, they allow to modify the layout easily using CSS. For example, I would be able to use something like this:Moreover, implementing layout properties of different bibliographic styles will be rather straightforward since the CSS can be embedded in the header of the html file.
The text was updated successfully, but these errors were encountered: