How to write numbers in landscape and the full width
up vote
1
down vote
favorite
I want to simply write the numbers 2 to 9 as large as possible, across the page, in landscape mode and centred vertically and horizontally. I would like the numbers to take the full width of the page. Here is my attempt:
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
begin{vplace}
centering
{fontsize{70}{84} selectfont 2 3 4 5 6 7 8 9}
end{vplace}
end{document}
I don't like this solution at all however. I am also not convinced it will actually print properly in landscape mode. Do I instead need to write the numbers vertically (rotated 90 degrees) in portrait mode to get them to print properly? The numbers also don't seem to be horizontally centred.
Some notes: I am only using memoir as it gives the vplace environment. I manually selected the font so it would stretch and the font size so it would fit.
fontsize landscape
add a comment |
up vote
1
down vote
favorite
I want to simply write the numbers 2 to 9 as large as possible, across the page, in landscape mode and centred vertically and horizontally. I would like the numbers to take the full width of the page. Here is my attempt:
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
begin{vplace}
centering
{fontsize{70}{84} selectfont 2 3 4 5 6 7 8 9}
end{vplace}
end{document}
I don't like this solution at all however. I am also not convinced it will actually print properly in landscape mode. Do I instead need to write the numbers vertically (rotated 90 degrees) in portrait mode to get them to print properly? The numbers also don't seem to be horizontally centred.
Some notes: I am only using memoir as it gives the vplace environment. I manually selected the font so it would stretch and the font size so it would fit.
fontsize landscape
What is the ultimate goal here? You can print the entire document using thestandalone
class as well. This results in a cropped version of the content, which you can then "fit" to a page when printing.
– Werner
7 hours ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I want to simply write the numbers 2 to 9 as large as possible, across the page, in landscape mode and centred vertically and horizontally. I would like the numbers to take the full width of the page. Here is my attempt:
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
begin{vplace}
centering
{fontsize{70}{84} selectfont 2 3 4 5 6 7 8 9}
end{vplace}
end{document}
I don't like this solution at all however. I am also not convinced it will actually print properly in landscape mode. Do I instead need to write the numbers vertically (rotated 90 degrees) in portrait mode to get them to print properly? The numbers also don't seem to be horizontally centred.
Some notes: I am only using memoir as it gives the vplace environment. I manually selected the font so it would stretch and the font size so it would fit.
fontsize landscape
I want to simply write the numbers 2 to 9 as large as possible, across the page, in landscape mode and centred vertically and horizontally. I would like the numbers to take the full width of the page. Here is my attempt:
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
begin{vplace}
centering
{fontsize{70}{84} selectfont 2 3 4 5 6 7 8 9}
end{vplace}
end{document}
I don't like this solution at all however. I am also not convinced it will actually print properly in landscape mode. Do I instead need to write the numbers vertically (rotated 90 degrees) in portrait mode to get them to print properly? The numbers also don't seem to be horizontally centred.
Some notes: I am only using memoir as it gives the vplace environment. I manually selected the font so it would stretch and the font size so it would fit.
fontsize landscape
fontsize landscape
edited 8 hours ago
asked 8 hours ago
Anush
1355
1355
What is the ultimate goal here? You can print the entire document using thestandalone
class as well. This results in a cropped version of the content, which you can then "fit" to a page when printing.
– Werner
7 hours ago
add a comment |
What is the ultimate goal here? You can print the entire document using thestandalone
class as well. This results in a cropped version of the content, which you can then "fit" to a page when printing.
– Werner
7 hours ago
What is the ultimate goal here? You can print the entire document using the
standalone
class as well. This results in a cropped version of the content, which you can then "fit" to a page when printing.– Werner
7 hours ago
What is the ultimate goal here? You can print the entire document using the
standalone
class as well. This results in a cropped version of the content, which you can then "fit" to a page when printing.– Werner
7 hours ago
add a comment |
3 Answers
3
active
oldest
votes
up vote
2
down vote
Using hfill
in between the numbers spaces them equally. Also vfill
takes care of the vertical centering. Is this what you were looking for?
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{70}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}
vfillmbox{}
end{document}
You could potentially enlarge the Numbers a bit more, if you'd shrink the documents side-borders and enlarging the font a bit.
documentclass{memoir}
usepackage[landscape, margin=1cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{130}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}vfillmbox{}
end{document}
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
Did you maybe misplace the%
in the corresponding line?
– Tim Hilt
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
|
show 3 more comments
up vote
1
down vote
The graphicx
package offers the resizebox
macro which can be used to scale your numbers to the whole available textwidth:
documentclass[landscape]{memoir}
usepackage{geometry}
usepackage{lmodern}
usepackage{graphicx}
begin{document}
mbox{}vfill
thispagestyle{empty}
noindentresizebox{textwidth}{!}{fontsize{70}{84}selectfont 2 3 4 5 6 7 8 9}%
vfillmbox{}
end{document}
(the thin lines show the geometry of the page)
New contributor
Thank you this works!
– Anush
8 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really needfontsize{70}{84}selectfont
becauseresizebox
is going to do all the scaling regardless of thefontsize
that you specify. :)
– sgmoye
7 hours ago
1
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Trydocumentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters
– book
7 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
|
show 1 more comment
up vote
0
down vote
That part is almost the same of Tim Hilt, but with a bit simplified code. If figures are too big, you only have to change the 204
by any lower number. The figures will be vertically centered and filling all the page width in all cases.
documentclass{article}
usepackage[landscape,margin=.5cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
leavevmodevfill
fontsize{204}{0} selectfont 2hfill 3hfill
4hfill 5hfill 6hfill 7hfill 8hfill 9
vfill
end{document}
If the figures are still small, use a number up to 313 but also add the option a3paper
to geometry, or in case of do not have a A3 printer or you want a bigger banner:
documentclass{standalone}
usepackage{lmodern}
usepackage{poster}
begin{document}
fontsize{300}{0}selectfont
poster[vcenter=true,hcenter=true,
paperwidth=21cm,imagewidth=21cm,]
{23456789}
end{document}
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Using hfill
in between the numbers spaces them equally. Also vfill
takes care of the vertical centering. Is this what you were looking for?
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{70}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}
vfillmbox{}
end{document}
You could potentially enlarge the Numbers a bit more, if you'd shrink the documents side-borders and enlarging the font a bit.
documentclass{memoir}
usepackage[landscape, margin=1cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{130}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}vfillmbox{}
end{document}
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
Did you maybe misplace the%
in the corresponding line?
– Tim Hilt
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
|
show 3 more comments
up vote
2
down vote
Using hfill
in between the numbers spaces them equally. Also vfill
takes care of the vertical centering. Is this what you were looking for?
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{70}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}
vfillmbox{}
end{document}
You could potentially enlarge the Numbers a bit more, if you'd shrink the documents side-borders and enlarging the font a bit.
documentclass{memoir}
usepackage[landscape, margin=1cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{130}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}vfillmbox{}
end{document}
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
Did you maybe misplace the%
in the corresponding line?
– Tim Hilt
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
|
show 3 more comments
up vote
2
down vote
up vote
2
down vote
Using hfill
in between the numbers spaces them equally. Also vfill
takes care of the vertical centering. Is this what you were looking for?
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{70}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}
vfillmbox{}
end{document}
You could potentially enlarge the Numbers a bit more, if you'd shrink the documents side-borders and enlarging the font a bit.
documentclass{memoir}
usepackage[landscape, margin=1cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{130}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}vfillmbox{}
end{document}
Using hfill
in between the numbers spaces them equally. Also vfill
takes care of the vertical centering. Is this what you were looking for?
documentclass{memoir}
usepackage[landscape]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{70}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}
vfillmbox{}
end{document}
You could potentially enlarge the Numbers a bit more, if you'd shrink the documents side-borders and enlarging the font a bit.
documentclass{memoir}
usepackage[landscape, margin=1cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
mbox{}vfill
{centeringfontsize{130}{84}selectfont%
2 hfill 3 hfill 4 hfill 5 hfill 6 hfill 7 hfill 8 hfill 9%
}vfillmbox{}
end{document}
edited 7 hours ago
answered 8 hours ago
Tim Hilt
16211
16211
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
Did you maybe misplace the%
in the corresponding line?
– Tim Hilt
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
|
show 3 more comments
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
Did you maybe misplace the%
in the corresponding line?
– Tim Hilt
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
This version doesn't fit all the numbers into one line for me. The 9 is lost.
– Anush
8 hours ago
Did you maybe misplace the
%
in the corresponding line?– Tim Hilt
8 hours ago
Did you maybe misplace the
%
in the corresponding line?– Tim Hilt
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
This is what I am trying pastebin.tlhiv.org/I92aWHBm
– Anush
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
Is there a warning in your .log-file or something? For me it works as expected when i copy your code. Note, that i use TeXLive and LuaLaTeX.
– Tim Hilt
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
I am just using pdflatex. There is "Non-PDF special ignored! Non-PDF special ignored! "
– Anush
8 hours ago
|
show 3 more comments
up vote
1
down vote
The graphicx
package offers the resizebox
macro which can be used to scale your numbers to the whole available textwidth:
documentclass[landscape]{memoir}
usepackage{geometry}
usepackage{lmodern}
usepackage{graphicx}
begin{document}
mbox{}vfill
thispagestyle{empty}
noindentresizebox{textwidth}{!}{fontsize{70}{84}selectfont 2 3 4 5 6 7 8 9}%
vfillmbox{}
end{document}
(the thin lines show the geometry of the page)
New contributor
Thank you this works!
– Anush
8 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really needfontsize{70}{84}selectfont
becauseresizebox
is going to do all the scaling regardless of thefontsize
that you specify. :)
– sgmoye
7 hours ago
1
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Trydocumentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters
– book
7 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
|
show 1 more comment
up vote
1
down vote
The graphicx
package offers the resizebox
macro which can be used to scale your numbers to the whole available textwidth:
documentclass[landscape]{memoir}
usepackage{geometry}
usepackage{lmodern}
usepackage{graphicx}
begin{document}
mbox{}vfill
thispagestyle{empty}
noindentresizebox{textwidth}{!}{fontsize{70}{84}selectfont 2 3 4 5 6 7 8 9}%
vfillmbox{}
end{document}
(the thin lines show the geometry of the page)
New contributor
Thank you this works!
– Anush
8 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really needfontsize{70}{84}selectfont
becauseresizebox
is going to do all the scaling regardless of thefontsize
that you specify. :)
– sgmoye
7 hours ago
1
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Trydocumentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters
– book
7 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
|
show 1 more comment
up vote
1
down vote
up vote
1
down vote
The graphicx
package offers the resizebox
macro which can be used to scale your numbers to the whole available textwidth:
documentclass[landscape]{memoir}
usepackage{geometry}
usepackage{lmodern}
usepackage{graphicx}
begin{document}
mbox{}vfill
thispagestyle{empty}
noindentresizebox{textwidth}{!}{fontsize{70}{84}selectfont 2 3 4 5 6 7 8 9}%
vfillmbox{}
end{document}
(the thin lines show the geometry of the page)
New contributor
The graphicx
package offers the resizebox
macro which can be used to scale your numbers to the whole available textwidth:
documentclass[landscape]{memoir}
usepackage{geometry}
usepackage{lmodern}
usepackage{graphicx}
begin{document}
mbox{}vfill
thispagestyle{empty}
noindentresizebox{textwidth}{!}{fontsize{70}{84}selectfont 2 3 4 5 6 7 8 9}%
vfillmbox{}
end{document}
(the thin lines show the geometry of the page)
New contributor
edited 8 hours ago
New contributor
answered 8 hours ago
book
435111
435111
New contributor
New contributor
Thank you this works!
– Anush
8 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really needfontsize{70}{84}selectfont
becauseresizebox
is going to do all the scaling regardless of thefontsize
that you specify. :)
– sgmoye
7 hours ago
1
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Trydocumentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters
– book
7 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
|
show 1 more comment
Thank you this works!
– Anush
8 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really needfontsize{70}{84}selectfont
becauseresizebox
is going to do all the scaling regardless of thefontsize
that you specify. :)
– sgmoye
7 hours ago
1
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Trydocumentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters
– book
7 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
Thank you this works!
– Anush
8 hours ago
Thank you this works!
– Anush
8 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really need
fontsize{70}{84}selectfont
because resizebox
is going to do all the scaling regardless of the fontsize
that you specify. :)– sgmoye
7 hours ago
@book Welcome!... and a suggestion for simplifying: you don't really need
fontsize{70}{84}selectfont
because resizebox
is going to do all the scaling regardless of the fontsize
that you specify. :)– sgmoye
7 hours ago
1
1
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Nooo, without it the normal font will just be scaled up. This font is meant to be displayed in normal size, not in such a big font. If one uses a fontsize which is nearly right, it will be much better to read.
– book
7 hours ago
@sgmoye Try
documentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters– book
7 hours ago
@sgmoye Try
documentclass{article} usepackage{graphicx} begin{document} resizebox{textwidth}{!}{tiny text} resizebox{textwidth}{!}{text} resizebox{textwidth}{!}{Huge text} end{document}
and look at the different boldness of the letters– book
7 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
@book Quite right! Well spotted.
– sgmoye
6 hours ago
|
show 1 more comment
up vote
0
down vote
That part is almost the same of Tim Hilt, but with a bit simplified code. If figures are too big, you only have to change the 204
by any lower number. The figures will be vertically centered and filling all the page width in all cases.
documentclass{article}
usepackage[landscape,margin=.5cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
leavevmodevfill
fontsize{204}{0} selectfont 2hfill 3hfill
4hfill 5hfill 6hfill 7hfill 8hfill 9
vfill
end{document}
If the figures are still small, use a number up to 313 but also add the option a3paper
to geometry, or in case of do not have a A3 printer or you want a bigger banner:
documentclass{standalone}
usepackage{lmodern}
usepackage{poster}
begin{document}
fontsize{300}{0}selectfont
poster[vcenter=true,hcenter=true,
paperwidth=21cm,imagewidth=21cm,]
{23456789}
end{document}
add a comment |
up vote
0
down vote
That part is almost the same of Tim Hilt, but with a bit simplified code. If figures are too big, you only have to change the 204
by any lower number. The figures will be vertically centered and filling all the page width in all cases.
documentclass{article}
usepackage[landscape,margin=.5cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
leavevmodevfill
fontsize{204}{0} selectfont 2hfill 3hfill
4hfill 5hfill 6hfill 7hfill 8hfill 9
vfill
end{document}
If the figures are still small, use a number up to 313 but also add the option a3paper
to geometry, or in case of do not have a A3 printer or you want a bigger banner:
documentclass{standalone}
usepackage{lmodern}
usepackage{poster}
begin{document}
fontsize{300}{0}selectfont
poster[vcenter=true,hcenter=true,
paperwidth=21cm,imagewidth=21cm,]
{23456789}
end{document}
add a comment |
up vote
0
down vote
up vote
0
down vote
That part is almost the same of Tim Hilt, but with a bit simplified code. If figures are too big, you only have to change the 204
by any lower number. The figures will be vertically centered and filling all the page width in all cases.
documentclass{article}
usepackage[landscape,margin=.5cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
leavevmodevfill
fontsize{204}{0} selectfont 2hfill 3hfill
4hfill 5hfill 6hfill 7hfill 8hfill 9
vfill
end{document}
If the figures are still small, use a number up to 313 but also add the option a3paper
to geometry, or in case of do not have a A3 printer or you want a bigger banner:
documentclass{standalone}
usepackage{lmodern}
usepackage{poster}
begin{document}
fontsize{300}{0}selectfont
poster[vcenter=true,hcenter=true,
paperwidth=21cm,imagewidth=21cm,]
{23456789}
end{document}
That part is almost the same of Tim Hilt, but with a bit simplified code. If figures are too big, you only have to change the 204
by any lower number. The figures will be vertically centered and filling all the page width in all cases.
documentclass{article}
usepackage[landscape,margin=.5cm]{geometry}
usepackage{lmodern}
begin{document}
thispagestyle{empty}
leavevmodevfill
fontsize{204}{0} selectfont 2hfill 3hfill
4hfill 5hfill 6hfill 7hfill 8hfill 9
vfill
end{document}
If the figures are still small, use a number up to 313 but also add the option a3paper
to geometry, or in case of do not have a A3 printer or you want a bigger banner:
documentclass{standalone}
usepackage{lmodern}
usepackage{poster}
begin{document}
fontsize{300}{0}selectfont
poster[vcenter=true,hcenter=true,
paperwidth=21cm,imagewidth=21cm,]
{23456789}
end{document}
answered 5 hours ago
Fran
50.2k6111174
50.2k6111174
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%2f463211%2fhow-to-write-numbers-in-landscape-and-the-full-width%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
What is the ultimate goal here? You can print the entire document using the
standalone
class as well. This results in a cropped version of the content, which you can then "fit" to a page when printing.– Werner
7 hours ago