Footnote's parentheses

Multi tool use
up vote
6
down vote
favorite
I try to customize footnote symbol in my document.
My goal (parentheses as big as letter 'T', number in same height as letter 'T'):
Current:
documentclass{book}
usepackage{fancyhdr}
pagestyle{fancy}
renewcommand*{thefootnote}{(arabic{footnote})}
begin{document}
Notefootnote{Tylko}
end{document}
I've tried to change latex.ltx
file, but without success.
footnotes
New contributor
Tomasz Góral 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 |
up vote
6
down vote
favorite
I try to customize footnote symbol in my document.
My goal (parentheses as big as letter 'T', number in same height as letter 'T'):
Current:
documentclass{book}
usepackage{fancyhdr}
pagestyle{fancy}
renewcommand*{thefootnote}{(arabic{footnote})}
begin{document}
Notefootnote{Tylko}
end{document}
I've tried to change latex.ltx
file, but without success.
footnotes
New contributor
Tomasz Góral 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.SX! Do you want that layout only in the call of the footnote, on the footnote itself, or both?
– Phelype Oleinik
Nov 14 at 19:05
Hello :). Both of them.
– Tomasz Góral
Nov 14 at 19:33
An alternative method was asking me during the laboratory. :-)
– Przemysław Scherwentke
Nov 15 at 16:32
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
I try to customize footnote symbol in my document.
My goal (parentheses as big as letter 'T', number in same height as letter 'T'):
Current:
documentclass{book}
usepackage{fancyhdr}
pagestyle{fancy}
renewcommand*{thefootnote}{(arabic{footnote})}
begin{document}
Notefootnote{Tylko}
end{document}
I've tried to change latex.ltx
file, but without success.
footnotes
New contributor
Tomasz Góral is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I try to customize footnote symbol in my document.
My goal (parentheses as big as letter 'T', number in same height as letter 'T'):
Current:
documentclass{book}
usepackage{fancyhdr}
pagestyle{fancy}
renewcommand*{thefootnote}{(arabic{footnote})}
begin{document}
Notefootnote{Tylko}
end{document}
I've tried to change latex.ltx
file, but without success.
footnotes
footnotes
New contributor
Tomasz Góral is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Tomasz Góral is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Nov 14 at 19:32
New contributor
Tomasz Góral is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Nov 14 at 18:59
Tomasz Góral
313
313
New contributor
Tomasz Góral is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Tomasz Góral is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Tomasz Góral 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.SX! Do you want that layout only in the call of the footnote, on the footnote itself, or both?
– Phelype Oleinik
Nov 14 at 19:05
Hello :). Both of them.
– Tomasz Góral
Nov 14 at 19:33
An alternative method was asking me during the laboratory. :-)
– Przemysław Scherwentke
Nov 15 at 16:32
add a comment |
Welcome to TeX.SX! Do you want that layout only in the call of the footnote, on the footnote itself, or both?
– Phelype Oleinik
Nov 14 at 19:05
Hello :). Both of them.
– Tomasz Góral
Nov 14 at 19:33
An alternative method was asking me during the laboratory. :-)
– Przemysław Scherwentke
Nov 15 at 16:32
Welcome to TeX.SX! Do you want that layout only in the call of the footnote, on the footnote itself, or both?
– Phelype Oleinik
Nov 14 at 19:05
Welcome to TeX.SX! Do you want that layout only in the call of the footnote, on the footnote itself, or both?
– Phelype Oleinik
Nov 14 at 19:05
Hello :). Both of them.
– Tomasz Góral
Nov 14 at 19:33
Hello :). Both of them.
– Tomasz Góral
Nov 14 at 19:33
An alternative method was asking me during the laboratory. :-)
– Przemysław Scherwentke
Nov 15 at 16:32
An alternative method was asking me during the laboratory. :-)
– Przemysław Scherwentke
Nov 15 at 16:32
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
You can update @makefnmark
, which updates the way the f
ootn
ote mark
is set within the text as well as in the footnote:
documentclass{book}
makeatletter
def@makefnmark{hbox{(@textsuperscript{normalfont@thefnmark})}}
makeatother
begin{document}
Notefootnote{Footnote}
end{document}
The original definition didn't have the surrounding (
...)
.
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
You can update @makefnmark
, which updates the way the f
ootn
ote mark
is set within the text as well as in the footnote:
documentclass{book}
makeatletter
def@makefnmark{hbox{(@textsuperscript{normalfont@thefnmark})}}
makeatother
begin{document}
Notefootnote{Footnote}
end{document}
The original definition didn't have the surrounding (
...)
.
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
add a comment |
up vote
4
down vote
You can update @makefnmark
, which updates the way the f
ootn
ote mark
is set within the text as well as in the footnote:
documentclass{book}
makeatletter
def@makefnmark{hbox{(@textsuperscript{normalfont@thefnmark})}}
makeatother
begin{document}
Notefootnote{Footnote}
end{document}
The original definition didn't have the surrounding (
...)
.
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
add a comment |
up vote
4
down vote
up vote
4
down vote
You can update @makefnmark
, which updates the way the f
ootn
ote mark
is set within the text as well as in the footnote:
documentclass{book}
makeatletter
def@makefnmark{hbox{(@textsuperscript{normalfont@thefnmark})}}
makeatother
begin{document}
Notefootnote{Footnote}
end{document}
The original definition didn't have the surrounding (
...)
.
You can update @makefnmark
, which updates the way the f
ootn
ote mark
is set within the text as well as in the footnote:
documentclass{book}
makeatletter
def@makefnmark{hbox{(@textsuperscript{normalfont@thefnmark})}}
makeatother
begin{document}
Notefootnote{Footnote}
end{document}
The original definition didn't have the surrounding (
...)
.
answered Nov 14 at 19:09


Werner
431k599491626
431k599491626
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
add a comment |
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
By one second :-)
– Phelype Oleinik
Nov 14 at 19:10
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
It solved problem with parantheses, but number is still a little bit above letter 'F'ootnote
– Tomasz Góral
Nov 14 at 19:30
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
@TomaszGóral: Try this definition.
– Werner
Nov 14 at 20:41
add a comment |
Tomasz Góral is a new contributor. Be nice, and check out our Code of Conduct.
Tomasz Góral is a new contributor. Be nice, and check out our Code of Conduct.
Tomasz Góral is a new contributor. Be nice, and check out our Code of Conduct.
Tomasz Góral 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%2f460000%2ffootnotes-parentheses%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
e5zfSy,nBFaBwYGqEx 5 Ic2psPHM PWh SkaS2f 0yd1PARnRRLEywNxhX1FjJ8S9M1Ei zCSU,c,65Mt
Welcome to TeX.SX! Do you want that layout only in the call of the footnote, on the footnote itself, or both?
– Phelype Oleinik
Nov 14 at 19:05
Hello :). Both of them.
– Tomasz Góral
Nov 14 at 19:33
An alternative method was asking me during the laboratory. :-)
– Przemysław Scherwentke
Nov 15 at 16:32