Doc-Start appearing when using xr packageCreate a list of beamer slideslatex beamer appendix...
Is "history" a male-biased word ("his+story")?
Playing ONE triplet (not three)
What to do when during a meeting client people start to fight (even physically) with each others?
Plywood subfloor won't screw down in a trailer home
How could a female member of a species produce eggs unto death?
what does the apostrophe mean in this notation?
Do f-stop and exposure time perfectly cancel?
Do I need to leave some extra space available on the disk which my database log files reside, for log backup operations to successfully occur?
Making a sword in the stone, in a medieval world without magic
Single word request: Harming the benefactor
What is the blue range indicating on this manifold pressure gauge?
What is the difference between "shut" and "close"?
What happens with multiple copies of Humility and Glorious Anthem on the battlefield?
Question about partial fractions with irreducible quadratic factors
Does splitting a potentially monolithic application into several smaller ones help prevent bugs?
Good allowance savings plan?
How to make readers know that my work has used a hidden constraint?
Best approach to update all entries in a list that is paginated?
A curious inequality concerning binomial coefficients
How to discourage/prevent PCs from using door choke-points?
How is the Swiss post e-voting system supposed to work, and how was it wrong?
What is the definition of "Natural Selection"?
Potentiometer like component
Is it ok to include an epilogue dedicated to colleagues who passed away in the end of the manuscript?
Doc-Start appearing when using xr package
Create a list of beamer slideslatex beamer appendix numberingNumerical conditional within tikz keys?Biblatex: footnote citations. Two references to footnote in same slideInsert second slide with Lyx and BeamerWants all the references at the end of beamer slidesBeamer: handout/article mode - produce multiple copies of a frame with distinct overlay numbersBeamer: problem with redefining the framesLaTeX beamer: pagenumbering appendixbeamer: allowframebreaks option and vertical spacing when using lists (itemize, enumerate, …)
I am trying to write up an article that uses the xr package (or maybe it needs to be zref) to reference labels in two different documents: an article and a beamer presentation. The references from the other article work perfectly, it is the beamer references that show up as
Slide 1Doc-Start.
Where 1 is the frame number which I am trying to reference. Looking at the aux file produced by beamer the entry is
newlabel{posvnorm}{{1}{1}{}{Doc-Start}{}}
If I manually delete Doc-Start from the aux file, the final output is what I desire. So if there is a way to write the label so "Doc-Start" isn't included, or suppressed when calling the label, I should be good to go. A a heads up, there will be multiple references to difference beamer slides in the main article.
Code for the main article:
documentclass[11pt]{article}
usepackage{xr}
externaldocument{../Folder1/mwe_article}
externaldocument{../Folder2/mwe_beamer}
begin{document}
Slide ref{posvnorm}
Article ref{pos} and ref{norm}
end{document}
Code for the beamer slides
documentclass{beamer}
usetheme{Boadilla}
usecolortheme{beaver}
begin{document}
begin{frame} label{posvnorm}
frametitle{Title}
Words go here
end{frame}
end{document}
Code for the article being referenced
documentclass[11pt]{article}
begin{document}
begin{enumerate}
item Blah label{pos}
item Blarg label{norm}
end{enumerate}
end{document}
beamer ref xr zref
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I am trying to write up an article that uses the xr package (or maybe it needs to be zref) to reference labels in two different documents: an article and a beamer presentation. The references from the other article work perfectly, it is the beamer references that show up as
Slide 1Doc-Start.
Where 1 is the frame number which I am trying to reference. Looking at the aux file produced by beamer the entry is
newlabel{posvnorm}{{1}{1}{}{Doc-Start}{}}
If I manually delete Doc-Start from the aux file, the final output is what I desire. So if there is a way to write the label so "Doc-Start" isn't included, or suppressed when calling the label, I should be good to go. A a heads up, there will be multiple references to difference beamer slides in the main article.
Code for the main article:
documentclass[11pt]{article}
usepackage{xr}
externaldocument{../Folder1/mwe_article}
externaldocument{../Folder2/mwe_beamer}
begin{document}
Slide ref{posvnorm}
Article ref{pos} and ref{norm}
end{document}
Code for the beamer slides
documentclass{beamer}
usetheme{Boadilla}
usecolortheme{beaver}
begin{document}
begin{frame} label{posvnorm}
frametitle{Title}
Words go here
end{frame}
end{document}
Code for the article being referenced
documentclass[11pt]{article}
begin{document}
begin{enumerate}
item Blah label{pos}
item Blarg label{norm}
end{enumerate}
end{document}
beamer ref xr zref
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Welcome to TeX.SE.
– Sebastiano
7 mins ago
add a comment |
I am trying to write up an article that uses the xr package (or maybe it needs to be zref) to reference labels in two different documents: an article and a beamer presentation. The references from the other article work perfectly, it is the beamer references that show up as
Slide 1Doc-Start.
Where 1 is the frame number which I am trying to reference. Looking at the aux file produced by beamer the entry is
newlabel{posvnorm}{{1}{1}{}{Doc-Start}{}}
If I manually delete Doc-Start from the aux file, the final output is what I desire. So if there is a way to write the label so "Doc-Start" isn't included, or suppressed when calling the label, I should be good to go. A a heads up, there will be multiple references to difference beamer slides in the main article.
Code for the main article:
documentclass[11pt]{article}
usepackage{xr}
externaldocument{../Folder1/mwe_article}
externaldocument{../Folder2/mwe_beamer}
begin{document}
Slide ref{posvnorm}
Article ref{pos} and ref{norm}
end{document}
Code for the beamer slides
documentclass{beamer}
usetheme{Boadilla}
usecolortheme{beaver}
begin{document}
begin{frame} label{posvnorm}
frametitle{Title}
Words go here
end{frame}
end{document}
Code for the article being referenced
documentclass[11pt]{article}
begin{document}
begin{enumerate}
item Blah label{pos}
item Blarg label{norm}
end{enumerate}
end{document}
beamer ref xr zref
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am trying to write up an article that uses the xr package (or maybe it needs to be zref) to reference labels in two different documents: an article and a beamer presentation. The references from the other article work perfectly, it is the beamer references that show up as
Slide 1Doc-Start.
Where 1 is the frame number which I am trying to reference. Looking at the aux file produced by beamer the entry is
newlabel{posvnorm}{{1}{1}{}{Doc-Start}{}}
If I manually delete Doc-Start from the aux file, the final output is what I desire. So if there is a way to write the label so "Doc-Start" isn't included, or suppressed when calling the label, I should be good to go. A a heads up, there will be multiple references to difference beamer slides in the main article.
Code for the main article:
documentclass[11pt]{article}
usepackage{xr}
externaldocument{../Folder1/mwe_article}
externaldocument{../Folder2/mwe_beamer}
begin{document}
Slide ref{posvnorm}
Article ref{pos} and ref{norm}
end{document}
Code for the beamer slides
documentclass{beamer}
usetheme{Boadilla}
usecolortheme{beaver}
begin{document}
begin{frame} label{posvnorm}
frametitle{Title}
Words go here
end{frame}
end{document}
Code for the article being referenced
documentclass[11pt]{article}
begin{document}
begin{enumerate}
item Blah label{pos}
item Blarg label{norm}
end{enumerate}
end{document}
beamer ref xr zref
beamer ref xr zref
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 7 mins ago
Ryan LeeRyan Lee
1
1
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Ryan Lee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Welcome to TeX.SE.
– Sebastiano
7 mins ago
add a comment |
Welcome to TeX.SE.
– Sebastiano
7 mins ago
Welcome to TeX.SE.
– Sebastiano
7 mins ago
Welcome to TeX.SE.
– Sebastiano
7 mins ago
add a comment |
0
active
oldest
votes
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
});
}
});
Ryan Lee is a new contributor. Be nice, and check out our Code of Conduct.
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%2f479369%2fdoc-start-appearing-when-using-xr-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ryan Lee is a new contributor. Be nice, and check out our Code of Conduct.
Ryan Lee is a new contributor. Be nice, and check out our Code of Conduct.
Ryan Lee is a new contributor. Be nice, and check out our Code of Conduct.
Ryan Lee 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.
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%2f479369%2fdoc-start-appearing-when-using-xr-package%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
Welcome to TeX.SE.
– Sebastiano
7 mins ago