figref with subfigure and paranthesesProblem with subfigureLong subfigure referencesProblem with...
Calculating Hyperbolic Sin faster than using a standard power series
VAT refund for a conference ticket in Sweden
Get length of the longest sequence of numbers with the same sign
Real life puzzle: Unknown alphabet or shorthand
Can we carry rice to Japan?
Why are special aircraft used for the carriers in the United States Navy?
What does @RC mean in SSDT SQL Server Unit Testing?
When was drinking water recognized as crucial in marathon running?
Dystopian novel where telepathic humans live under a dome
Where is the fallacy here?
Can throughput exceed the bandwidth of a network
Skis versus snow shoes - when to choose which for travelling the backcountry?
Giving a talk in my old university, how prominently should I tell students my salary?
How can I be pwned if I'm not registered on the compromised site?
Is the withholding of funding notice allowed?
School performs periodic password audits. Is my password compromised?
Why is working on the same position for more than 15 years not a red flag?
Borrowing Characters
How can I handle a player who pre-plans arguments about my rulings on RAW?
Difference between 'stomach' and 'uterus'
What am I? I am in theaters and computer programs
At what level can a party fight a mimic?
Sometimes a banana is just a banana
Don't know what I’m looking for regarding removable HDDs?
figref with subfigure and parantheses
Problem with subfigureLong subfigure referencesProblem with SubfigureError with subfigure and TikZError with positioning subfigureHow to adjust subfigure caption width?Arrange landscape and portrait image in a subfigure using latexAlign figure and tables in subfigure environmentCaption of subfigure is not centeringUsing deprecated subfigure package and succeeding subfig package in parallel
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
add a comment |
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
You can useref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.
– John Kormylo
1 hour ago
add a comment |
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
I use IEEEtran with subfigure and figref.
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{foo}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{bar}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
When I use which is shown in subref{fig:test-foo}.
I get:
which is shown in Fig. 16a.
However, I want to see
which is shown in Fig. 16(a).
I have tried everything I could find, including variations of
usepackage[subrefformat=parens,labelformat=parens]{subfig}
and
renewcommand{thesubfigure}{(alph{subfigure})}
The options in the first don't seem to have any effect with figref
. When I use renewcommand
, figref
works but the captions in the figure itself get double parantheses, e.g. ((a)) Foo.
cross-referencing subfloats subfig
cross-referencing subfloats subfig
edited 2 mins ago
AndréC
9,69311547
9,69311547
asked 3 hours ago
divBdivB
1184
1184
You can useref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.
– John Kormylo
1 hour ago
add a comment |
You can useref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.
– John Kormylo
1 hour ago
You can use
ref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.– John Kormylo
1 hour ago
You can use
ref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.– John Kormylo
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
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');
});
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%2f477957%2ffigref-with-subfigure-and-parantheses%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
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
add a comment |
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
add a comment |
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
According to the documentation of subfig
(table 3 page 17), you should use the listofformat=parens
option:
documentclass{IEEEtran}
usepackage{graphicx}
usepackage[listofformat=parens]{subfig}
begin{document}
begin{figure}
centering
subfloat[Foo.label{fig:test-foo}]{includegraphics[width=0.4textwidth]{example-image-a}} \
subfloat[Bar.label{fig:test-bar}]{includegraphics[width=0.4textwidth]{example-image-b}}
caption{Foo and Bar.}
label{fig:test}
end{figure}
ldots which is shown in subref{fig:test-foo}
end{document}
answered 30 mins ago
JPGJPG
1,077310
1,077310
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');
});
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%2f477957%2ffigref-with-subfigure-and-parantheses%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');
});
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');
});
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');
});
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
You can use
ref{fig:test}subref{fig:test-foo}
. I've been searching through subfig code to see where the sub@label format is defined, but no joy so far. I did findcaptionsetup[subrefformat=subsimple]
in the subfig code, but that would require loading the subcaption package, making subfig redundant.– John Kormylo
1 hour ago