How to create those tables in Latex? (value table)Diagonal lines in table cellHow to Create Comparison Tables in LaTeX?table of tables using memoirHow to increase the vertical space between two “touching” tables?How to create a new line in the table cellhow to create tableshow to create a table with the text of columns centered and justified?how to adjust the header of a table ?How to insert a table in TikzEdt? (Create Tikz diagrams with tables using a GUI)How should I create a table in Latex?Tables and Picture inside a main table

What do you call the hair or body hair you trim off your body?

Capital gains on stocks sold to take initial investment off the table

Which creature is depicted in this Xanathar's Guide illustration of a war mage?

How to describe a building set which is like LEGO without using the "LEGO" word?

What is the status of the Lannisters after Season 8 Episode 5, "The Bells"?

Does the Rogue's Reliable Talent feature work for thieves' tools, since the rogue is proficient in them?

Testing if os.path.exists with ArcPy?

Is random forest for regression a 'true' regression?

Why when I add jam to my tea it stops producing thin "membrane" on top?

Slice a list based on an index and items behind it in python

Does the wearer know what items are in which patch in the Robe of Useful items?

Windows 10 lock screen - display my own random images

Network latencies between opposite ends of the Earth

Why is the Advance Variation considered strong vs the Caro-Kann but not vs the Scandinavian?

Can my American children re-enter the USA by International flight with a passport card? Being that their passport book has expired

the correct order of manual install WP and SSL on server

What information exactly does an instruction cache store?

Will there be more tax deductions if I put the house completely under my name, versus doing a joint ownership?

To whom did Varys write those letters in Game of Thrones S8E5?

How to redirect stdout to a file, and stdout+stderr to another one?

Will consteval functions allow template parameters dependent on function arguments?

Holding rent money for my friend which amounts to over $10k?

Single word that parallels "Recent" when discussing the near future

Why did the UK remove the 'European Union' from its passport?



How to create those tables in Latex? (value table)


Diagonal lines in table cellHow to Create Comparison Tables in LaTeX?table of tables using memoirHow to increase the vertical space between two “touching” tables?How to create a new line in the table cellhow to create tableshow to create a table with the text of columns centered and justified?how to adjust the header of a table ?How to insert a table in TikzEdt? (Create Tikz diagrams with tables using a GUI)How should I create a table in Latex?Tables and Picture inside a main table













0















I'm looking for a code to create those two tables, could someone help me?
enter image description here










share|improve this question

















  • 3





    Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with begintabularcccc or beginarraycccc. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell

    – leandriis
    May 4 at 9:07
















0















I'm looking for a code to create those two tables, could someone help me?
enter image description here










share|improve this question

















  • 3





    Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with begintabularcccc or beginarraycccc. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell

    – leandriis
    May 4 at 9:07














0












0








0


0






I'm looking for a code to create those two tables, could someone help me?
enter image description here










share|improve this question














I'm looking for a code to create those two tables, could someone help me?
enter image description here







tables






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked May 4 at 9:01









Joshua.MJoshua.M

71




71







  • 3





    Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with begintabularcccc or beginarraycccc. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell

    – leandriis
    May 4 at 9:07













  • 3





    Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with begintabularcccc or beginarraycccc. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell

    – leandriis
    May 4 at 9:07








3




3





Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with begintabularcccc or beginarraycccc. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell

– leandriis
May 4 at 9:07






Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with begintabularcccc or beginarraycccc. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell

– leandriis
May 4 at 9:07











1 Answer
1






active

oldest

votes


















5














For this I'd use array I think (it is maths after all and not a table containing text). Additionally I'd use siunitx and its S type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:



documentclass[border=3.14]standalone

usepackagesiunitx
usepackagebooktabs

begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument


enter image description here



EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.



documentclass[border=3.14]standalone

usepackagesiunitx

begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument


enter image description here






