Phyllis Thaxter, atriz que interpreta Martha Kent em Superman.
Martha Kent é uma personagem fictícia do Universo DC. É a mãe adotiva de Clark Kent, o Superman.
Índice
1História
2Os nomes
3Poderes e habilidades
4Outras mídias
História |
Fazendeiros de Smallville, uma cidade no interior do Kansas, Jonathan e Martha Kent desejavam muito um filho. Porém, Martha não conseguia engravidar. Passeando pelo campo, o casal vê uma espaçonave cair do céu. O veículo trazia um bebê, a quem eles adotaram e chamaram de Clark.
Anos mais tarde eles descobrem que a criança tinha superpoderes, tornando-se os guardiões de sua identidade secreta. Martha costura um uniforme para o filho, encorajando-o em sua carreira de super herói. Somente após uns 4 anos em sua carreira heróica, é que Superman descobriu que seus pais verdadeiros eram Jor-El e Lara[carece de fontes?].
Os nomes |
Martha Kent (Eva Marie Saint) em Superman Returns.
Os nomes dos pais adotivos de Superman variaram muito de versão para versão. Na era de ouro dos quadrinhos, seus nomes eram John e Mary Kent, e eles haviam morrido pouco antes de Clark começar sua identidade de Superman. Na série de Superman com Kirk Alyn, eles eram Eben and Sarah Kent. Em As aventuras do Superman, com George Reeves, os pais eram chamados Eben e Martha Kent.
Poderes e habilidades |
O casal Kent não tem poderes; eles têm apenas as aptidões de pessoas comuns de sua idade. Martha possui grande afinidade com culinária.
Outras mídias |
Diane Lane, a Martha Kent em Man of Steel.
No filme de 1978, a atriz Phyllis Thaxter interpreta Martha.
Na série Lois & Clark, Martha foi vivida pela atriz K. Callan.
Na série Smallville, Annette O'Toole assume o papel de Martha.
No filme Superman - O Retorno, Martha é interpretada pela atriz Eva Marie Saint.
Nos filmes Man of Steel (2013), e Batman v Superman: Dawn of Justice (2016), a atriz Diane Lane interpretou Martha.
v•e
A história e a mitologia de Superman
História do Superman • Mitologia ( Krypton • Kryptonita ) • História de Action Comics • Impacto cultural
Origem
The Reign of the Superman (1933) • Criação e concepção (1933-1938) • Action Comics #1 (1938) • The Man of Steel (1986)
Temas
Origem • História ficcional • Poderes e habilidades • Caracterização e análise literária • Superman e religião • Disputa pelos direitos sobre Superman • Superboy • Superman da Terra 2
Evolução
Superman na "Era de Prata" (1956-1970) • Superman na "Era de Bronze" (1970-1985) • Superman na década de 1980 • Whatever Happened to the Man of Tomorrow? (1986) • Superman de John Byrne (1986-1988) • Superman na década de 1990 • A Morte do Superman (1992-1993) • Superman Plus • Superman de Jeph Loeb (1999-2005) • Presidência de Lex Luthor (2000-2004) • Superman em Os Novos 52 (2011-c.2016)
Elenco de apoio
Aliados
Jor-El • Lara Lor-Van • Supergirl • Jonathan Kent • Martha Kent • Aço • Asa Noturna • Dan Turpin • Perry White • Lana Lang • Chloe Sullivan • Lois Lane • Lori Lemaris • Lucy Lane • Inspetor Handerson • Pássaro Flamejante • Poderosa • Pete Ross • Professor Hamilton • Maggie Sawyer • Jimmy Olsen • Superboy (Kal-El/Kon-El) • Krypto • Professor Phineas Potter • Alura • Zor-El • Bibbo Bibbowski • Streaky
Inimigos
Amazo • Apocalypse • Banshee Prateada • Bizarro • Brainiac • Conduíte • Darkseid • Gog • General Zod • Ursa • Non • Faora • Imperiex • Intergang • Lex Luthor • Lorde-Mor Roval • Mala • Maxima • Metallo • Mongul • Mr. Mxyzptlk • Parasita • Preus • Superboy Prime • Superciborgue • Superman Composto • Toyman • Ultraman • Os Três Supercriminosos • Maquinista
Lugares
Belle Reve • Fortaleza da Solidão • LexCorp • Mundo Compacto • Metropólis • Planeta Diário • Projeto Cadmus • Smallville • Zona Fantasma
Em outras mídias
Superman em desenhos animados • Superman no cinema • Superman na televisão
Clark Kent · Chloe Sullivan · Lana Lang · Lex Luthor · Martha Kent · Jonathan Kent · Pete Ross · Whitney Fordman · Lionel Luthor · Jason Teague · Lois Lane · Jimmy Olsen · Oliver Queen · Kara Kent · Tess Mercer · Davis Bloome · Zod
Personagens recorrentes · Outros personagens
Elenco principal
Tom Welling · Allison Mack · Kristin Kreuk · Michael Rosenbaum · Annette O'Toole · John Schneider · Sam Jones III · Eric Johnson · John Glover · Jensen Ackles · Erica Durance · Aaron Ashmore · Justin Hartley · Laura Vandervoort · Cassidy Freeman · Sam Witwer · Callum Blue
Episódios especiais
Piloto · Tempestade · Sociedade · Final (partes 1 e 2)
Artigos relacionados
Lista de episódios · Tema de abertura · Chloe Chronicles · Smallville (cidade fictícia) · Metrópolis (cidade fictícia) · Planeta Diário · Kryptonita · Krypto · Superboy (Kal-El) · Bizarro · Superman · Liga da Justiça · Aquaman (telessérie)
1
This question is a follow up of this one. I am trying to run a command through the command line on a remote machine running Windows 7 from a workstation running Debian in an SSH session on that machine. The setup is basically as follows: debian box 1 === (SSH) ===> debian box 2 === (RDP) ===> Windows 7 I have tried running rdesktop from debian box 2 : rdesktop <Windows 7 box network address> -u username -p password -r disk:local="./TestRDP" -s "cmd.exe /K net use C: \\tsclientlocal & C:\test.bat & logoff" but cmd.exe is not launched on the remote device. I have also tried to open up cmd.exe on its own: rdesktop <Windows 7 box network address> -u username -p password -s "cmd.exe" but the terminal is not launched upon login ( rdesktop successf...
3
Assumed I want to draw three simple graphs based on the following illustration: How can I plot those three graphs? I've tried to create something like this: Minimum Working Example (MWE): documentclass{standalone} usepackage{pgfplots} begin{document} begin{tikzpicture} begin{axis}[domain=0:1] addplot+[no marks, samples=100] {exp(3*x)}; addplot+[no marks, samples=100] {(-exp(3*x)+20)}; end{axis} end{tikzpicture} end{document} Screenshot of the current state: Description of the issue: However, I don't get the point on how to figure out the function of the third graph as well as how to clip the graphs in x and y direction to align them centered in the plot. It is not necessary to be completely precise, the accuracy of my upper template w...
up vote
0
down vote
favorite
So, my friend has been trying to install Matlab 2018b and he has encountered the following message just after the installation reaches 100%. Matlab installation additional configuration steps message I did some digging around in the Matlab forums and found out that to use the additional components, one should install a compiler and then use the following commands: mex -setup C mex -setup C++ Can anyone help me regarding this error? If this is indeed the solution then how can I execute those steps? Also, he says that even if he presses next, he cannot use matlab. The OS in use is Windows 10.
installation matlab
share | improve this question
...