[skip ci] Added the cite_introduction_to_computing_systems
shortcode
This commit is contained in:
28
layouts/partials/cite_book.html
Normal file
28
layouts/partials/cite_book.html
Normal file
@ -0,0 +1,28 @@
|
||||
{{/* See layouts/shortcodes/cite_book.html */}}
|
||||
|
||||
<div style="display: inline">
|
||||
|
||||
{{/* Authors */}}
|
||||
{{ with .author }}<b>{{ . }}</b>{{ end }}{{ with .author2 }}; <b>{{ . }}</b>{{ end }}
|
||||
|
||||
{{/* Date */}}
|
||||
{{ with .date }}({{ . }}).{{ end }}
|
||||
|
||||
{{/* Chapter */}}
|
||||
{{ with .chapter }}"{{ . }}"{{ end }}
|
||||
|
||||
{{/* Title and edition */}}
|
||||
{{ with .title }}in <i>{{ . }}</i>{{ end }}
|
||||
{{ with .edition }}({{ . }} ed.){{ end }}.
|
||||
|
||||
{{/* Publisher */}}
|
||||
{{ with .publisher }}{{ . }}.{{ end }}
|
||||
|
||||
{{/* Pages */}}
|
||||
{{ with .page }}p. {{ . }}.{{ end }}
|
||||
{{ with .pages }}pp. {{ . }}.{{ end }}
|
||||
|
||||
{{/* ISBN */}}
|
||||
{{ with .isbn }}ISBN {{ . }}.{{ end }}
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user