Aligned at the same margins acronym and listofsymbols
First of all, I know, that it would be much easier to use the glossaries
package. However, maybe there is still a solution to my question. Here is a short MWE:
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
I am trying to align the list of symbols to the same position as the acronym package does. Is there any way to do that?
horizontal-alignment indentation glossaries acronyms
add a comment |
First of all, I know, that it would be much easier to use the glossaries
package. However, maybe there is still a solution to my question. Here is a short MWE:
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
I am trying to align the list of symbols to the same position as the acronym package does. Is there any way to do that?
horizontal-alignment indentation glossaries acronyms
listofsymbols
is an aged package, with no update since 2003. I suggest to use the much more up-to-dateglossaries
package, which allows for many customizations and can do both acronyms and list of symbols etc. You don't even needacronym
then.
– Christian Hupfer
Jan 5 at 11:43
add a comment |
First of all, I know, that it would be much easier to use the glossaries
package. However, maybe there is still a solution to my question. Here is a short MWE:
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
I am trying to align the list of symbols to the same position as the acronym package does. Is there any way to do that?
horizontal-alignment indentation glossaries acronyms
First of all, I know, that it would be much easier to use the glossaries
package. However, maybe there is still a solution to my question. Here is a short MWE:
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
I am trying to align the list of symbols to the same position as the acronym package does. Is there any way to do that?
horizontal-alignment indentation glossaries acronyms
horizontal-alignment indentation glossaries acronyms
edited Jan 5 at 11:59
![](https://i.stack.imgur.com/SYiQ4.jpg?s=32&g=1)
![](https://i.stack.imgur.com/SYiQ4.jpg?s=32&g=1)
Christian Hupfer
149k14193390
149k14193390
asked Jan 5 at 8:45
Leo96Leo96
625
625
listofsymbols
is an aged package, with no update since 2003. I suggest to use the much more up-to-dateglossaries
package, which allows for many customizations and can do both acronyms and list of symbols etc. You don't even needacronym
then.
– Christian Hupfer
Jan 5 at 11:43
add a comment |
listofsymbols
is an aged package, with no update since 2003. I suggest to use the much more up-to-dateglossaries
package, which allows for many customizations and can do both acronyms and list of symbols etc. You don't even needacronym
then.
– Christian Hupfer
Jan 5 at 11:43
listofsymbols
is an aged package, with no update since 2003. I suggest to use the much more up-to-date glossaries
package, which allows for many customizations and can do both acronyms and list of symbols etc. You don't even need acronym
then.– Christian Hupfer
Jan 5 at 11:43
listofsymbols
is an aged package, with no update since 2003. I suggest to use the much more up-to-date glossaries
package, which allows for many customizations and can do both acronyms and list of symbols etc. You don't even need acronym
then.– Christian Hupfer
Jan 5 at 11:43
add a comment |
1 Answer
1
active
oldest
votes
Looking into listofsymbolscode
there is a hspace*{symindent}
for each symbol entry, i.e. a default indentation for symbols.
The user manual does not reveal anything about symindent
, but again looking in the package code, it is shown, that
setlength{symindent}{1.5em}
is the default value. Changing the length to 0em
removes the indentation.
Side note: I suggest to use the modern glossaries
package instead of listofsymbols
.
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
setlength{symindent}{0em}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
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%2f468687%2faligned-at-the-same-margins-acronym-and-listofsymbols%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
Looking into listofsymbolscode
there is a hspace*{symindent}
for each symbol entry, i.e. a default indentation for symbols.
The user manual does not reveal anything about symindent
, but again looking in the package code, it is shown, that
setlength{symindent}{1.5em}
is the default value. Changing the length to 0em
removes the indentation.
Side note: I suggest to use the modern glossaries
package instead of listofsymbols
.
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
setlength{symindent}{0em}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
add a comment |
Looking into listofsymbolscode
there is a hspace*{symindent}
for each symbol entry, i.e. a default indentation for symbols.
The user manual does not reveal anything about symindent
, but again looking in the package code, it is shown, that
setlength{symindent}{1.5em}
is the default value. Changing the length to 0em
removes the indentation.
Side note: I suggest to use the modern glossaries
package instead of listofsymbols
.
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
setlength{symindent}{0em}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
add a comment |
Looking into listofsymbolscode
there is a hspace*{symindent}
for each symbol entry, i.e. a default indentation for symbols.
The user manual does not reveal anything about symindent
, but again looking in the package code, it is shown, that
setlength{symindent}{1.5em}
is the default value. Changing the length to 0em
removes the indentation.
Side note: I suggest to use the modern glossaries
package instead of listofsymbols
.
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
setlength{symindent}{0em}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
Looking into listofsymbolscode
there is a hspace*{symindent}
for each symbol entry, i.e. a default indentation for symbols.
The user manual does not reveal anything about symindent
, but again looking in the package code, it is shown, that
setlength{symindent}{1.5em}
is the default value. Changing the length to 0em
removes the indentation.
Side note: I suggest to use the modern glossaries
package instead of listofsymbols
.
documentclass[ngerman]{article}
usepackage{babel}
usepackage{amsmath,amssymb}
usepackage{acronym}
%Symbolverzeichnis
usepackage[final]{listofsymbols}
renewcommand{symheadingname}{Symbolverzeichnis}
setlength{symindent}{0em}
begin{document}
section*{Abkuerzungsverzeichnis}
begin{acronym}[EU-EHS]
acro{EU-EHS}{Europäisches Emissionshandelssystem}
end{acronym}
%Symbolverzeichnis
opensymdef
newsym[Aufrechter Buchstabe]{AB}{text{A}}
closesymdef
listofsymbols
newpage
AB
end{document}
edited Jan 5 at 12:08
answered Jan 5 at 11:45
![](https://i.stack.imgur.com/SYiQ4.jpg?s=32&g=1)
![](https://i.stack.imgur.com/SYiQ4.jpg?s=32&g=1)
Christian HupferChristian Hupfer
149k14193390
149k14193390
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%2f468687%2faligned-at-the-same-margins-acronym-and-listofsymbols%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
listofsymbols
is an aged package, with no update since 2003. I suggest to use the much more up-to-dateglossaries
package, which allows for many customizations and can do both acronyms and list of symbols etc. You don't even needacronym
then.– Christian Hupfer
Jan 5 at 11:43