Footnote citation











up vote
1
down vote

favorite












This is my first post here, I hope I am doing it right. Sorry for my English, it is not my first language. I have used LaTex for a while but I am ashamed to say that I really do not understand much more than the basic commands. I have recently finished my master's degree and I have to turn in my thesis to our library. They gave me a template (not quite aesthetically pleasing), but I can't complain.



Basically, I am having trouble with the footnote citation format. They use biblatex. They declare myfootcite in the .sty file like this:



makeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatothermakeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatother


I found an answer here where they explained what to put in the header of the document to list the bibliography like "LAST NAME, First name...", and that's what I need on the footnote. Normally, I wouldn't care but it is the format I have to follow.



Basically, what I want is this: need



And what I am getting is this: get



Also, I was use to write



begin{thorem}cite[Theorem 3.4]{ref}
end{theorem}


in order to cite the theorem but with this new format, I can't do it because it shows names, title, year...(and using myfootcite does not look good enough), is there any way I can use the same number I get on the footnotes but to make it look bigger?



Again, sorry for my English and thanks for any help!



EDIT:



I'm not sure if I'm doing this minimal example right because I had to go to the .sty file:



documentclass[letter,oneside,12pt,spanish]{report}
usepackage[hyperref=true,
citereset=none,
url=false,
isbn=false,
backref=true,
style=verbose-note,
dashed=true,
maxcitenames=3,
maxbibnames=3,
backend=bibtex,
block=none,
defernumbers=true]{biblatex}
addbibresource{jobname.bib}
usepackage{filecontents}



begin{filecontents}{jobname.bib}
@article{key,
author={{CHASE, Stephen;} and {HARRISON, David} and {ROSENBERG, Alex}},
journal={Mem. Amer. Math. Soc.},
title={Galois theory and Galois cohomology of commutative rings},
year={1965},
volume={52},
pages={1-19},
},
}
end{filecontents}

begin{document}

cite{key}

printbibliography[heading=bibintoc,title={BIBLIOGRAFÍA},omitnumbers=true]

end{document}


It works perfectly like this, so I don't know what the problem is with the main template.










share|improve this question









New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2




    You solution of putting names inside braces will cause you other problems and is not the right way to go about it. You want to change the appropriate name format to family-given. However, please update your question to provide a full minimal document example beginning with document{class} and ending with end{document} including one bibliography reference. See MWEB.
    – David Purton
    Nov 25 at 7:17










  • Edited. Thank you. It works well like that, so I don't know what is the mistake in the template @DavidPurton
    – ZekeJay
    Nov 25 at 13:09












  • Which template do you have to use? Can you give us a link to it?
    – Kurt
    Nov 25 at 14:21










  • I got the template here: link. It is link #7, and it downloads an example as well @Kurt
    – ZekeJay
    Nov 25 at 15:35












  • The linked template does not always follow bes practices, so you should be careful - it might break at any time: The first(!) package it loads is hyperref, but hyperef should usually be loaded last. The .sty enforces ansinew encoding, when UTF-8 is the de fact standard today. Loading biblatex with hyperref=true is no better than the default hyperref=auto. The class sets parindent to 0, but sets no parskip. The class loads footmisc twice (with differing lists of options). ...
    – moewe
    Nov 25 at 15:52















up vote
1
down vote

favorite












This is my first post here, I hope I am doing it right. Sorry for my English, it is not my first language. I have used LaTex for a while but I am ashamed to say that I really do not understand much more than the basic commands. I have recently finished my master's degree and I have to turn in my thesis to our library. They gave me a template (not quite aesthetically pleasing), but I can't complain.



Basically, I am having trouble with the footnote citation format. They use biblatex. They declare myfootcite in the .sty file like this:



makeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatothermakeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatother


I found an answer here where they explained what to put in the header of the document to list the bibliography like "LAST NAME, First name...", and that's what I need on the footnote. Normally, I wouldn't care but it is the format I have to follow.



Basically, what I want is this: need



And what I am getting is this: get



Also, I was use to write



