How to get this fancier line to divide paragraphs?
Here I found lecture notes in which the author uses the following symbol when a certain thought is finished but no new chapter or similar follows.
Since the user doesn't share his source I code I wondered if
there is a package or good way to produce this symbol or if the standard method is just to insert this symbol as a picture when necessary.
symbols sections-paragraphs
add a comment |
Here I found lecture notes in which the author uses the following symbol when a certain thought is finished but no new chapter or similar follows.
Since the user doesn't share his source I code I wondered if
there is a package or good way to produce this symbol or if the standard method is just to insert this symbol as a picture when necessary.
symbols sections-paragraphs
add a comment |
Here I found lecture notes in which the author uses the following symbol when a certain thought is finished but no new chapter or similar follows.
Since the user doesn't share his source I code I wondered if
there is a package or good way to produce this symbol or if the standard method is just to insert this symbol as a picture when necessary.
symbols sections-paragraphs
Here I found lecture notes in which the author uses the following symbol when a certain thought is finished but no new chapter or similar follows.
Since the user doesn't share his source I code I wondered if
there is a package or good way to produce this symbol or if the standard method is just to insert this symbol as a picture when necessary.
symbols sections-paragraphs
symbols sections-paragraphs
asked Jan 26 at 16:29
Viktor GlombikViktor Glombik
15910
15910
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The requested symbol and several other similar ones are part of the package https://ctan.org/pkg/pgfornament. Below is a screenshot from the pages 20 and 21 of the manual. You see that your ornament is symbol number 88
. The manual also gives some information on the origin on those drawings.
Here is an actual example to achieve something similar to your example. My understanding is that the symbol is used on points specified by the typesetter and not after every paragraph. The command ornamentSep
allows just this.
documentclass{article}
usepackage{pgfornament,multicol}
%The command itself does not require the package multicol, but the example below does. The command also respects the twocolumn option
newcommand{ornamentSep}{noindenthfil{{pgfornament[width=0.618033988749895columnwidth,color=red]{88}}}}
begin{document}
title{Title}
author{Viktor Glombik\ornamentSep}
maketitle
Greetings to Berlin, Viktor.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
begin{multicols}{2}
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non veniam voluptatem. Aperiam nulla quibusdam neque non voluptatem veniam. Molestiae consequuntur asperiores beatae veniam reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
end{multicols}
end{document}
A quick remark on the OP's comment of March 2019.
The command was designed for central alignment to the text which seems like a natural decision to me. For example, the option headsepline
of the widely used https://ctan.org/pkg/koma-script does the same. Furthermore, any element https://ctan.org/pkg/koma-script or https://ctan.org/pkg/memoir is aligned with respect to the body text, not the physical paper page, unless I am mistaken.
Many canons of page construction for the twoside
option set different widths of inner and outer margins. It should be possible to modify my command to adjust the ornament central to the page (if that is what the OP wants). I currently have no idea to do it elegantly and class independently. Such a solution should honor the binding correction, too. But I can offer you a dirty solution: You may manually shift like in the following modification where you need to adapt the space by yourself.
%uses the package changepage
newcommand{ornamentSep}{%
ifoddpage%
noindent{}{hspace{-4.10cm}pgfornament[width=0.5pagewidth,color=red]{88}}%
else%
noindent{}{hspace{-5.65cm}pgfornament[width=0.5pagewidth,color=blue]{88}}%
fi%
}
I still believe that this is awkward but I do not want to insult you.
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
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%2f471987%2fhow-to-get-this-fancier-line-to-divide-paragraphs%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
The requested symbol and several other similar ones are part of the package https://ctan.org/pkg/pgfornament. Below is a screenshot from the pages 20 and 21 of the manual. You see that your ornament is symbol number 88
. The manual also gives some information on the origin on those drawings.
Here is an actual example to achieve something similar to your example. My understanding is that the symbol is used on points specified by the typesetter and not after every paragraph. The command ornamentSep
allows just this.
documentclass{article}
usepackage{pgfornament,multicol}
%The command itself does not require the package multicol, but the example below does. The command also respects the twocolumn option
newcommand{ornamentSep}{noindenthfil{{pgfornament[width=0.618033988749895columnwidth,color=red]{88}}}}
begin{document}
title{Title}
author{Viktor Glombik\ornamentSep}
maketitle
Greetings to Berlin, Viktor.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
begin{multicols}{2}
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non veniam voluptatem. Aperiam nulla quibusdam neque non voluptatem veniam. Molestiae consequuntur asperiores beatae veniam reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
end{multicols}
end{document}
A quick remark on the OP's comment of March 2019.
The command was designed for central alignment to the text which seems like a natural decision to me. For example, the option headsepline
of the widely used https://ctan.org/pkg/koma-script does the same. Furthermore, any element https://ctan.org/pkg/koma-script or https://ctan.org/pkg/memoir is aligned with respect to the body text, not the physical paper page, unless I am mistaken.
Many canons of page construction for the twoside
option set different widths of inner and outer margins. It should be possible to modify my command to adjust the ornament central to the page (if that is what the OP wants). I currently have no idea to do it elegantly and class independently. Such a solution should honor the binding correction, too. But I can offer you a dirty solution: You may manually shift like in the following modification where you need to adapt the space by yourself.
%uses the package changepage
newcommand{ornamentSep}{%
ifoddpage%
noindent{}{hspace{-4.10cm}pgfornament[width=0.5pagewidth,color=red]{88}}%
else%
noindent{}{hspace{-5.65cm}pgfornament[width=0.5pagewidth,color=blue]{88}}%
fi%
}
I still believe that this is awkward but I do not want to insult you.
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
add a comment |
The requested symbol and several other similar ones are part of the package https://ctan.org/pkg/pgfornament. Below is a screenshot from the pages 20 and 21 of the manual. You see that your ornament is symbol number 88
. The manual also gives some information on the origin on those drawings.
Here is an actual example to achieve something similar to your example. My understanding is that the symbol is used on points specified by the typesetter and not after every paragraph. The command ornamentSep
allows just this.
documentclass{article}
usepackage{pgfornament,multicol}
%The command itself does not require the package multicol, but the example below does. The command also respects the twocolumn option
newcommand{ornamentSep}{noindenthfil{{pgfornament[width=0.618033988749895columnwidth,color=red]{88}}}}
begin{document}
title{Title}
author{Viktor Glombik\ornamentSep}
maketitle
Greetings to Berlin, Viktor.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
begin{multicols}{2}
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non veniam voluptatem. Aperiam nulla quibusdam neque non voluptatem veniam. Molestiae consequuntur asperiores beatae veniam reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
end{multicols}
end{document}
A quick remark on the OP's comment of March 2019.
The command was designed for central alignment to the text which seems like a natural decision to me. For example, the option headsepline
of the widely used https://ctan.org/pkg/koma-script does the same. Furthermore, any element https://ctan.org/pkg/koma-script or https://ctan.org/pkg/memoir is aligned with respect to the body text, not the physical paper page, unless I am mistaken.
Many canons of page construction for the twoside
option set different widths of inner and outer margins. It should be possible to modify my command to adjust the ornament central to the page (if that is what the OP wants). I currently have no idea to do it elegantly and class independently. Such a solution should honor the binding correction, too. But I can offer you a dirty solution: You may manually shift like in the following modification where you need to adapt the space by yourself.
%uses the package changepage
newcommand{ornamentSep}{%
ifoddpage%
noindent{}{hspace{-4.10cm}pgfornament[width=0.5pagewidth,color=red]{88}}%
else%
noindent{}{hspace{-5.65cm}pgfornament[width=0.5pagewidth,color=blue]{88}}%
fi%
}
I still believe that this is awkward but I do not want to insult you.
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
add a comment |
The requested symbol and several other similar ones are part of the package https://ctan.org/pkg/pgfornament. Below is a screenshot from the pages 20 and 21 of the manual. You see that your ornament is symbol number 88
. The manual also gives some information on the origin on those drawings.
Here is an actual example to achieve something similar to your example. My understanding is that the symbol is used on points specified by the typesetter and not after every paragraph. The command ornamentSep
allows just this.
documentclass{article}
usepackage{pgfornament,multicol}
%The command itself does not require the package multicol, but the example below does. The command also respects the twocolumn option
newcommand{ornamentSep}{noindenthfil{{pgfornament[width=0.618033988749895columnwidth,color=red]{88}}}}
begin{document}
title{Title}
author{Viktor Glombik\ornamentSep}
maketitle
Greetings to Berlin, Viktor.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
begin{multicols}{2}
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non veniam voluptatem. Aperiam nulla quibusdam neque non voluptatem veniam. Molestiae consequuntur asperiores beatae veniam reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
end{multicols}
end{document}
A quick remark on the OP's comment of March 2019.
The command was designed for central alignment to the text which seems like a natural decision to me. For example, the option headsepline
of the widely used https://ctan.org/pkg/koma-script does the same. Furthermore, any element https://ctan.org/pkg/koma-script or https://ctan.org/pkg/memoir is aligned with respect to the body text, not the physical paper page, unless I am mistaken.
Many canons of page construction for the twoside
option set different widths of inner and outer margins. It should be possible to modify my command to adjust the ornament central to the page (if that is what the OP wants). I currently have no idea to do it elegantly and class independently. Such a solution should honor the binding correction, too. But I can offer you a dirty solution: You may manually shift like in the following modification where you need to adapt the space by yourself.
%uses the package changepage
newcommand{ornamentSep}{%
ifoddpage%
noindent{}{hspace{-4.10cm}pgfornament[width=0.5pagewidth,color=red]{88}}%
else%
noindent{}{hspace{-5.65cm}pgfornament[width=0.5pagewidth,color=blue]{88}}%
fi%
}
I still believe that this is awkward but I do not want to insult you.
The requested symbol and several other similar ones are part of the package https://ctan.org/pkg/pgfornament. Below is a screenshot from the pages 20 and 21 of the manual. You see that your ornament is symbol number 88
. The manual also gives some information on the origin on those drawings.
Here is an actual example to achieve something similar to your example. My understanding is that the symbol is used on points specified by the typesetter and not after every paragraph. The command ornamentSep
allows just this.
documentclass{article}
usepackage{pgfornament,multicol}
%The command itself does not require the package multicol, but the example below does. The command also respects the twocolumn option
newcommand{ornamentSep}{noindenthfil{{pgfornament[width=0.618033988749895columnwidth,color=red]{88}}}}
begin{document}
title{Title}
author{Viktor Glombik\ornamentSep}
maketitle
Greetings to Berlin, Viktor.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem. Molestiae consequuntur asperiores beatae reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
ornamentSep
begin{multicols}{2}
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non voluptatem.
ornamentSep
Aut necessitatibus rerum et ea. Aperiam nulla quibusdam neque non veniam voluptatem. Aperiam nulla quibusdam neque non voluptatem veniam. Molestiae consequuntur asperiores beatae veniam reprehenderit. Quia ipsum aut veniam quis rerum quos aliquam modi.
end{multicols}
end{document}
A quick remark on the OP's comment of March 2019.
The command was designed for central alignment to the text which seems like a natural decision to me. For example, the option headsepline
of the widely used https://ctan.org/pkg/koma-script does the same. Furthermore, any element https://ctan.org/pkg/koma-script or https://ctan.org/pkg/memoir is aligned with respect to the body text, not the physical paper page, unless I am mistaken.
Many canons of page construction for the twoside
option set different widths of inner and outer margins. It should be possible to modify my command to adjust the ornament central to the page (if that is what the OP wants). I currently have no idea to do it elegantly and class independently. Such a solution should honor the binding correction, too. But I can offer you a dirty solution: You may manually shift like in the following modification where you need to adapt the space by yourself.
%uses the package changepage
newcommand{ornamentSep}{%
ifoddpage%
noindent{}{hspace{-4.10cm}pgfornament[width=0.5pagewidth,color=red]{88}}%
else%
noindent{}{hspace{-5.65cm}pgfornament[width=0.5pagewidth,color=blue]{88}}%
fi%
}
I still believe that this is awkward but I do not want to insult you.
edited Mar 10 at 13:53
answered Jan 26 at 16:35
CampanIgnisCampanIgnis
2,9842932
2,9842932
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
add a comment |
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@CampanIgnis How did you take such a high resolution screen shot?
– pushpen.paul
Jan 27 at 15:25
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@pushpen.paul Use a pdf to jpeg/png converter. Alternatively, spend very few money on very much everything, spend very much money on good computer hardware. If you love the quality of the files which TeX and its derivatives generate you are obliged to to upload high resolutions images on this site.
– CampanIgnis
Jan 27 at 16:28
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
@CampanIgnis Is use twoside option, therefore, if the ornament has the same space to either page margin, it looks strange. How can I fix that?
– Viktor Glombik
Mar 9 at 21:40
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%2f471987%2fhow-to-get-this-fancier-line-to-divide-paragraphs%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