Is there a way of using changebars with XeLaTeX?
Is there any way of using the changebars
package with XeLaTeX?
The current release of changebars
doesn't support a xetex
option. Almost three years ago there was a discussion on comp.text.tex about a patch to the package to support XeTeX, but nothing seems to have come of it; there was a similar question on the xetex mailing list last year, which seems to have gone unanswered.
Is there a recommended alternative to the changebars
package which works with XeTeX, or any samizdat patches to it floating around?
xetex
add a comment |
Is there any way of using the changebars
package with XeLaTeX?
The current release of changebars
doesn't support a xetex
option. Almost three years ago there was a discussion on comp.text.tex about a patch to the package to support XeTeX, but nothing seems to have come of it; there was a similar question on the xetex mailing list last year, which seems to have gone unanswered.
Is there a recommended alternative to the changebars
package which works with XeTeX, or any samizdat patches to it floating around?
xetex
add a comment |
Is there any way of using the changebars
package with XeLaTeX?
The current release of changebars
doesn't support a xetex
option. Almost three years ago there was a discussion on comp.text.tex about a patch to the package to support XeTeX, but nothing seems to have come of it; there was a similar question on the xetex mailing list last year, which seems to have gone unanswered.
Is there a recommended alternative to the changebars
package which works with XeTeX, or any samizdat patches to it floating around?
xetex
Is there any way of using the changebars
package with XeLaTeX?
The current release of changebars
doesn't support a xetex
option. Almost three years ago there was a discussion on comp.text.tex about a patch to the package to support XeTeX, but nothing seems to have come of it; there was a similar question on the xetex mailing list last year, which seems to have gone unanswered.
Is there a recommended alternative to the changebars
package which works with XeTeX, or any samizdat patches to it floating around?
xetex
xetex
asked Nov 12 '12 at 12:55
Norman GrayNorman Gray
5,58611929
5,58611929
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Regrettably, changebar
uses its own driver code and doesn't have any for dvipdfm
or related drivers, which includes xdvipdfmx
, used by XeTeX. As such, the answer here is 'no'.
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
add a comment |
You can achieve a similar effect using the mdframed
package:
documentclass{article}
setlength{parindent}{0sp}
usepackage{mdframed}
newmdenv[
topline=false,
bottomline=false,
rightline=false,
leftmargin=-11pt,
linewidth=1pt
]{changebars}
begin{document}
In London, also, on Saturday night there was a thunderstorm, and my brother reached Waterloo in a cab.
begin{changebars}
On the platform from which the midnight train usually starts he learned, after some waiting, that an accident prevented trains from reaching Woking that night.
end{changebars}
The nature of the accident he could not ascertain; indeed, the railway authorities did not clearly know at that time.
end{document}
Result:
add a comment |
- As of today, Dec 31, 2018, the changebar package now supports a
xetex
driver - Prior to this (and after the time the last few answers here were posted), a dedicated package for this very same purpose
xechangebar
was available.
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%2f82406%2fis-there-a-way-of-using-changebars-with-xelatex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Regrettably, changebar
uses its own driver code and doesn't have any for dvipdfm
or related drivers, which includes xdvipdfmx
, used by XeTeX. As such, the answer here is 'no'.
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
add a comment |
Regrettably, changebar
uses its own driver code and doesn't have any for dvipdfm
or related drivers, which includes xdvipdfmx
, used by XeTeX. As such, the answer here is 'no'.
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
add a comment |
Regrettably, changebar
uses its own driver code and doesn't have any for dvipdfm
or related drivers, which includes xdvipdfmx
, used by XeTeX. As such, the answer here is 'no'.
Regrettably, changebar
uses its own driver code and doesn't have any for dvipdfm
or related drivers, which includes xdvipdfmx
, used by XeTeX. As such, the answer here is 'no'.
answered Aug 4 '13 at 16:06
Joseph Wright♦Joseph Wright
202k21555882
202k21555882
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
add a comment |
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
Has anyone incorporated the changes from Rocky Zhang mentioned at groups.google.com/forum/#!topic/comp.text.tex/867CO2Sj0dQ If not, where could one access his patch?
– chandra
Jul 22 '14 at 15:25
add a comment |
You can achieve a similar effect using the mdframed
package:
documentclass{article}
setlength{parindent}{0sp}
usepackage{mdframed}
newmdenv[
topline=false,
bottomline=false,
rightline=false,
leftmargin=-11pt,
linewidth=1pt
]{changebars}
begin{document}
In London, also, on Saturday night there was a thunderstorm, and my brother reached Waterloo in a cab.
begin{changebars}
On the platform from which the midnight train usually starts he learned, after some waiting, that an accident prevented trains from reaching Woking that night.
end{changebars}
The nature of the accident he could not ascertain; indeed, the railway authorities did not clearly know at that time.
end{document}
Result:
add a comment |
You can achieve a similar effect using the mdframed
package:
documentclass{article}
setlength{parindent}{0sp}
usepackage{mdframed}
newmdenv[
topline=false,
bottomline=false,
rightline=false,
leftmargin=-11pt,
linewidth=1pt
]{changebars}
begin{document}
In London, also, on Saturday night there was a thunderstorm, and my brother reached Waterloo in a cab.
begin{changebars}
On the platform from which the midnight train usually starts he learned, after some waiting, that an accident prevented trains from reaching Woking that night.
end{changebars}
The nature of the accident he could not ascertain; indeed, the railway authorities did not clearly know at that time.
end{document}
Result:
add a comment |
You can achieve a similar effect using the mdframed
package:
documentclass{article}
setlength{parindent}{0sp}
usepackage{mdframed}
newmdenv[
topline=false,
bottomline=false,
rightline=false,
leftmargin=-11pt,
linewidth=1pt
]{changebars}
begin{document}
In London, also, on Saturday night there was a thunderstorm, and my brother reached Waterloo in a cab.
begin{changebars}
On the platform from which the midnight train usually starts he learned, after some waiting, that an accident prevented trains from reaching Woking that night.
end{changebars}
The nature of the accident he could not ascertain; indeed, the railway authorities did not clearly know at that time.
end{document}
Result:
You can achieve a similar effect using the mdframed
package:
documentclass{article}
setlength{parindent}{0sp}
usepackage{mdframed}
newmdenv[
topline=false,
bottomline=false,
rightline=false,
leftmargin=-11pt,
linewidth=1pt
]{changebars}
begin{document}
In London, also, on Saturday night there was a thunderstorm, and my brother reached Waterloo in a cab.
begin{changebars}
On the platform from which the midnight train usually starts he learned, after some waiting, that an accident prevented trains from reaching Woking that night.
end{changebars}
The nature of the accident he could not ascertain; indeed, the railway authorities did not clearly know at that time.
end{document}
Result:
answered Jan 25 '15 at 2:54
AndreKRAndreKR
4051315
4051315
add a comment |
add a comment |
- As of today, Dec 31, 2018, the changebar package now supports a
xetex
driver - Prior to this (and after the time the last few answers here were posted), a dedicated package for this very same purpose
xechangebar
was available.
add a comment |
- As of today, Dec 31, 2018, the changebar package now supports a
xetex
driver - Prior to this (and after the time the last few answers here were posted), a dedicated package for this very same purpose
xechangebar
was available.
add a comment |
- As of today, Dec 31, 2018, the changebar package now supports a
xetex
driver - Prior to this (and after the time the last few answers here were posted), a dedicated package for this very same purpose
xechangebar
was available.
- As of today, Dec 31, 2018, the changebar package now supports a
xetex
driver - Prior to this (and after the time the last few answers here were posted), a dedicated package for this very same purpose
xechangebar
was available.
answered Dec 31 '18 at 18:08
KrishnaKrishna
956618
956618
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.
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.
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%2f82406%2fis-there-a-way-of-using-changebars-with-xelatex%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