How can I create a two-page spread of a tabular environment? Announcing the arrival of Valued...
Centre cell vertically in tabularx
Sally's older brother
The test team as an enemy of development? And how can this be avoided?
How can I list files in reverse time order by a command and pass them as arguments to another command?
Weaponising the Grasp-at-a-Distance spell
Should man-made satellites feature an intelligent inverted "cow catcher"?
Short story about astronauts fertilizing soil with their own bodies
Any stored/leased 737s that could substitute for grounded MAXs?
"Destructive power" carried by a B-52?
Russian equivalents of おしゃれは足元から (Every good outfit starts with the shoes)
Table formatting with tabularx?
In musical terms, what properties are varied by the human voice to produce different words / syllables?
Understanding piped commands in GNU/Linux
How do you write "wild blueberries flavored"?
Why are current probes so expensive?
Is it OK to use the testing sample to compare algorithms?
Why can't fire hurt Daenerys but it did to Jon Snow in season 1?
Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?
Noise in Eigenvalues plot
Diophantine equation 3^a+1=3^b+5^c
When does a function NOT have an antiderivative?
How to make an animal which can only breed for a certain number of generations?
Vertical ranges of Column Plots in 12
Is the time—manner—place ordering of adverbials an oversimplification?
How can I create a two-page spread of a tabular environment?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How to include a picture over two pages, left part on left side, right on right (for books)?
I want to make a teacher's lesson planning book. (You know the story: I've never found one I liked, so I want to make my own.) To do this, I need a planning grid that spans a two-page spread, with the days of the week labeled across the top; and I need forty such spreads, one for each week of the school calendar. So far I have this:
documentclass{memoir}
usepackage[paperwidth=17in,paperheight=11in,left=0pt,right=0pt,top=1cm,bottom=1cm]{geometry}
usepackage{forloop}
usepackage{tabularx}
usepackage{changepage}
newcommand{aline}{\hline &&&&&&rule{0cm}{5cm}}
begin{document}
pagenumbering{gobble}
newcounter{theyflines}
begin{adjustwidth}{2in}{}
Week of makebox[1in]{dotfill} to makebox[1in]{dotfill}
end{adjustwidth}
vspace{5mm}
noindent begin{tabularx}{paperwidth}{p{2cm}|p{5cm}|X|X|X|X|X}
hline
Course & Weekly goal & Monday & Tuesday & Wednesday & Thursday & Friday
forloop{theyflines}{1}{value{theyflines} < 5}{aline}\
hline
&&&&&&rule{0cm}{2cm}\
hline
end{tabularx}
end{document}
That gets me a grid that spans two pages. How do I turn that into a planning book? I see at least two sub-questions:
- How do I split the grid into two letter-size pages, so that I can give the copy shop a PDF of a letter-size book to print? (I did find this answer, but I thought it might be overkill to put the table into an image and then split the image. Or is that the best solution?)
- Is there a better way to build the whole book than copy-pasting the grid forty times? I could use another
forloop
, but won't that mess up the page division I need in item 1?
tables
add a comment |
I want to make a teacher's lesson planning book. (You know the story: I've never found one I liked, so I want to make my own.) To do this, I need a planning grid that spans a two-page spread, with the days of the week labeled across the top; and I need forty such spreads, one for each week of the school calendar. So far I have this:
documentclass{memoir}
usepackage[paperwidth=17in,paperheight=11in,left=0pt,right=0pt,top=1cm,bottom=1cm]{geometry}
usepackage{forloop}
usepackage{tabularx}
usepackage{changepage}
newcommand{aline}{\hline &&&&&&rule{0cm}{5cm}}
begin{document}
pagenumbering{gobble}
newcounter{theyflines}
begin{adjustwidth}{2in}{}
Week of makebox[1in]{dotfill} to makebox[1in]{dotfill}
end{adjustwidth}
vspace{5mm}
noindent begin{tabularx}{paperwidth}{p{2cm}|p{5cm}|X|X|X|X|X}
hline
Course & Weekly goal & Monday & Tuesday & Wednesday & Thursday & Friday
forloop{theyflines}{1}{value{theyflines} < 5}{aline}\
hline
&&&&&&rule{0cm}{2cm}\
hline
end{tabularx}
end{document}
That gets me a grid that spans two pages. How do I turn that into a planning book? I see at least two sub-questions:
- How do I split the grid into two letter-size pages, so that I can give the copy shop a PDF of a letter-size book to print? (I did find this answer, but I thought it might be overkill to put the table into an image and then split the image. Or is that the best solution?)
- Is there a better way to build the whole book than copy-pasting the grid forty times? I could use another
forloop
, but won't that mess up the page division I need in item 1?
tables
add a comment |
I want to make a teacher's lesson planning book. (You know the story: I've never found one I liked, so I want to make my own.) To do this, I need a planning grid that spans a two-page spread, with the days of the week labeled across the top; and I need forty such spreads, one for each week of the school calendar. So far I have this:
documentclass{memoir}
usepackage[paperwidth=17in,paperheight=11in,left=0pt,right=0pt,top=1cm,bottom=1cm]{geometry}
usepackage{forloop}
usepackage{tabularx}
usepackage{changepage}
newcommand{aline}{\hline &&&&&&rule{0cm}{5cm}}
begin{document}
pagenumbering{gobble}
newcounter{theyflines}
begin{adjustwidth}{2in}{}
Week of makebox[1in]{dotfill} to makebox[1in]{dotfill}
end{adjustwidth}
vspace{5mm}
noindent begin{tabularx}{paperwidth}{p{2cm}|p{5cm}|X|X|X|X|X}
hline
Course & Weekly goal & Monday & Tuesday & Wednesday & Thursday & Friday
forloop{theyflines}{1}{value{theyflines} < 5}{aline}\
hline
&&&&&&rule{0cm}{2cm}\
hline
end{tabularx}
end{document}
That gets me a grid that spans two pages. How do I turn that into a planning book? I see at least two sub-questions:
- How do I split the grid into two letter-size pages, so that I can give the copy shop a PDF of a letter-size book to print? (I did find this answer, but I thought it might be overkill to put the table into an image and then split the image. Or is that the best solution?)
- Is there a better way to build the whole book than copy-pasting the grid forty times? I could use another
forloop
, but won't that mess up the page division I need in item 1?
tables
I want to make a teacher's lesson planning book. (You know the story: I've never found one I liked, so I want to make my own.) To do this, I need a planning grid that spans a two-page spread, with the days of the week labeled across the top; and I need forty such spreads, one for each week of the school calendar. So far I have this:
documentclass{memoir}
usepackage[paperwidth=17in,paperheight=11in,left=0pt,right=0pt,top=1cm,bottom=1cm]{geometry}
usepackage{forloop}
usepackage{tabularx}
usepackage{changepage}
newcommand{aline}{\hline &&&&&&rule{0cm}{5cm}}
begin{document}
pagenumbering{gobble}
newcounter{theyflines}
begin{adjustwidth}{2in}{}
Week of makebox[1in]{dotfill} to makebox[1in]{dotfill}
end{adjustwidth}
vspace{5mm}
noindent begin{tabularx}{paperwidth}{p{2cm}|p{5cm}|X|X|X|X|X}
hline
Course & Weekly goal & Monday & Tuesday & Wednesday & Thursday & Friday
forloop{theyflines}{1}{value{theyflines} < 5}{aline}\
hline
&&&&&&rule{0cm}{2cm}\
hline
end{tabularx}
end{document}
That gets me a grid that spans two pages. How do I turn that into a planning book? I see at least two sub-questions:
- How do I split the grid into two letter-size pages, so that I can give the copy shop a PDF of a letter-size book to print? (I did find this answer, but I thought it might be overkill to put the table into an image and then split the image. Or is that the best solution?)
- Is there a better way to build the whole book than copy-pasting the grid forty times? I could use another
forloop
, but won't that mess up the page division I need in item 1?
tables
tables
asked 1 min ago
crmdgncrmdgn
1,15111324
1,15111324
add a comment |
add a comment |
0
active
oldest
votes
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%2f485973%2fhow-can-i-create-a-two-page-spread-of-a-tabular-environment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f485973%2fhow-can-i-create-a-two-page-spread-of-a-tabular-environment%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