share|improve this answer

























  • Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

    – Sebastiano
    May 4 at 9:16











  • @Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

    – Skillmon
    May 4 at 9:21











  • @Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

    – Skillmon
    May 4 at 9:23











  • No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

    – Sebastiano
    May 4 at 9:24






  • 1





    @Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

    – Skillmon
    May 4 at 10:17











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f489116%2fhow-to-create-those-tables-in-latex-value-table%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









5














For this I'd use array I think (it is maths after all and not a table containing text). Additionally I'd use siunitx and its S type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:



documentclass[border=3.14]standalone

usepackagesiunitx
usepackagebooktabs

begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument


enter image description here



EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.



documentclass[border=3.14]standalone

usepackagesiunitx

begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument


enter image description here






share|improve this answer

























  • Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

    – Sebastiano
    May 4 at 9:16











  • @Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

    – Skillmon
    May 4 at 9:21











  • @Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

    – Skillmon
    May 4 at 9:23











  • No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

    – Sebastiano
    May 4 at 9:24






  • 1





    @Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

    – Skillmon
    May 4 at 10:17















5














For this I'd use array I think (it is maths after all and not a table containing text). Additionally I'd use siunitx and its S type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:



documentclass[border=3.14]standalone

usepackagesiunitx
usepackagebooktabs

begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument


enter image description here



EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.



documentclass[border=3.14]standalone

usepackagesiunitx

begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument


enter image description here






share|improve this answer

























  • Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

    – Sebastiano
    May 4 at 9:16











  • @Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

    – Skillmon
    May 4 at 9:21











  • @Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

    – Skillmon
    May 4 at 9:23











  • No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

    – Sebastiano
    May 4 at 9:24






  • 1





    @Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

    – Skillmon
    May 4 at 10:17













5












5








5







For this I'd use array I think (it is maths after all and not a table containing text). Additionally I'd use siunitx and its S type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:



documentclass[border=3.14]standalone

usepackagesiunitx
usepackagebooktabs

begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument


enter image description here



EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.



documentclass[border=3.14]standalone

usepackagesiunitx

begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument


enter image description here






share|improve this answer















For this I'd use array I think (it is maths after all and not a table containing text). Additionally I'd use siunitx and its S type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:



documentclass[border=3.14]standalone

usepackagesiunitx
usepackagebooktabs

begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument


enter image description here



EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.



documentclass[border=3.14]standalone

usepackagesiunitx

begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited May 4 at 10:19

























answered May 4 at 9:09









SkillmonSkillmon

24.8k12351




24.8k12351












  • Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

    – Sebastiano
    May 4 at 9:16











  • @Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

    – Skillmon
    May 4 at 9:21











  • @Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

    – Skillmon
    May 4 at 9:23











  • No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

    – Sebastiano
    May 4 at 9:24






  • 1





    @Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

    – Skillmon
    May 4 at 10:17

















  • Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

    – Sebastiano
    May 4 at 9:16











  • @Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

    – Skillmon
    May 4 at 9:21











  • @Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

    – Skillmon
    May 4 at 9:23











  • No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

    – Sebastiano
    May 4 at 9:24






  • 1





    @Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

    – Skillmon
    May 4 at 10:17
















Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

– Sebastiano
May 4 at 9:16





Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.

– Sebastiano
May 4 at 9:16













@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

– Skillmon
May 4 at 9:21





@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use c|SSS instead for the array's preamble and hline instead of midrule, drop toprule and bottomrule, and you got what you want.

– Skillmon
May 4 at 9:21













@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

– Skillmon
May 4 at 9:23





@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.

– Skillmon
May 4 at 9:23













No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

– Sebastiano
May 4 at 9:24





No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.

– Sebastiano
May 4 at 9:24




1




1





@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

– Skillmon
May 4 at 10:17





@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.

– Skillmon
May 4 at 10:17

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f489116%2fhow-to-create-those-tables-in-latex-value-table%23new-answer', 'question_page');

);

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







Popular posts from this blog

Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company