How to cite paragraphs rather than pages from bibliography reference?biblatex: How to omit “p.” at cite?Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?How do I cite laws or regulations in biblatex?How to automatically cite your own publications in a resume?Separate bibliography in Roman numerals, citeable everywhereFormatting biblatex citation to handle non-latin (Japanese) author namesManual citation of specific references with biblatex-chicagoHow to quote encyclopedia articles differently from books, magazines, etc. with Biblatex?Use roman numerals for cite in BibLaTeXIgnoring some citations in reference list, but keeping consecutive numberingPage range in multiple citation with sortingCite Custom Field in apacite
Why is "la Gestapo" feminine?
Hot air balloons as primitive bombers
Fair way to split coins
How to determine the greatest d orbital splitting?
Friend wants my recommendation but I don't want to give it to him
Is VPN a layer 3 concept?
Exit shell with shortcut (not typing exit) that closes session properly
PTIJ: Which Dr. Seuss books should one obtain?
Symbolism of 18 Journeyers
How can a new country break out from a developed country without war?
Why is this tree refusing to shed its dead leaves?
What are the rules for concealing thieves' tools (or items in general)?
Animating wave motion in water
How to find the largest number(s) in a list of elements, possibly non-unique?
Emojional cryptic crossword
Determine voltage drop over 10G resistors with cheap multimeter
What is the difference between something being completely legal and being completely decriminalized?
Should I be concerned about student access to a test bank?
Why do I have a large white artefact on the rendered image?
Knife as defense against stray dogs
Nested Dynamic SOQL Query
How old is Nick Fury?
What will the Frenchman say?
How are passwords stolen from companies if they only store hashes?
How to cite paragraphs rather than pages from bibliography reference?
biblatex: How to omit “p.” at cite?Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?How do I cite laws or regulations in biblatex?How to automatically cite your own publications in a resume?Separate bibliography in Roman numerals, citeable everywhereFormatting biblatex citation to handle non-latin (Japanese) author namesManual citation of specific references with biblatex-chicagoHow to quote encyclopedia articles differently from books, magazines, etc. with Biblatex?Use roman numerals for cite in BibLaTeXIgnoring some citations in reference list, but keeping consecutive numberingPage range in multiple citation with sortingCite Custom Field in apacite
Quoting a reference using biblatex
, it is possible to add an optional argument to cite
in order to specify the page number that is being quoted, such as in
cite[20]foo
which will produce something like "[Foo, p. 20]".
My question is if there is some package or some hack that will allow to do the same without the "p.".
The goal is to be able to cite specific paragraphs, rather than pages. The paragraphs happen to be numbered by roman numerals, so the idea is to be able to do something like:
citep[XXVI]foo
and get something like "[Foo, XXVI]".
biblatex citing
add a comment |
Quoting a reference using biblatex
, it is possible to add an optional argument to cite
in order to specify the page number that is being quoted, such as in
cite[20]foo
which will produce something like "[Foo, p. 20]".
My question is if there is some package or some hack that will allow to do the same without the "p.".
The goal is to be able to cite specific paragraphs, rather than pages. The paragraphs happen to be numbered by roman numerals, so the idea is to be able to do something like:
citep[XXVI]foo
and get something like "[Foo, XXVI]".
biblatex citing
1
See also biblatex: How to omit “p.” at cite? and Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?
– moewe
May 31 '17 at 18:22
add a comment |
Quoting a reference using biblatex
, it is possible to add an optional argument to cite
in order to specify the page number that is being quoted, such as in
cite[20]foo
which will produce something like "[Foo, p. 20]".
My question is if there is some package or some hack that will allow to do the same without the "p.".
The goal is to be able to cite specific paragraphs, rather than pages. The paragraphs happen to be numbered by roman numerals, so the idea is to be able to do something like:
citep[XXVI]foo
and get something like "[Foo, XXVI]".
biblatex citing
Quoting a reference using biblatex
, it is possible to add an optional argument to cite
in order to specify the page number that is being quoted, such as in
cite[20]foo
which will produce something like "[Foo, p. 20]".
My question is if there is some package or some hack that will allow to do the same without the "p.".
The goal is to be able to cite specific paragraphs, rather than pages. The paragraphs happen to be numbered by roman numerals, so the idea is to be able to do something like:
citep[XXVI]foo
and get something like "[Foo, XXVI]".
biblatex citing
biblatex citing
asked May 31 '17 at 7:14
DalkerDalker
237110
237110
1
See also biblatex: How to omit “p.” at cite? and Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?
– moewe
May 31 '17 at 18:22
add a comment |
1
See also biblatex: How to omit “p.” at cite? and Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?
– moewe
May 31 '17 at 18:22
1
1
See also biblatex: How to omit “p.” at cite? and Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?
– moewe
May 31 '17 at 18:22
See also biblatex: How to omit “p.” at cite? and Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?
– moewe
May 31 '17 at 18:22
add a comment |
1 Answer
1
active
oldest
votes
You can use nopp
to suppress the page prefix 'p.'/'pp.'
cite[nopp 20]sigfridsson
If you want to always suppress the page prefix, use
DeclareFieldFormatpostnotemknormrange#1
DeclareFieldFormatmultipostnotemknormrange#1
mknormrange
is a fairly recent addition to biblatex
, so if the command is undefined when you add it, you probably just want to try #1
instead of mknormrange#1
(or say providecommand*mknormrange[1]#1
).
If you want to suppress the 'p.'/'pp.' for a particular entry, add
pagination = none,
to the .bib
entry. Instead of none
, you can also have (the default) page
or one of column
, line
, verse
, section
or paragraph
.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f372522%2fhow-to-cite-paragraphs-rather-than-pages-from-bibliography-reference%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use nopp
to suppress the page prefix 'p.'/'pp.'
cite[nopp 20]sigfridsson
If you want to always suppress the page prefix, use
DeclareFieldFormatpostnotemknormrange#1
DeclareFieldFormatmultipostnotemknormrange#1
mknormrange
is a fairly recent addition to biblatex
, so if the command is undefined when you add it, you probably just want to try #1
instead of mknormrange#1
(or say providecommand*mknormrange[1]#1
).
If you want to suppress the 'p.'/'pp.' for a particular entry, add
pagination = none,
to the .bib
entry. Instead of none
, you can also have (the default) page
or one of column
, line
, verse
, section
or paragraph
.
add a comment |
You can use nopp
to suppress the page prefix 'p.'/'pp.'
cite[nopp 20]sigfridsson
If you want to always suppress the page prefix, use
DeclareFieldFormatpostnotemknormrange#1
DeclareFieldFormatmultipostnotemknormrange#1
mknormrange
is a fairly recent addition to biblatex
, so if the command is undefined when you add it, you probably just want to try #1
instead of mknormrange#1
(or say providecommand*mknormrange[1]#1
).
If you want to suppress the 'p.'/'pp.' for a particular entry, add
pagination = none,
to the .bib
entry. Instead of none
, you can also have (the default) page
or one of column
, line
, verse
, section
or paragraph
.
add a comment |
You can use nopp
to suppress the page prefix 'p.'/'pp.'
cite[nopp 20]sigfridsson
If you want to always suppress the page prefix, use
DeclareFieldFormatpostnotemknormrange#1
DeclareFieldFormatmultipostnotemknormrange#1
mknormrange
is a fairly recent addition to biblatex
, so if the command is undefined when you add it, you probably just want to try #1
instead of mknormrange#1
(or say providecommand*mknormrange[1]#1
).
If you want to suppress the 'p.'/'pp.' for a particular entry, add
pagination = none,
to the .bib
entry. Instead of none
, you can also have (the default) page
or one of column
, line
, verse
, section
or paragraph
.
You can use nopp
to suppress the page prefix 'p.'/'pp.'
cite[nopp 20]sigfridsson
If you want to always suppress the page prefix, use
DeclareFieldFormatpostnotemknormrange#1
DeclareFieldFormatmultipostnotemknormrange#1
mknormrange
is a fairly recent addition to biblatex
, so if the command is undefined when you add it, you probably just want to try #1
instead of mknormrange#1
(or say providecommand*mknormrange[1]#1
).
If you want to suppress the 'p.'/'pp.' for a particular entry, add
pagination = none,
to the .bib
entry. Instead of none
, you can also have (the default) page
or one of column
, line
, verse
, section
or paragraph
.
edited 1 min ago
answered May 31 '17 at 7:30
moewemoewe
94k10115354
94k10115354
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f372522%2fhow-to-cite-paragraphs-rather-than-pages-from-bibliography-reference%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
See also biblatex: How to omit “p.” at cite? and Can I make biblatex refrain from assuming my postnote (which consists of a number) is a page number?
– moewe
May 31 '17 at 18:22