begin{thorem}cite[Theorem 3.4]{ref}
end{theorem}


in order to cite the theorem but with this new format, I can't do it because it shows names, title, year...(and using myfootcite does not look good enough), is there any way I can use the same number I get on the footnotes but to make it look bigger?



Again, sorry for my English and thanks for any help!



EDIT:



I'm not sure if I'm doing this minimal example right because I had to go to the .sty file:



documentclass[letter,oneside,12pt,spanish]{report}
usepackage[hyperref=true,
citereset=none,
url=false,
isbn=false,
backref=true,
style=verbose-note,
dashed=true,
maxcitenames=3,
maxbibnames=3,
backend=bibtex,
block=none,
defernumbers=true]{biblatex}
addbibresource{jobname.bib}
usepackage{filecontents}



begin{filecontents}{jobname.bib}
@article{key,
author={{CHASE, Stephen;} and {HARRISON, David} and {ROSENBERG, Alex}},
journal={Mem. Amer. Math. Soc.},
title={Galois theory and Galois cohomology of commutative rings},
year={1965},
volume={52},
pages={1-19},
},
}
end{filecontents}

begin{document}

cite{key}

printbibliography[heading=bibintoc,title={BIBLIOGRAFÍA},omitnumbers=true]

end{document}


It works perfectly like this, so I don't know what the problem is with the main template.










share|improve this question









New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2




    You solution of putting names inside braces will cause you other problems and is not the right way to go about it. You want to change the appropriate name format to family-given. However, please update your question to provide a full minimal document example beginning with document{class} and ending with end{document} including one bibliography reference. See MWEB.
    – David Purton
    Nov 25 at 7:17










  • Edited. Thank you. It works well like that, so I don't know what is the mistake in the template @DavidPurton
    – ZekeJay
    Nov 25 at 13:09












  • Which template do you have to use? Can you give us a link to it?
    – Kurt
    Nov 25 at 14:21










  • I got the template here: link. It is link #7, and it downloads an example as well @Kurt
    – ZekeJay
    Nov 25 at 15:35












  • The linked template does not always follow bes practices, so you should be careful - it might break at any time: The first(!) package it loads is hyperref, but hyperef should usually be loaded last. The .sty enforces ansinew encoding, when UTF-8 is the de fact standard today. Loading biblatex with hyperref=true is no better than the default hyperref=auto. The class sets parindent to 0, but sets no parskip. The class loads footmisc twice (with differing lists of options). ...
    – moewe
    Nov 25 at 15:52













up vote
1
down vote

favorite









up vote
1
down vote

favorite











This is my first post here, I hope I am doing it right. Sorry for my English, it is not my first language. I have used LaTex for a while but I am ashamed to say that I really do not understand much more than the basic commands. I have recently finished my master's degree and I have to turn in my thesis to our library. They gave me a template (not quite aesthetically pleasing), but I can't complain.



Basically, I am having trouble with the footnote citation format. They use biblatex. They declare myfootcite in the .sty file like this:



makeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatothermakeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatother


I found an answer here where they explained what to put in the header of the document to list the bibliography like "LAST NAME, First name...", and that's what I need on the footnote. Normally, I wouldn't care but it is the format I have to follow.



Basically, what I want is this: need



And what I am getting is this: get



Also, I was use to write



begin{thorem}cite[Theorem 3.4]{ref}
end{theorem}


in order to cite the theorem but with this new format, I can't do it because it shows names, title, year...(and using myfootcite does not look good enough), is there any way I can use the same number I get on the footnotes but to make it look bigger?



Again, sorry for my English and thanks for any help!



EDIT:



I'm not sure if I'm doing this minimal example right because I had to go to the .sty file:



documentclass[letter,oneside,12pt,spanish]{report}
usepackage[hyperref=true,
citereset=none,
url=false,
isbn=false,
backref=true,
style=verbose-note,
dashed=true,
maxcitenames=3,
maxbibnames=3,
backend=bibtex,
block=none,
defernumbers=true]{biblatex}
addbibresource{jobname.bib}
usepackage{filecontents}



begin{filecontents}{jobname.bib}
@article{key,
author={{CHASE, Stephen;} and {HARRISON, David} and {ROSENBERG, Alex}},
journal={Mem. Amer. Math. Soc.},
title={Galois theory and Galois cohomology of commutative rings},
year={1965},
volume={52},
pages={1-19},
},
}
end{filecontents}

begin{document}

cite{key}

printbibliography[heading=bibintoc,title={BIBLIOGRAFÍA},omitnumbers=true]

end{document}


It works perfectly like this, so I don't know what the problem is with the main template.










share|improve this question









New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











This is my first post here, I hope I am doing it right. Sorry for my English, it is not my first language. I have used LaTex for a while but I am ashamed to say that I really do not understand much more than the basic commands. I have recently finished my master's degree and I have to turn in my thesis to our library. They gave me a template (not quite aesthetically pleasing), but I can't complain.



Basically, I am having trouble with the footnote citation format. They use biblatex. They declare myfootcite in the .sty file like this:



makeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatothermakeatletter
DeclareCiteCommand{myfootcite}
{}
{usebibmacro{citeindex}%
usebibmacro{myfootcite}}
{}
{}

newbibmacro*{myfootcite}{%
ifciteseen
{usebibmacro{myfootcite:note}}
{mkbibfootnote{usebibmacro{footcite:full}%
usebibmacro{footcite:save}}}}

newbibmacro*{myfootcite:note}{footref{cbx@csuse{cbx@f@thefield{entrykey}}}}
makeatother


I found an answer here where they explained what to put in the header of the document to list the bibliography like "LAST NAME, First name...", and that's what I need on the footnote. Normally, I wouldn't care but it is the format I have to follow.



Basically, what I want is this: need



And what I am getting is this: get



Also, I was use to write



begin{thorem}cite[Theorem 3.4]{ref}
end{theorem}


in order to cite the theorem but with this new format, I can't do it because it shows names, title, year...(and using myfootcite does not look good enough), is there any way I can use the same number I get on the footnotes but to make it look bigger?



Again, sorry for my English and thanks for any help!



EDIT:



I'm not sure if I'm doing this minimal example right because I had to go to the .sty file:



documentclass[letter,oneside,12pt,spanish]{report}
usepackage[hyperref=true,
citereset=none,
url=false,
isbn=false,
backref=true,
style=verbose-note,
dashed=true,
maxcitenames=3,
maxbibnames=3,
backend=bibtex,
block=none,
defernumbers=true]{biblatex}
addbibresource{jobname.bib}
usepackage{filecontents}



begin{filecontents}{jobname.bib}
@article{key,
author={{CHASE, Stephen;} and {HARRISON, David} and {ROSENBERG, Alex}},
journal={Mem. Amer. Math. Soc.},
title={Galois theory and Galois cohomology of commutative rings},
year={1965},
volume={52},
pages={1-19},
},
}
end{filecontents}

begin{document}

cite{key}

printbibliography[heading=bibintoc,title={BIBLIOGRAFÍA},omitnumbers=true]

end{document}


It works perfectly like this, so I don't know what the problem is with the main template.







biblatex citing footnotes






share|improve this question









New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Nov 25 at 13:08





















New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Nov 25 at 3:22









ZekeJay

83




83




New contributor




ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






ZekeJay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 2




    You solution of putting names inside braces will cause you other problems and is not the right way to go about it. You want to change the appropriate name format to family-given. However, please update your question to provide a full minimal document example beginning with document{class} and ending with end{document} including one bibliography reference. See MWEB.
    – David Purton
    Nov 25 at 7:17










  • Edited. Thank you. It works well like that, so I don't know what is the mistake in the template @DavidPurton
    – ZekeJay
    Nov 25 at 13:09












  • Which template do you have to use? Can you give us a link to it?
    – Kurt
    Nov 25 at 14:21










  • I got the template here: link. It is link #7, and it downloads an example as well @Kurt
    – ZekeJay
    Nov 25 at 15:35












  • The linked template does not always follow bes practices, so you should be careful - it might break at any time: The first(!) package it loads is hyperref, but hyperef should usually be loaded last. The .sty enforces ansinew encoding, when UTF-8 is the de fact standard today. Loading biblatex with hyperref=true is no better than the default hyperref=auto. The class sets parindent to 0, but sets no parskip. The class loads footmisc twice (with differing lists of options). ...
    – moewe
    Nov 25 at 15:52














  • 2




    You solution of putting names inside braces will cause you other problems and is not the right way to go about it. You want to change the appropriate name format to family-given. However, please update your question to provide a full minimal document example beginning with document{class} and ending with end{document} including one bibliography reference. See MWEB.
    – David Purton
    Nov 25 at 7:17










  • Edited. Thank you. It works well like that, so I don't know what is the mistake in the template @DavidPurton
    – ZekeJay
    Nov 25 at 13:09












  • Which template do you have to use? Can you give us a link to it?
    – Kurt
    Nov 25 at 14:21










  • I got the template here: link. It is link #7, and it downloads an example as well @Kurt
    – ZekeJay
    Nov 25 at 15:35












  • The linked template does not always follow bes practices, so you should be careful - it might break at any time: The first(!) package it loads is hyperref, but hyperef should usually be loaded last. The .sty enforces ansinew encoding, when UTF-8 is the de fact standard today. Loading biblatex with hyperref=true is no better than the default hyperref=auto. The class sets parindent to 0, but sets no parskip. The class loads footmisc twice (with differing lists of options). ...
    – moewe
    Nov 25 at 15:52








2




2




You solution of putting names inside braces will cause you other problems and is not the right way to go about it. You want to change the appropriate name format to family-given. However, please update your question to provide a full minimal document example beginning with document{class} and ending with end{document} including one bibliography reference. See MWEB.
– David Purton
Nov 25 at 7:17




You solution of putting names inside braces will cause you other problems and is not the right way to go about it. You want to change the appropriate name format to family-given. However, please update your question to provide a full minimal document example beginning with document{class} and ending with end{document} including one bibliography reference. See MWEB.
– David Purton
Nov 25 at 7:17












Edited. Thank you. It works well like that, so I don't know what is the mistake in the template @DavidPurton
– ZekeJay
Nov 25 at 13:09






Edited. Thank you. It works well like that, so I don't know what is the mistake in the template @DavidPurton
– ZekeJay
Nov 25 at 13:09














Which template do you have to use? Can you give us a link to it?
– Kurt
Nov 25 at 14:21




Which template do you have to use? Can you give us a link to it?
– Kurt
Nov 25 at 14:21












I got the template here: link. It is link #7, and it downloads an example as well @Kurt
– ZekeJay
Nov 25 at 15:35






I got the template here: link. It is link #7, and it downloads an example as well @Kurt
– ZekeJay
Nov 25 at 15:35














The linked template does not always follow bes practices, so you should be careful - it might break at any time: The first(!) package it loads is hyperref, but hyperef should usually be loaded last. The .sty enforces ansinew encoding, when UTF-8 is the de fact standard today. Loading biblatex with hyperref=true is no better than the default hyperref=auto. The class sets parindent to 0, but sets no parskip. The class loads footmisc twice (with differing lists of options). ...
– moewe
Nov 25 at 15:52




The linked template does not always follow bes practices, so you should be careful - it might break at any time: The first(!) package it loads is hyperref, but hyperef should usually be loaded last. The .sty enforces ansinew encoding, when UTF-8 is the de fact standard today. Loading biblatex with hyperref=true is no better than the default hyperref=auto. The class sets parindent to 0, but sets no parskip. The class loads footmisc twice (with differing lists of options). ...
– moewe
Nov 25 at 15:52










1 Answer
1






active

oldest

votes

















up vote
2
down vote













