Underlining section titles [duplicate]Formatting section titlesIs it possible to customize only the section...
Could a US political party gain complete control over the government by removing checks & balances?
Landing in very high winds
Is domain driven design an anti-SQL pattern?
What is it called when one voice type sings a 'solo'?
Why was the "bread communication" in the arena of Catching Fire left out in the movie?
COUNT(*) or MAX(id) - which is faster?
Is there a way to make member function NOT callable from constructor?
How to answer pointed "are you quitting" questioning when I don't want them to suspect
Where else does the Shulchan Aruch quote an authority by name?
Is there a name of the flying bionic bird?
Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?
Does a dangling wire really electrocute me if I'm standing in water?
aging parents with no investments
Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore
Typesetting a double Over Dot on top of a symbol
Why doesn't a const reference extend the life of a temporary object passed via a function?
Why airport relocation isn't done gradually?
Can the Produce Flame cantrip be used to grapple, or as an unarmed strike, in the right circumstances?
What is the meaning of "of trouble" in the following sentence?
"listening to me about as much as you're listening to this pole here"
What is the offset in a seaplane's hull?
What is GPS' 19 year rollover and does it present a cybersecurity issue?
Why is my log file so massive? 22gb. I am running log backups
Can I find out the caloric content of bread by dehydrating it?
Underlining section titles [duplicate]
Formatting section titlesIs it possible to customize only the section and subsection numbers or titles in memoir?Formatting section titlesLaTeX Underlined section titles with note to right without underlineDifferent format styles for section and appendix titlesBroken automatic line breaking in section titles when ulem and hyperref are usedhrule underlining of subsection titlesTitlesec & titles extending into marginSimple Way to Format Section TitlesInserting section titles on the chapter title pageProblems with the table of contents
This question already has an answer here:
Formatting section titles
2 answers
Is there a good way by specifying it in the preamble, to underline my section titles (not chapter titles), instead of having to do chapter{underline{Section Title}}
for all chapter titles in the body?
I would like it as something like in this picture below:
Thanks!
sectioning formatting
marked as duplicate by JouleV, Stefan Pinnow, Phelype Oleinik, siracusa, Raaja yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Formatting section titles
2 answers
Is there a good way by specifying it in the preamble, to underline my section titles (not chapter titles), instead of having to do chapter{underline{Section Title}}
for all chapter titles in the body?
I would like it as something like in this picture below:
Thanks!
sectioning formatting
marked as duplicate by JouleV, Stefan Pinnow, Phelype Oleinik, siracusa, Raaja yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
That is very bad typographical practice.
– Bernard
yesterday
Oo, sorry, I totally switched chapter and section. I meant this one is for the section title, not chapter title. I need to make it that way because of the thesis formatting requirements.
– Samyam Shrestha
yesterday
Thnks, @JouleV, but I could not find how you can underline it and middle align it. I'm new to Latex actually.
– Samyam Shrestha
yesterday
@SamyamShrestha Look at the linked question.
– JouleV
yesterday
add a comment |
This question already has an answer here:
Formatting section titles
2 answers
Is there a good way by specifying it in the preamble, to underline my section titles (not chapter titles), instead of having to do chapter{underline{Section Title}}
for all chapter titles in the body?
I would like it as something like in this picture below:
Thanks!
sectioning formatting
This question already has an answer here:
Formatting section titles
2 answers
Is there a good way by specifying it in the preamble, to underline my section titles (not chapter titles), instead of having to do chapter{underline{Section Title}}
for all chapter titles in the body?
I would like it as something like in this picture below:
Thanks!
This question already has an answer here:
Formatting section titles
2 answers
sectioning formatting
sectioning formatting
edited yesterday
Samyam Shrestha
asked yesterday
Samyam ShresthaSamyam Shrestha
495
495
marked as duplicate by JouleV, Stefan Pinnow, Phelype Oleinik, siracusa, Raaja yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by JouleV, Stefan Pinnow, Phelype Oleinik, siracusa, Raaja yesterday
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
That is very bad typographical practice.
– Bernard
yesterday
Oo, sorry, I totally switched chapter and section. I meant this one is for the section title, not chapter title. I need to make it that way because of the thesis formatting requirements.
– Samyam Shrestha
yesterday
Thnks, @JouleV, but I could not find how you can underline it and middle align it. I'm new to Latex actually.
– Samyam Shrestha
yesterday
@SamyamShrestha Look at the linked question.
– JouleV
yesterday
add a comment |
1
That is very bad typographical practice.
– Bernard
yesterday
Oo, sorry, I totally switched chapter and section. I meant this one is for the section title, not chapter title. I need to make it that way because of the thesis formatting requirements.
– Samyam Shrestha
yesterday
Thnks, @JouleV, but I could not find how you can underline it and middle align it. I'm new to Latex actually.
– Samyam Shrestha
yesterday
@SamyamShrestha Look at the linked question.
– JouleV
yesterday
1
1
That is very bad typographical practice.
– Bernard
yesterday
That is very bad typographical practice.
– Bernard
yesterday
Oo, sorry, I totally switched chapter and section. I meant this one is for the section title, not chapter title. I need to make it that way because of the thesis formatting requirements.
– Samyam Shrestha
yesterday
Oo, sorry, I totally switched chapter and section. I meant this one is for the section title, not chapter title. I need to make it that way because of the thesis formatting requirements.
– Samyam Shrestha
yesterday
Thnks, @JouleV, but I could not find how you can underline it and middle align it. I'm new to Latex actually.
– Samyam Shrestha
yesterday
Thnks, @JouleV, but I could not find how you can underline it and middle align it. I'm new to Latex actually.
– Samyam Shrestha
yesterday
@SamyamShrestha Look at the linked question.
– JouleV
yesterday
@SamyamShrestha Look at the linked question.
– JouleV
yesterday
add a comment |
1 Answer
1
active
oldest
votes
This is a quick way using sectsty
documentclass{book}
usepackage{sectsty}
sectionfont{underlinenormalfontnormalsizecentering}
usepackage{lipsum}
begin{document}
chapter{This is a chapter}
section{This is your section}
lipsum[1]
end{document}
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
titlesec
, or you can even edit it manually by redefiningchapter
.
– JouleV
yesterday
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is a quick way using sectsty
documentclass{book}
usepackage{sectsty}
sectionfont{underlinenormalfontnormalsizecentering}
usepackage{lipsum}
begin{document}
chapter{This is a chapter}
section{This is your section}
lipsum[1]
end{document}
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
titlesec
, or you can even edit it manually by redefiningchapter
.
– JouleV
yesterday
add a comment |
This is a quick way using sectsty
documentclass{book}
usepackage{sectsty}
sectionfont{underlinenormalfontnormalsizecentering}
usepackage{lipsum}
begin{document}
chapter{This is a chapter}
section{This is your section}
lipsum[1]
end{document}
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
titlesec
, or you can even edit it manually by redefiningchapter
.
– JouleV
yesterday
add a comment |
This is a quick way using sectsty
documentclass{book}
usepackage{sectsty}
sectionfont{underlinenormalfontnormalsizecentering}
usepackage{lipsum}
begin{document}
chapter{This is a chapter}
section{This is your section}
lipsum[1]
end{document}
This is a quick way using sectsty
documentclass{book}
usepackage{sectsty}
sectionfont{underlinenormalfontnormalsizecentering}
usepackage{lipsum}
begin{document}
chapter{This is a chapter}
section{This is your section}
lipsum[1]
end{document}
answered yesterday
JouleVJouleV
11.7k22561
11.7k22561
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
titlesec
, or you can even edit it manually by redefiningchapter
.
– JouleV
yesterday
add a comment |
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
titlesec
, or you can even edit it manually by redefiningchapter
.
– JouleV
yesterday
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
Great, that's sweet! Thanks! Similar to this (sectsty), what package can edit chapter titles?
– Samyam Shrestha
yesterday
titlesec
, or you can even edit it manually by redefining chapter
.– JouleV
yesterday
titlesec
, or you can even edit it manually by redefining chapter
.– JouleV
yesterday
add a comment |
1
That is very bad typographical practice.
– Bernard
yesterday
Oo, sorry, I totally switched chapter and section. I meant this one is for the section title, not chapter title. I need to make it that way because of the thesis formatting requirements.
– Samyam Shrestha
yesterday
Thnks, @JouleV, but I could not find how you can underline it and middle align it. I'm new to Latex actually.
– Samyam Shrestha
yesterday
@SamyamShrestha Look at the linked question.
– JouleV
yesterday