Looping for Two-column Signature Blocks
How can a demon take control of a human body during REM sleep?
Is it a Cyclops number? "Nobody" knows!
Is it appropriate to ask a former professor to order a book for me through an inter-library loan?
Why is there an extra space when I type "ls" on the Desktop?
Do Paladin Auras of Differing Oaths Stack?
Finding the minimum value of a function without using Calculus
How can I wire a Raspberry Pi to an 8-relay board in a tidy professional manner?
Computation logic of Partway in TikZ
What should I do when a paper is published similar to my PhD thesis without citation?
Are E natural minor and B harmonic minor related?
Why do phishing e-mails use faked e-mail addresses instead of the real one?
What is this tube in a jet engine's air intake?
What is Tony Stark injecting into himself in Iron Man 3?
PTIJ: Sport in the Torah
ESPP--any reason not to go all in?
What is better: yes / no radio, or simple checkbox?
Giving a career talk in my old university, how prominently should I tell students my salary?
I am the person who abides by rules, but breaks the rules. Who am I?
How to copy the rest of lines of a file to another file
What was so special about The Piano that Ada was willing to do anything to have it?
What will happen if my luggage gets delayed?
How do I raise a figure (placed with wrapfig) to be flush with the top of a paragraph?
How can I portion out frozen cookie dough?
What is the purpose of a disclaimer like "this is not legal advice"?
Looping for Two-column Signature Blocks
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:
begintabular l l
begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular
& begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular \
endtabular
loops variable for-loop
New contributor
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:
begintabular l l
begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular
& begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular \
endtabular
loops variable for-loop
New contributor
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:
begintabular l l
begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular
& begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular \
endtabular
loops variable for-loop
New contributor
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:
begintabular l l
begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular
& begintabular@l@ \[8ex] makebox[2.5in]hrulefill \
Name1 \
Title1 \
CompanyName1 endtabular \
endtabular
loops variable for-loop
loops variable for-loop
New contributor
New contributor
New contributor
asked 2 mins ago
jia103jia103
101
101
New contributor
New contributor
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