Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
caesr-pub
jekyll-scholar
Commits
d888532b
Commit
d888532b
authored
Apr 30, 2012
by
Sylvester Keil
Browse files
documented filters
parent
2095c4a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
README.md
README.md
+23
-2
No files found.
README.md
View file @
d888532b
...
...
@@ -35,9 +35,11 @@ default configuration is as follows:
source: ./_bibliography
bibliography: references.bib
details_dir ./bibliography
details_layout bibtex.html
details_dir: bibliography
details_layout: bibtex.html
details_link: Details
query: "@*"
You can use any style that ships with
[
CiteProc-Ruby
](
https://github.com/inukshuk/citeproc-ruby
)
by name (e.g.,
...
...
@@ -180,6 +182,25 @@ of your BibTeX entry. Here is an example of a details page layout:
</body>
</html>
When Jekyll-Scholar generates detail pages, it also adds links to each
entry's detail page to the generated bibliography. You can alter the
name of the link via the 'details_link' configuration option.
### Bibliography Filters
By default, Jekyll-Scholar includes all entries in you main BibTeX file
when generating bibliographies. If you want to include only those entries
matching certain criteria, you can do so by adjusting the 'query'
configuration option. For example:
query: "@book" #=> includes only books
query: "@article[year>=2003]" #=> includes only articles published 2003 or later
query: "@*[url]" #=> includes all entries with a url field
query: "@*[status!=review]" #=> includes all entries whose status field is not set to 'review'
Please note that some of these queries require bibtex-ruby 2.0.7 or
later versions.
Contributing
------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment