Quotations in math mode using enquote command from csquotes package












5














I'm using the enquote command from the csquotes package for setting quotes.



When I invoke quotations inside math mode,

either by hand



``<some math>''


or by enquote



enquote{<some math>}


it renders differently than in text mode.



Here's an example:



Quotes Math Mode



Can someone explain why this behavior occurs?



For adjusting the quotation marks by hand, I found this workaround by egreg.



How can I adjust the quotation marks invoked by enquote in math mode?



Here's a MWE, the one from above:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}









share|improve this question






















  • enquote{$formula$} rather than $enquote{formula}$, unless your quotes are part of the math. Are they?
    – egreg
    Dec 12 '18 at 17:29










  • Problem is I have it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:30


















5














I'm using the enquote command from the csquotes package for setting quotes.



When I invoke quotations inside math mode,

either by hand



``<some math>''


or by enquote



enquote{<some math>}


it renders differently than in text mode.



Here's an example:



Quotes Math Mode



Can someone explain why this behavior occurs?



For adjusting the quotation marks by hand, I found this workaround by egreg.



How can I adjust the quotation marks invoked by enquote in math mode?



Here's a MWE, the one from above:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}









share|improve this question






















  • enquote{$formula$} rather than $enquote{formula}$, unless your quotes are part of the math. Are they?
    – egreg
    Dec 12 '18 at 17:29










  • Problem is I have it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:30
















5












5








5







I'm using the enquote command from the csquotes package for setting quotes.



When I invoke quotations inside math mode,

either by hand



``<some math>''


or by enquote



enquote{<some math>}


it renders differently than in text mode.



Here's an example:



Quotes Math Mode



Can someone explain why this behavior occurs?



For adjusting the quotation marks by hand, I found this workaround by egreg.



How can I adjust the quotation marks invoked by enquote in math mode?



Here's a MWE, the one from above:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}









share|improve this question













I'm using the enquote command from the csquotes package for setting quotes.



When I invoke quotations inside math mode,

either by hand



``<some math>''


or by enquote



enquote{<some math>}


it renders differently than in text mode.



Here's an example:



Quotes Math Mode



Can someone explain why this behavior occurs?



For adjusting the quotation marks by hand, I found this workaround by egreg.



How can I adjust the quotation marks invoked by enquote in math mode?



Here's a MWE, the one from above:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}






math-mode quoting csquotes






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 12 '18 at 17:25









C-Star-Puppy

28219




28219












  • enquote{$formula$} rather than $enquote{formula}$, unless your quotes are part of the math. Are they?
    – egreg
    Dec 12 '18 at 17:29










  • Problem is I have it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:30




















  • enquote{$formula$} rather than $enquote{formula}$, unless your quotes are part of the math. Are they?
    – egreg
    Dec 12 '18 at 17:29










  • Problem is I have it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:30


















enquote{$formula$} rather than $enquote{formula}$, unless your quotes are part of the math. Are they?
– egreg
Dec 12 '18 at 17:29




enquote{$formula$} rather than $enquote{formula}$, unless your quotes are part of the math. Are they?
– egreg
Dec 12 '18 at 17:29












Problem is I have it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:30






Problem is I have it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:30












2 Answers
2






active

oldest

votes


















6














LaTeX issues one error and two warnings:



! Double superscript.
<recently read> ^

l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?

LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.

LaTeX Warning: Command textquotedblright invalid in math mode on input line 15


Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft in math mode produces a backslash, whereas textquotedblright actually produces a closing double quote.



The error is because ' in math mode is interpreted as ^{prime}, so c^2' indeed has a double superscript (the converse c'^2 is instead legal, as is c''^2).



If you want to quote something in math mode, you should use math symbols.



documentclass{article}

DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}

begin{document}

$dotsmlqdotsmrqdots$

end{document}


enter image description here






share|improve this answer





















  • Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
    – C-Star-Puppy
    Dec 12 '18 at 17:48












  • Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
    – C-Star-Puppy
    Dec 12 '18 at 17:57





















1














You have answered yourself: the quotes should be in the text mode:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\

%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}


enter image description here






share|improve this answer























  • Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:33












  • ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:34












  • Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
    – C-Star-Puppy
    Dec 12 '18 at 17:37












  • If you use amsmath, you have a simple construction textenquote{$...$}}.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:40










  • Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
    – C-Star-Puppy
    Dec 12 '18 at 17:41













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


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464563%2fquotations-in-math-mode-using-enquote-command-from-csquotes-package%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









6














LaTeX issues one error and two warnings:



! Double superscript.
<recently read> ^

l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?

LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.

LaTeX Warning: Command textquotedblright invalid in math mode on input line 15


Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft in math mode produces a backslash, whereas textquotedblright actually produces a closing double quote.



The error is because ' in math mode is interpreted as ^{prime}, so c^2' indeed has a double superscript (the converse c'^2 is instead legal, as is c''^2).



If you want to quote something in math mode, you should use math symbols.



documentclass{article}

DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}

begin{document}

$dotsmlqdotsmrqdots$

end{document}


enter image description here






share|improve this answer





















  • Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
    – C-Star-Puppy
    Dec 12 '18 at 17:48












  • Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
    – C-Star-Puppy
    Dec 12 '18 at 17:57


















6














LaTeX issues one error and two warnings:



! Double superscript.
<recently read> ^

l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?

LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.

LaTeX Warning: Command textquotedblright invalid in math mode on input line 15


Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft in math mode produces a backslash, whereas textquotedblright actually produces a closing double quote.



The error is because ' in math mode is interpreted as ^{prime}, so c^2' indeed has a double superscript (the converse c'^2 is instead legal, as is c''^2).



If you want to quote something in math mode, you should use math symbols.



documentclass{article}

DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}

begin{document}

$dotsmlqdotsmrqdots$

end{document}


enter image description here






share|improve this answer





















  • Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
    – C-Star-Puppy
    Dec 12 '18 at 17:48












  • Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
    – C-Star-Puppy
    Dec 12 '18 at 17:57
















6












6








6






LaTeX issues one error and two warnings:



! Double superscript.
<recently read> ^

l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?

LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.

LaTeX Warning: Command textquotedblright invalid in math mode on input line 15


Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft in math mode produces a backslash, whereas textquotedblright actually produces a closing double quote.



The error is because ' in math mode is interpreted as ^{prime}, so c^2' indeed has a double superscript (the converse c'^2 is instead legal, as is c''^2).



If you want to quote something in math mode, you should use math symbols.



documentclass{article}

DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}

begin{document}

$dotsmlqdotsmrqdots$

end{document}


enter image description here






share|improve this answer












LaTeX issues one error and two warnings:



! Double superscript.
<recently read> ^

l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?

LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.

LaTeX Warning: Command textquotedblright invalid in math mode on input line 15


Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft in math mode produces a backslash, whereas textquotedblright actually produces a closing double quote.



The error is because ' in math mode is interpreted as ^{prime}, so c^2' indeed has a double superscript (the converse c'^2 is instead legal, as is c''^2).



If you want to quote something in math mode, you should use math symbols.



documentclass{article}

DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}

begin{document}

$dotsmlqdotsmrqdots$

end{document}


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 12 '18 at 17:41









egreg

709k8618823165




709k8618823165












  • Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
    – C-Star-Puppy
    Dec 12 '18 at 17:48












  • Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
    – C-Star-Puppy
    Dec 12 '18 at 17:57




















  • Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
    – C-Star-Puppy
    Dec 12 '18 at 17:48












  • Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
    – C-Star-Puppy
    Dec 12 '18 at 17:57


















Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48






Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as -interaction=batchmode with -file-line-error only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48














Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57






Thanks, the integration worked perfectly with your solution and defining newcommand{mathenquote}[1]{mlq #1mrq}. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57













1














You have answered yourself: the quotes should be in the text mode:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\

%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}


enter image description here






share|improve this answer























  • Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:33












  • ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:34












  • Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
    – C-Star-Puppy
    Dec 12 '18 at 17:37












  • If you use amsmath, you have a simple construction textenquote{$...$}}.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:40










  • Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
    – C-Star-Puppy
    Dec 12 '18 at 17:41


















1














You have answered yourself: the quotes should be in the text mode:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\

%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}


enter image description here






share|improve this answer























  • Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:33












  • ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:34












  • Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
    – C-Star-Puppy
    Dec 12 '18 at 17:37












  • If you use amsmath, you have a simple construction textenquote{$...$}}.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:40










  • Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
    – C-Star-Puppy
    Dec 12 '18 at 17:41
















1












1








1






You have answered yourself: the quotes should be in the text mode:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\

%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}


enter image description here






share|improve this answer














You have answered yourself: the quotes should be in the text mode:



documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}

In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\

%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 12 '18 at 17:35

























answered Dec 12 '18 at 17:31









Przemysław Scherwentke

29.6k54594




29.6k54594












  • Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:33












  • ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:34












  • Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
    – C-Star-Puppy
    Dec 12 '18 at 17:37












  • If you use amsmath, you have a simple construction textenquote{$...$}}.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:40










  • Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
    – C-Star-Puppy
    Dec 12 '18 at 17:41




















  • Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
    – C-Star-Puppy
    Dec 12 '18 at 17:33












  • ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:34












  • Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
    – C-Star-Puppy
    Dec 12 '18 at 17:37












  • If you use amsmath, you have a simple construction textenquote{$...$}}.
    – Przemysław Scherwentke
    Dec 12 '18 at 17:40










  • Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
    – C-Star-Puppy
    Dec 12 '18 at 17:41


















Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33






Problem is that I need it as something like $ldots enquote{ldots} ldots$. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33














ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34






ldots work(s) also in the text mode. So ldots enquote{ldots} ldots will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34














Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37






Sorry, should have written $<some formulas> enquote{<formula>} <more formulas>$ and under different circumstances like labels in tikzcd and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37














If you use amsmath, you have a simple construction textenquote{$...$}}.
– Przemysław Scherwentke
Dec 12 '18 at 17:40




If you use amsmath, you have a simple construction textenquote{$...$}}.
– Przemysław Scherwentke
Dec 12 '18 at 17:40












Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41






Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41




















draft saved

draft discarded




















































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%2f464563%2fquotations-in-math-mode-using-enquote-command-from-csquotes-package%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

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?