Looping for Two-column Signature BlocksHow to translate this scenario to LaTeX looping macro?Looping and...
How do I raise a figure (placed with wrapfig) to be flush with the top of a paragraph?
Smooth vector fields on a surface modulo diffeomorphisms
Writing text next to a table
How should I solve this integral with changing parameters?
What should I do when a paper is published similar to my PhD thesis without citation?
(Codewars) Linked Lists-Sorted Insert
School performs periodic password audits. Is my password compromised?
How to increase the accuracy of a plot
Finding the minimum value of a function without using Calculus
How to open new window on center of screen
Create chunks from an array
The preposition for the verb (avenge) - avenge sb/sth (on OR from) sb
If sound is a longitudinal wave, why can we hear it if our ears aren't aligned with the propagation direction?
Use Mercury as quenching liquid for swords?
What was so special about The Piano that Ada was willing to do anything to have it?
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?
What does the Digital Threat scope actually do?
Is this Paypal Github SDK reference really a dangerous site?
What would be the most expensive material to an intergalactic society?
How do I increase the number of TTY consoles?
Help! My Character is too much for her story!
Are these two graphs isomorphic? Why/Why not?
Can one live in the U.S. and not use a credit card?
Looping for Two-column Signature Blocks
How to translate this scenario to LaTeX looping macro?Looping and linking with TikZlooping in tabularCreate a document looping through imagesA macro for looping through a pgfplotstable set by cellLooping Through a Nested ListLooping through elements in a sequenceLooping over stringsetoolbox for loop over rangeAlternating/looping section dividers
I'm trying to create a two-column area for signatures, so folks signing the document are listed in the left column or right column, and there are enough rows to accommodate everyone's signature. Under each signature line, I want to print their name and optionally title/company name if applicable, and I want to pull the name/title/company from a variable so I can change those easily.
I'm having difficulty with this since a foreach loop will have everything identical, but I might need different commands if I'm on the left-hand side vs. the right-hand side.
Here is my variable with everyone's names; I'm flexible on how this is laid out:
defmembers{
{
{Name1, Title1, CompanyName1},
{Name2, Title2, CompanyName2}
}, {
{Name3},
{Name4, Title4, CompanyName4}
}, {
{Name5, Title5, CompanyName5},
{Name6}
}, {
{Name7, Title7, CompanyName7},
{Name8, Title8, CompanyName8}
}, {
{Name9, Title9, CompanyName9},
{Name10, Title10, CompanyName10}
}%
}
Here is what I had originally that worked well for listing everyone in a single column, and it relied on members being flatter than shown above:
foreach x in members {
\[8ex]
makebox[2.5in]{hrulefill} \
foreach y in x {
y \[1ex]
}
}
What I'm trying to do now is incorporate a table with left/right columns:
begin{tabular}{ l l }
begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular}
& begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular} \
end{tabular}
loops variable for-loop
New contributor
jia103 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 |
I'm trying to create a two-column area for signatures, so folks signing the document are listed in the left column or right column, and there are enough rows to accommodate everyone's signature. Under each signature line, I want to print their name and optionally title/company name if applicable, and I want to pull the name/title/company from a variable so I can change those easily.
I'm having difficulty with this since a foreach loop will have everything identical, but I might need different commands if I'm on the left-hand side vs. the right-hand side.
Here is my variable with everyone's names; I'm flexible on how this is laid out:
defmembers{
{
{Name1, Title1, CompanyName1},
{Name2, Title2, CompanyName2}
}, {
{Name3},
{Name4, Title4, CompanyName4}
}, {
{Name5, Title5, CompanyName5},
{Name6}
}, {
{Name7, Title7, CompanyName7},
{Name8, Title8, CompanyName8}
}, {
{Name9, Title9, CompanyName9},
{Name10, Title10, CompanyName10}
}%
}
Here is what I had originally that worked well for listing everyone in a single column, and it relied on members being flatter than shown above:
foreach x in members {
\[8ex]
makebox[2.5in]{hrulefill} \
foreach y in x {
y \[1ex]
}
}
What I'm trying to do now is incorporate a table with left/right columns:
begin{tabular}{ l l }
begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular}
& begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular} \
end{tabular}
loops variable for-loop
New contributor
jia103 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 |
I'm trying to create a two-column area for signatures, so folks signing the document are listed in the left column or right column, and there are enough rows to accommodate everyone's signature. Under each signature line, I want to print their name and optionally title/company name if applicable, and I want to pull the name/title/company from a variable so I can change those easily.
I'm having difficulty with this since a foreach loop will have everything identical, but I might need different commands if I'm on the left-hand side vs. the right-hand side.
Here is my variable with everyone's names; I'm flexible on how this is laid out:
defmembers{
{
{Name1, Title1, CompanyName1},
{Name2, Title2, CompanyName2}
}, {
{Name3},
{Name4, Title4, CompanyName4}
}, {
{Name5, Title5, CompanyName5},
{Name6}
}, {
{Name7, Title7, CompanyName7},
{Name8, Title8, CompanyName8}
}, {
{Name9, Title9, CompanyName9},
{Name10, Title10, CompanyName10}
}%
}
Here is what I had originally that worked well for listing everyone in a single column, and it relied on members being flatter than shown above:
foreach x in members {
\[8ex]
makebox[2.5in]{hrulefill} \
foreach y in x {
y \[1ex]
}
}
What I'm trying to do now is incorporate a table with left/right columns:
begin{tabular}{ l l }
begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular}
& begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular} \
end{tabular}
loops variable for-loop
New contributor
jia103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm trying to create a two-column area for signatures, so folks signing the document are listed in the left column or right column, and there are enough rows to accommodate everyone's signature. Under each signature line, I want to print their name and optionally title/company name if applicable, and I want to pull the name/title/company from a variable so I can change those easily.
I'm having difficulty with this since a foreach loop will have everything identical, but I might need different commands if I'm on the left-hand side vs. the right-hand side.
Here is my variable with everyone's names; I'm flexible on how this is laid out:
defmembers{
{
{Name1, Title1, CompanyName1},
{Name2, Title2, CompanyName2}
}, {
{Name3},
{Name4, Title4, CompanyName4}
}, {
{Name5, Title5, CompanyName5},
{Name6}
}, {
{Name7, Title7, CompanyName7},
{Name8, Title8, CompanyName8}
}, {
{Name9, Title9, CompanyName9},
{Name10, Title10, CompanyName10}
}%
}
Here is what I had originally that worked well for listing everyone in a single column, and it relied on members being flatter than shown above:
foreach x in members {
\[8ex]
makebox[2.5in]{hrulefill} \
foreach y in x {
y \[1ex]
}
}
What I'm trying to do now is incorporate a table with left/right columns:
begin{tabular}{ l l }
begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular}
& begin{tabular}{@{}l@{}} \[8ex] makebox[2.5in]{hrulefill} \
Name1 \
Title1 \
CompanyName1 end{tabular} \
end{tabular}
loops variable for-loop
loops variable for-loop
New contributor
jia103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
jia103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
jia103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 mins ago
jia103jia103
101
101
New contributor
jia103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
jia103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
jia103 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 |
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
});
}
});
jia103 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%2f478662%2flooping-for-two-column-signature-blocks%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
jia103 is a new contributor. Be nice, and check out our Code of Conduct.
jia103 is a new contributor. Be nice, and check out our Code of Conduct.
jia103 is a new contributor. Be nice, and check out our Code of Conduct.
jia103 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f478662%2flooping-for-two-column-signature-blocks%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