You can change the name format if you want to display the name in a different order. It is usually a bad idea to force a particular order with curly braces (unless we are talking about corporate authors: Using a 'corporate author' in the "author" field of a bibliographic entry (spelling out the name in full)). I would also avoid wiring the family name in all caps, there are automatic ways to change the format of the family name.



The name order in the bibliography is controlled by sortname, but in fullcite situations biblatex explicitly redefines sortname to use the default settings, this can be avoided by redefining cite:full and footcite:full (remove the DeclareNameAlias{sortname}{default} in the precode argument to usedriver).



All in all you probably want something like



documentclass[spanish]{article}
usepackage{babel}
usepackage{csquotes}
usepackage[url=false,
isbn=false,
backref=true,
style=verbose-note,
dashed=true,
maxcitenames=3,
maxbibnames=3,
backend=bibtex,
block=none]{biblatex}
addbibresource{jobname.bib}
usepackage{filecontents}

renewcommand*{mkbibnamefamily}[1]{textsc{#1}}% I can't bring myself to use ALL CAPS
DeclareNameAlias{sortname}{family-given}

renewbibmacro*{cite:full}{%
usebibmacro{cite:full:citepages}%
printtext[bibhypertarget]{%
usedriver
{}
{thefield{entrytype}}}%
usebibmacro{shorthandintro}}

renewbibmacro*{footcite:full}{%
usebibmacro{cite:full:citepages}%
printtext[bibhypertarget]{%
usedriver
{}
{thefield{entrytype}}}%
usebibmacro{shorthandintro}}

begin{filecontents}{jobname.bib}
@article{key,
author = {Chase, Stephen and Harrison, David and Rosenberg, Alex},
journal = {Mem. Amer. Math. Soc.},
title = {Galois theory and Galois cohomology of commutative rings},
year = {1965},
volume = {52},
pages = {1-19},
}
end{filecontents}

begin{document}
cite{key}

printbibliography
end{document}


Chase, Stephen, Harrison, David y Rosenberg, Alex. <<Galois theory and Galois cohomology of commutative rings>>. En: Mem. Amer. Math. Soc. 52 (1965), págs. 1-19






share|improve this answer





















    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',
    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
    });


    }
    });






    ZekeJay is a new contributor. Be nice, and check out our Code of Conduct.










    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461650%2ffootnote-citation%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








    up vote
    2
    down vote













    You can change the name format if you want to display the name in a different order. It is usually a bad idea to force a particular order with curly braces (unless we are talking about corporate authors: Using a 'corporate author' in the "author" field of a bibliographic entry (spelling out the name in full)). I would also avoid wiring the family name in all caps, there are automatic ways to change the format of the family name.



    The name order in the bibliography is controlled by sortname, but in fullcite situations biblatex explicitly redefines sortname to use the default settings, this can be avoided by redefining cite:full and footcite:full (remove the DeclareNameAlias{sortname}{default} in the precode argument to usedriver).



    All in all you probably want something like



    documentclass[spanish]{article}
    usepackage{babel}
    usepackage{csquotes}
    usepackage[url=false,
    isbn=false,
    backref=true,
    style=verbose-note,
    dashed=true,
    maxcitenames=3,
    maxbibnames=3,
    backend=bibtex,
    block=none]{biblatex}
    addbibresource{jobname.bib}
    usepackage{filecontents}

    renewcommand*{mkbibnamefamily}[1]{textsc{#1}}% I can't bring myself to use ALL CAPS
    DeclareNameAlias{sortname}{family-given}

    renewbibmacro*{cite:full}{%
    usebibmacro{cite:full:citepages}%
    printtext[bibhypertarget]{%
    usedriver
    {}
    {thefield{entrytype}}}%
    usebibmacro{shorthandintro}}

    renewbibmacro*{footcite:full}{%
    usebibmacro{cite:full:citepages}%
    printtext[bibhypertarget]{%
    usedriver
    {}
    {thefield{entrytype}}}%
    usebibmacro{shorthandintro}}

    begin{filecontents}{jobname.bib}
    @article{key,
    author = {Chase, Stephen and Harrison, David and Rosenberg, Alex},
    journal = {Mem. Amer. Math. Soc.},
    title = {Galois theory and Galois cohomology of commutative rings},
    year = {1965},
    volume = {52},
    pages = {1-19},
    }
    end{filecontents}

    begin{document}
    cite{key}

    printbibliography
    end{document}


    Chase, Stephen, Harrison, David y Rosenberg, Alex. <<Galois theory and Galois cohomology of commutative rings>>. En: Mem. Amer. Math. Soc. 52 (1965), págs. 1-19






    share|improve this answer

























      up vote
      2
      down vote













      You can change the name format if you want to display the name in a different order. It is usually a bad idea to force a particular order with curly braces (unless we are talking about corporate authors: Using a 'corporate author' in the "author" field of a bibliographic entry (spelling out the name in full)). I would also avoid wiring the family name in all caps, there are automatic ways to change the format of the family name.



      The name order in the bibliography is controlled by sortname, but in fullcite situations biblatex explicitly redefines sortname to use the default settings, this can be avoided by redefining cite:full and footcite:full (remove the DeclareNameAlias{sortname}{default} in the precode argument to usedriver).



      All in all you probably want something like



      documentclass[spanish]{article}
      usepackage{babel}
      usepackage{csquotes}
      usepackage[url=false,
      isbn=false,
      backref=true,
      style=verbose-note,
      dashed=true,
      maxcitenames=3,
      maxbibnames=3,
      backend=bibtex,
      block=none]{biblatex}
      addbibresource{jobname.bib}
      usepackage{filecontents}

      renewcommand*{mkbibnamefamily}[1]{textsc{#1}}% I can't bring myself to use ALL CAPS
      DeclareNameAlias{sortname}{family-given}

      renewbibmacro*{cite:full}{%
      usebibmacro{cite:full:citepages}%
      printtext[bibhypertarget]{%
      usedriver
      {}
      {thefield{entrytype}}}%
      usebibmacro{shorthandintro}}

      renewbibmacro*{footcite:full}{%
      usebibmacro{cite:full:citepages}%
      printtext[bibhypertarget]{%
      usedriver
      {}
      {thefield{entrytype}}}%
      usebibmacro{shorthandintro}}

      begin{filecontents}{jobname.bib}
      @article{key,
      author = {Chase, Stephen and Harrison, David and Rosenberg, Alex},
      journal = {Mem. Amer. Math. Soc.},
      title = {Galois theory and Galois cohomology of commutative rings},
      year = {1965},
      volume = {52},
      pages = {1-19},
      }
      end{filecontents}

      begin{document}
      cite{key}

      printbibliography
      end{document}


      Chase, Stephen, Harrison, David y Rosenberg, Alex. <<Galois theory and Galois cohomology of commutative rings>>. En: Mem. Amer. Math. Soc. 52 (1965), págs. 1-19






      share|improve this answer























        up vote
        2
        down vote










        up vote
        2
        down vote









        You can change the name format if you want to display the name in a different order. It is usually a bad idea to force a particular order with curly braces (unless we are talking about corporate authors: Using a 'corporate author' in the "author" field of a bibliographic entry (spelling out the name in full)). I would also avoid wiring the family name in all caps, there are automatic ways to change the format of the family name.



        The name order in the bibliography is controlled by sortname, but in fullcite situations biblatex explicitly redefines sortname to use the default settings, this can be avoided by redefining cite:full and footcite:full (remove the DeclareNameAlias{sortname}{default} in the precode argument to usedriver).



        All in all you probably want something like



        documentclass[spanish]{article}
        usepackage{babel}
        usepackage{csquotes}
        usepackage[url=false,
        isbn=false,
        backref=true,
        style=verbose-note,
        dashed=true,
        maxcitenames=3,
        maxbibnames=3,
        backend=bibtex,
        block=none]{biblatex}
        addbibresource{jobname.bib}
        usepackage{filecontents}

        renewcommand*{mkbibnamefamily}[1]{textsc{#1}}% I can't bring myself to use ALL CAPS
        DeclareNameAlias{sortname}{family-given}

        renewbibmacro*{cite:full}{%
        usebibmacro{cite:full:citepages}%
        printtext[bibhypertarget]{%
        usedriver
        {}
        {thefield{entrytype}}}%
        usebibmacro{shorthandintro}}

        renewbibmacro*{footcite:full}{%
        usebibmacro{cite:full:citepages}%
        printtext[bibhypertarget]{%
        usedriver
        {}
        {thefield{entrytype}}}%
        usebibmacro{shorthandintro}}

        begin{filecontents}{jobname.bib}
        @article{key,
        author = {Chase, Stephen and Harrison, David and Rosenberg, Alex},
        journal = {Mem. Amer. Math. Soc.},
        title = {Galois theory and Galois cohomology of commutative rings},
        year = {1965},
        volume = {52},
        pages = {1-19},
        }
        end{filecontents}

        begin{document}
        cite{key}

        printbibliography
        end{document}


        Chase, Stephen, Harrison, David y Rosenberg, Alex. <<Galois theory and Galois cohomology of commutative rings>>. En: Mem. Amer. Math. Soc. 52 (1965), págs. 1-19






        share|improve this answer












        You can change the name format if you want to display the name in a different order. It is usually a bad idea to force a particular order with curly braces (unless we are talking about corporate authors: Using a 'corporate author' in the "author" field of a bibliographic entry (spelling out the name in full)). I would also avoid wiring the family name in all caps, there are automatic ways to change the format of the family name.



        The name order in the bibliography is controlled by sortname, but in fullcite situations biblatex explicitly redefines sortname to use the default settings, this can be avoided by redefining cite:full and footcite:full (remove the DeclareNameAlias{sortname}{default} in the precode argument to usedriver).



        All in all you probably want something like



        documentclass[spanish]{article}
        usepackage{babel}
        usepackage{csquotes}
        usepackage[url=false,
        isbn=false,
        backref=true,
        style=verbose-note,
        dashed=true,
        maxcitenames=3,
        maxbibnames=3,
        backend=bibtex,
        block=none]{biblatex}
        addbibresource{jobname.bib}
        usepackage{filecontents}

        renewcommand*{mkbibnamefamily}[1]{textsc{#1}}% I can't bring myself to use ALL CAPS
        DeclareNameAlias{sortname}{family-given}

        renewbibmacro*{cite:full}{%
        usebibmacro{cite:full:citepages}%
        printtext[bibhypertarget]{%
        usedriver
        {}
        {thefield{entrytype}}}%
        usebibmacro{shorthandintro}}

        renewbibmacro*{footcite:full}{%
        usebibmacro{cite:full:citepages}%
        printtext[bibhypertarget]{%
        usedriver
        {}
        {thefield{entrytype}}}%
        usebibmacro{shorthandintro}}

        begin{filecontents}{jobname.bib}
        @article{key,
        author = {Chase, Stephen and Harrison, David and Rosenberg, Alex},
        journal = {Mem. Amer. Math. Soc.},
        title = {Galois theory and Galois cohomology of commutative rings},
        year = {1965},
        volume = {52},
        pages = {1-19},
        }
        end{filecontents}

        begin{document}
        cite{key}

        printbibliography
        end{document}


        Chase, Stephen, Harrison, David y Rosenberg, Alex. <<Galois theory and Galois cohomology of commutative rings>>. En: Mem. Amer. Math. Soc. 52 (1965), págs. 1-19







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 25 at 15:40









        moewe

        83.5k8107321




        83.5k8107321






















            ZekeJay is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            ZekeJay is a new contributor. Be nice, and check out our Code of Conduct.













            ZekeJay is a new contributor. Be nice, and check out our Code of Conduct.












            ZekeJay is a new contributor. Be nice, and check out our Code of Conduct.
















            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461650%2ffootnote-citation%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            How to change which sound is reproduced for terminal bell?

            Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

            Can I use Tabulator js library in my java Spring + Thymeleaf project?