XeLaTeX: How to put a table above the title in documentclass{article}How to format table with long column...
Modeling an IP Address
What is the word for reserving something for yourself before others do?
What's the point of deactivating Num Lock on login screens?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
Languages that we cannot (dis)prove to be Context-Free
How can I make my BBEG immortal short of making them a Lich or Vampire?
Why does Kotter return in Welcome Back Kotter?
Arrow those variables!
Does detail obscure or enhance action?
Why doesn't H₄O²⁺ exist?
Convert two switches to a dual stack, and add outlet - possible here?
Definite integral giving negative value as a result?
How is it possible to have an ability score that is less than 3?
Paid for article while in US on F-1 visa?
Important Resources for Dark Age Civilizations?
Did Shadowfax go to Valinor?
Has there ever been an airliner design involving reducing generator load by installing solar panels?
Is it possible to do 50 km distance without any previous training?
What does it mean to describe someone as a butt steak?
Was any UN Security Council vote triple-vetoed?
How does one intimidate enemies without having the capacity for violence?
Replacing matching entries in one column of a file by another column from a different file
Why is consensus so controversial in Britain?
Intersection point of 2 lines defined by 2 points each
XeLaTeX: How to put a table above the title in documentclass{article}
How to format table with long column head entries?XeTeX hangs on article documentclass, while LaTeX-Mk with XeLaTeX works perfectlyLarge blank above tableAdding “Last updated on” in XeLaTex articleref, table, label,xelatexInclude Chinese characters into article in XelatexHow to add title above a table?Put a table above a nodeHow to place text above the figure/tableHow put title in table
I am looking to put a table in the top of the title page.
Reason: The document (an SOP) requires that all revisions are listed at the top of the title, on the first page.
I can't figure out how to do this...image below shows what I can do using
the following code:
begin{document}
maketitle
begin{center}
newcolumntype{C}[1]{>{hsize=#1hsizecenteringarraybackslash}X}
newcolumntype{R}[1]{>{hsize=#1hsizeraggedrightarraybackslash}X}
begin{tabularx}{1textwidth}{|l|C{0.5}|R{1.5}|}
hline
it{Approved Revision} & it Revision Date & it Details\
hline
small Rev01-Apr0419-JL & April 4 -2019 & First document\
hline
end{tabularx}
end{center}
......
end{document}
I need to have the table above the title... any suggestions? Thanks -
tables xetex
New contributor
add a comment |
I am looking to put a table in the top of the title page.
Reason: The document (an SOP) requires that all revisions are listed at the top of the title, on the first page.
I can't figure out how to do this...image below shows what I can do using
the following code:
begin{document}
maketitle
begin{center}
newcolumntype{C}[1]{>{hsize=#1hsizecenteringarraybackslash}X}
newcolumntype{R}[1]{>{hsize=#1hsizeraggedrightarraybackslash}X}
begin{tabularx}{1textwidth}{|l|C{0.5}|R{1.5}|}
hline
it{Approved Revision} & it Revision Date & it Details\
hline
small Rev01-Apr0419-JL & April 4 -2019 & First document\
hline
end{tabularx}
end{center}
......
end{document}
I need to have the table above the title... any suggestions? Thanks -
tables xetex
New contributor
2
Could you please make your code compilable by adding the documentclass and the relevant packages? Apart from that you might be interested in thetitlepage
environment or thetitling
package.
– leandriis
8 hours ago
I believe thatarticle
, likeamsart
, explicitly prohibits putting floats at the top of the first page. However,amsart
has the facility for inserting a journal logo in the upper left-hand corner, and that mechanism might be used to sneak in your table of revisions. I don't currently have local access to tex, so can't provide the detailed code, but that's where I'd adapt it from.
– barbara beeton
8 hours ago
add a comment |
I am looking to put a table in the top of the title page.
Reason: The document (an SOP) requires that all revisions are listed at the top of the title, on the first page.
I can't figure out how to do this...image below shows what I can do using
the following code:
begin{document}
maketitle
begin{center}
newcolumntype{C}[1]{>{hsize=#1hsizecenteringarraybackslash}X}
newcolumntype{R}[1]{>{hsize=#1hsizeraggedrightarraybackslash}X}
begin{tabularx}{1textwidth}{|l|C{0.5}|R{1.5}|}
hline
it{Approved Revision} & it Revision Date & it Details\
hline
small Rev01-Apr0419-JL & April 4 -2019 & First document\
hline
end{tabularx}
end{center}
......
end{document}
I need to have the table above the title... any suggestions? Thanks -
tables xetex
New contributor
I am looking to put a table in the top of the title page.
Reason: The document (an SOP) requires that all revisions are listed at the top of the title, on the first page.
I can't figure out how to do this...image below shows what I can do using
the following code:
begin{document}
maketitle
begin{center}
newcolumntype{C}[1]{>{hsize=#1hsizecenteringarraybackslash}X}
newcolumntype{R}[1]{>{hsize=#1hsizeraggedrightarraybackslash}X}
begin{tabularx}{1textwidth}{|l|C{0.5}|R{1.5}|}
hline
it{Approved Revision} & it Revision Date & it Details\
hline
small Rev01-Apr0419-JL & April 4 -2019 & First document\
hline
end{tabularx}
end{center}
......
end{document}
I need to have the table above the title... any suggestions? Thanks -
tables xetex
tables xetex
New contributor
New contributor
New contributor
asked 8 hours ago
JoernLJoernL
62
62
New contributor
New contributor
2
Could you please make your code compilable by adding the documentclass and the relevant packages? Apart from that you might be interested in thetitlepage
environment or thetitling
package.
– leandriis
8 hours ago
I believe thatarticle
, likeamsart
, explicitly prohibits putting floats at the top of the first page. However,amsart
has the facility for inserting a journal logo in the upper left-hand corner, and that mechanism might be used to sneak in your table of revisions. I don't currently have local access to tex, so can't provide the detailed code, but that's where I'd adapt it from.
– barbara beeton
8 hours ago
add a comment |
2
Could you please make your code compilable by adding the documentclass and the relevant packages? Apart from that you might be interested in thetitlepage
environment or thetitling
package.
– leandriis
8 hours ago
I believe thatarticle
, likeamsart
, explicitly prohibits putting floats at the top of the first page. However,amsart
has the facility for inserting a journal logo in the upper left-hand corner, and that mechanism might be used to sneak in your table of revisions. I don't currently have local access to tex, so can't provide the detailed code, but that's where I'd adapt it from.
– barbara beeton
8 hours ago
2
2
Could you please make your code compilable by adding the documentclass and the relevant packages? Apart from that you might be interested in the
titlepage
environment or the titling
package.– leandriis
8 hours ago
Could you please make your code compilable by adding the documentclass and the relevant packages? Apart from that you might be interested in the
titlepage
environment or the titling
package.– leandriis
8 hours ago
I believe that
article
, like amsart
, explicitly prohibits putting floats at the top of the first page. However, amsart
has the facility for inserting a journal logo in the upper left-hand corner, and that mechanism might be used to sneak in your table of revisions. I don't currently have local access to tex, so can't provide the detailed code, but that's where I'd adapt it from.– barbara beeton
8 hours ago
I believe that
article
, like amsart
, explicitly prohibits putting floats at the top of the first page. However, amsart
has the facility for inserting a journal logo in the upper left-hand corner, and that mechanism might be used to sneak in your table of revisions. I don't currently have local access to tex, so can't provide the detailed code, but that's where I'd adapt it from.– barbara beeton
8 hours ago
add a comment |
1 Answer
1
active
oldest
votes
You can use a nonstandard page style for the first page. Adjust the amount of raising to your liking.
documentclass{article}
usepackage{tabularx}
makeatletter
defps@first{%
let@mkboth@gobbletwo
def@oddhead{revision@table}%
let@evenhead@oddhead
def@oddfoot{reset@fonthfilthepagehfil}%
let@evenfoot@oddfoot
}
defrevision@table{raisebox{0.5in}[0pt][0pt]{%
begin{tabularx}{1textwidth}[b]{|l|c|>{raggedrightarraybackslash}X|}
hline
itshape Approved Revision & itshape Revision Date & itshape Details\
hline
joel@revision & joel@revdate & joel@revnote \
hline
end{tabularx}%
}}
defrevision#1{defjoel@revision{#1}}
defrevisiondate#1{defjoel@revdate{#1}}
defrevisionnote#1{defjoel@revnote{#1}}
makeatother
begin{document}
revision{Rev01-Apr0419-JL}
revisiondate{April 4, 2019}
revisionnote{First document}
title{Standard Operating Procedure \ for LISAR Instrument}
author{Rev01-Apr0419-JL}
date{}
maketitle
thispagestyle{first}
end{document}
add a comment |
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
});
}
});
JoernL 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%2f483423%2fxelatex-how-to-put-a-table-above-the-title-in-documentclassarticle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use a nonstandard page style for the first page. Adjust the amount of raising to your liking.
documentclass{article}
usepackage{tabularx}
makeatletter
defps@first{%
let@mkboth@gobbletwo
def@oddhead{revision@table}%
let@evenhead@oddhead
def@oddfoot{reset@fonthfilthepagehfil}%
let@evenfoot@oddfoot
}
defrevision@table{raisebox{0.5in}[0pt][0pt]{%
begin{tabularx}{1textwidth}[b]{|l|c|>{raggedrightarraybackslash}X|}
hline
itshape Approved Revision & itshape Revision Date & itshape Details\
hline
joel@revision & joel@revdate & joel@revnote \
hline
end{tabularx}%
}}
defrevision#1{defjoel@revision{#1}}
defrevisiondate#1{defjoel@revdate{#1}}
defrevisionnote#1{defjoel@revnote{#1}}
makeatother
begin{document}
revision{Rev01-Apr0419-JL}
revisiondate{April 4, 2019}
revisionnote{First document}
title{Standard Operating Procedure \ for LISAR Instrument}
author{Rev01-Apr0419-JL}
date{}
maketitle
thispagestyle{first}
end{document}
add a comment |
You can use a nonstandard page style for the first page. Adjust the amount of raising to your liking.
documentclass{article}
usepackage{tabularx}
makeatletter
defps@first{%
let@mkboth@gobbletwo
def@oddhead{revision@table}%
let@evenhead@oddhead
def@oddfoot{reset@fonthfilthepagehfil}%
let@evenfoot@oddfoot
}
defrevision@table{raisebox{0.5in}[0pt][0pt]{%
begin{tabularx}{1textwidth}[b]{|l|c|>{raggedrightarraybackslash}X|}
hline
itshape Approved Revision & itshape Revision Date & itshape Details\
hline
joel@revision & joel@revdate & joel@revnote \
hline
end{tabularx}%
}}
defrevision#1{defjoel@revision{#1}}
defrevisiondate#1{defjoel@revdate{#1}}
defrevisionnote#1{defjoel@revnote{#1}}
makeatother
begin{document}
revision{Rev01-Apr0419-JL}
revisiondate{April 4, 2019}
revisionnote{First document}
title{Standard Operating Procedure \ for LISAR Instrument}
author{Rev01-Apr0419-JL}
date{}
maketitle
thispagestyle{first}
end{document}
add a comment |
You can use a nonstandard page style for the first page. Adjust the amount of raising to your liking.
documentclass{article}
usepackage{tabularx}
makeatletter
defps@first{%
let@mkboth@gobbletwo
def@oddhead{revision@table}%
let@evenhead@oddhead
def@oddfoot{reset@fonthfilthepagehfil}%
let@evenfoot@oddfoot
}
defrevision@table{raisebox{0.5in}[0pt][0pt]{%
begin{tabularx}{1textwidth}[b]{|l|c|>{raggedrightarraybackslash}X|}
hline
itshape Approved Revision & itshape Revision Date & itshape Details\
hline
joel@revision & joel@revdate & joel@revnote \
hline
end{tabularx}%
}}
defrevision#1{defjoel@revision{#1}}
defrevisiondate#1{defjoel@revdate{#1}}
defrevisionnote#1{defjoel@revnote{#1}}
makeatother
begin{document}
revision{Rev01-Apr0419-JL}
revisiondate{April 4, 2019}
revisionnote{First document}
title{Standard Operating Procedure \ for LISAR Instrument}
author{Rev01-Apr0419-JL}
date{}
maketitle
thispagestyle{first}
end{document}
You can use a nonstandard page style for the first page. Adjust the amount of raising to your liking.
documentclass{article}
usepackage{tabularx}
makeatletter
defps@first{%
let@mkboth@gobbletwo
def@oddhead{revision@table}%
let@evenhead@oddhead
def@oddfoot{reset@fonthfilthepagehfil}%
let@evenfoot@oddfoot
}
defrevision@table{raisebox{0.5in}[0pt][0pt]{%
begin{tabularx}{1textwidth}[b]{|l|c|>{raggedrightarraybackslash}X|}
hline
itshape Approved Revision & itshape Revision Date & itshape Details\
hline
joel@revision & joel@revdate & joel@revnote \
hline
end{tabularx}%
}}
defrevision#1{defjoel@revision{#1}}
defrevisiondate#1{defjoel@revdate{#1}}
defrevisionnote#1{defjoel@revnote{#1}}
makeatother
begin{document}
revision{Rev01-Apr0419-JL}
revisiondate{April 4, 2019}
revisionnote{First document}
title{Standard Operating Procedure \ for LISAR Instrument}
author{Rev01-Apr0419-JL}
date{}
maketitle
thispagestyle{first}
end{document}
answered 7 hours ago
egregegreg
732k8919303253
732k8919303253
add a comment |
add a comment |
JoernL is a new contributor. Be nice, and check out our Code of Conduct.
JoernL is a new contributor. Be nice, and check out our Code of Conduct.
JoernL is a new contributor. Be nice, and check out our Code of Conduct.
JoernL 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%2f483423%2fxelatex-how-to-put-a-table-above-the-title-in-documentclassarticle%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
2
Could you please make your code compilable by adding the documentclass and the relevant packages? Apart from that you might be interested in the
titlepage
environment or thetitling
package.– leandriis
8 hours ago
I believe that
article
, likeamsart
, explicitly prohibits putting floats at the top of the first page. However,amsart
has the facility for inserting a journal logo in the upper left-hand corner, and that mechanism might be used to sneak in your table of revisions. I don't currently have local access to tex, so can't provide the detailed code, but that's where I'd adapt it from.– barbara beeton
8 hours ago