diff --git a/.github/workflows/update-citations.yml b/.github/workflows/update-citations.yml new file mode 100644 index 0000000..3335d7e --- /dev/null +++ b/.github/workflows/update-citations.yml @@ -0,0 +1,101 @@ +name: Update Google Scholar Citations + +on: + schedule: + - cron: "0 0 * * 1" # Monday + - cron: "0 0 * * 3" # Wednesday + - cron: "0 0 * * 5" # Friday + workflow_dispatch: + +jobs: + update-citations: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + # See CUSTOMIZE.md for details on how to set up PAT for triggering subsequent workflows + # with: + # token: ${{ secrets.PAT }} + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.13" + + - name: Install dependencies + run: | + echo "🔧 Installing dependencies..." + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Save current citations.yml hash + id: before + run: | + echo "đŸ“Ļ Checking existing citations.yml hash..." + if [ -f _data/citations.yml ]; then + sha_before=$(sha256sum _data/citations.yml | awk '{print $1}') + echo "sha_before=$sha_before" >> $GITHUB_OUTPUT + echo "📝 SHA before: $sha_before" + else + echo "sha_before=none" >> $GITHUB_OUTPUT + echo "📝 No existing citations.yml file found." + fi + + - name: Run citation update script + id: run_citation_update + shell: bash + run: | + set +e + echo "🚀 Running citation update script (single attempt)..." + start_time=$(date) + timeout 90 python bin/update_scholar_citations.py + status=$? + end_time=$(date) + if [ $status -eq 0 ]; then + echo "✅ Citation update succeeded (started at $start_time, ended at $end_time)." + echo "✅ Citation update succeeded." >> $GITHUB_STEP_SUMMARY + else + echo "❌ Citation update script failed with exit code $status (started at $start_time, ended at $end_time)." + echo "❌ Citation update script failed with exit code $status." >> $GITHUB_STEP_SUMMARY + fi + set -e + + - name: Save new citations.yml hash + id: after + run: | + echo "🔍 Checking updated citations.yml hash..." + if [ -f _data/citations.yml ]; then + sha_after=$(sha256sum _data/citations.yml | awk '{print $1}') + echo "sha_after=$sha_after" >> $GITHUB_OUTPUT + echo "📝 SHA after: $sha_after" + else + echo "sha_after=none" >> $GITHUB_OUTPUT + echo "📝 citations.yml was not created or is missing." + fi + + - name: Report citations.yml change in summary + run: | + echo "📋 Comparing citation file hashes..." + if [ "${{ steps.before.outputs.sha_before }}" != "${{ steps.after.outputs.sha_after }}" ]; then + echo "✅ _data/citations.yml was updated." + echo "✅ _data/citations.yml was updated." >> $GITHUB_STEP_SUMMARY + else + echo "â„šī¸ _data/citations.yml was not changed." + echo "â„šī¸ _data/citations.yml was not changed." >> $GITHUB_STEP_SUMMARY + fi + + - name: Configure Git + run: | + git config --local user.email "actions@github.com" + git config --local user.name "GitHub Actions" + echo "🔧 Git configured." + + - name: Commit and push if changed + run: | + git add _data/citations.yml + git diff --staged --quiet || ( + echo "📤 Committing and pushing changes..." + git commit -m "Update Google Scholar citations" + git push + ) diff --git a/.gitignore b/.gitignore index 53af7d0..7f75be7 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,5 @@ Gemfile.lock assets/libs/ node_modules/ vendor -.idea \ No newline at end of file +.idea +.venv diff --git a/.prettierignore b/.prettierignore index b276dd9..ed2331e 100644 --- a/.prettierignore +++ b/.prettierignore @@ -10,3 +10,5 @@ _posts/2015-10-20-math.md _sass/font-awesome/*.scss _sass/tabler-icons/*.scss _scripts/* +# Ignore citation YAML file generated by script +_data/citations.yml diff --git a/CUSTOMIZE.md b/CUSTOMIZE.md index 6c4f3ab..ca6dfb6 100644 --- a/CUSTOMIZE.md +++ b/CUSTOMIZE.md @@ -345,3 +345,47 @@ In this folder you need to store your file in the same format as you would in `_ - `2025-08-27-file2.md` will be posted exactly on 27-August-2025 - `File3.md` will not be posted at all - `2026-02-31-file4.md` is supposed to be posted on 31-February-2026, but there is no 31st in February hence this file will never be posted either + +## Setting up a Personal Access Token (PAT) for Google Scholar Citation Updates + +> [!TIP] +> After setting up al-folio you may want to run `python3 bin/update_citations.py` to fill the `_data/citations.yml` file with your Google Scholar citation counts. + +This project includes an automated workflow to update the citation counts for your publications using Google Scholar. +The workflow commits changes to `_data/citations.yml` directly to the `main` branch. +By default, the `GITHUB_TOKEN` will be used to commit the changes. +However, this token does not have permission to trigger subsequent workflows, such as the site rebuild workflow. +In order to deploy the changes from `main`, you can manually trigger the `deploy` workflow. + +> [!TIP] +> To ensure that these commits can trigger further GitHub Actions workflows (such as site rebuilds), you can use a Personal Access Token (PAT) instead of the default GitHub Actions token. +> If you have set up a PAT, citation updates will trigger further workflows (such as site rebuilds) after committing changes. In order to run the action with a PAT, you need to uncomment the following lines from the workflow file (`update-citations.yml`): +> +> ```yaml +> with: +> token: ${{ secrets.PAT }} +> ``` + +### Why is a PAT required? + +GitHub restricts the default `GITHUB_TOKEN` from triggering other workflows when a commit is made from within a workflow. Using a PAT overcomes this limitation and allows for full automation. + +### How to set up the PAT + +1. **Create a Personal Access Token** + + - Go to [GitHub Settings > Developer settings > Personal access tokens](https://github.com/settings/tokens). + - Click "Generate new token" (classic or fine-grained). + - Grant at least the following permissions: + - `repo` (for classic tokens if repo is private), `public_repo` (for classic tokens if repo is public) or `contents: read/write` (for fine-grained tokens) + - Save the token somewhere safe. + +2. **Add the PAT as a repository secret** + + - Go to your repository on GitHub. + - Navigate to `Settings` > `Secrets and variables` > `Actions` > `New repository secret`. + - Name the secret `PAT` (must match the name used in the workflow). + - Paste your PAT and save. + +3. **Workflow usage** + The workflow `.github/workflows/update-citations.yml` uses this PAT to commit updates to `_data/citations.yml`. diff --git a/_data/citations.yml b/_data/citations.yml new file mode 100644 index 0000000..540ece5 --- /dev/null +++ b/_data/citations.yml @@ -0,0 +1,4179 @@ +metadata: + last_updated: '2025-11-09' +papers: + qc6CJjYAAAAJ:-1WLWRmjvKAC: + citations: 2 + title: THE DULONG-PETIT LAW OF SPECIFIC HEATS + year: Unknown Year + qc6CJjYAAAAJ:-38epGy1wY0C: + citations: 8 + title: "Antwort auf eine Bemerkung von J. Stark:\u201E\xDCber eine Anwendung des Planckschen Elementargesetzes\u2026\u201D \uFE01" + year: '2006' + qc6CJjYAAAAJ:-3_NAp5WSNkC: + citations: 2 + title: "Die Grundlage der allgemeinen Relativit\xE4tstheorie, 20 M\xE4r 1916" + year: Unknown Year + qc6CJjYAAAAJ:-GalPxRzH2oC: + citations: 0 + title: 'The Palestine Troubles: Einstein''s Protest, Zionism''s Basis and Achievement; the Mandatory''s Task' + year: '1929' + qc6CJjYAAAAJ:-LHtoeeytlUC: + citations: 2496 + title: 'Albert Einstein: Philosopher Scientist' + year: '1969' + qc6CJjYAAAAJ:-R_Z4shfoosC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 22 Jul 1917' + year: Unknown Year + qc6CJjYAAAAJ:-Viv1fr_sjoC: + citations: 141 + title: The special theory of relativity + year: '1905' + qc6CJjYAAAAJ:-_cDHGlXAtsC: + citations: 7634 + title: Sitzungsberichte der Preussischen Akad. d + year: '1917' + qc6CJjYAAAAJ:-fj4grS0xi0C: + citations: 90 + title: 'Conceptions scientifiques, morales et sociales: traduit de l''anglais par Maurice Solovine' + year: '1952' + qc6CJjYAAAAJ:-l7FTdOV6Y0C: + citations: 192 + title: Brownian motion + year: '1936' + qc6CJjYAAAAJ:-qpA3cGbmHsC: + citations: 533 + title: On the Relation between the Expansion and the Mean Density of the Universe + year: '1932' + qc6CJjYAAAAJ:-vzq6BoH5oUC: + citations: 24 + title: "Bemerkung zu der Abhandlung von WR He\" Beitrag zur Theorie der Viskosit\xE4t heterogener Systeme\"" + year: Unknown Year + qc6CJjYAAAAJ:00hq1xGbIBsC: + citations: 0 + title: In Memory of Emmy Noether, Visiting Professor of Mathematics, Bryn Mawr College, 1922-April 1935 + year: Unknown Year + qc6CJjYAAAAJ:041faMmbr2QC: + citations: 39 + title: La relatividad + year: '1970' + qc6CJjYAAAAJ:0765WKWsAZMC: + citations: 8 + title: Remarks to the essays appearing in this collected volume + year: '1951' + qc6CJjYAAAAJ:08ZZubdj9fEC: + citations: 29 + title: 'Einstein''s 1912 manuscript on the special theory of relativity: a facsimile' + year: '1996' + qc6CJjYAAAAJ:0D9gKr9vLLUC: + citations: 10 + title: Elementary Considerations on the Interpretation of the Foundations of Quantum Mechanics + year: '2011' + qc6CJjYAAAAJ:0EnyYjriUFMC: + citations: 1153 + title: 'The Born Einstein Letters: correspondence between Albert Einstein and Max and Hedwig Born from 1916 to 1955 with commentaries by Max Born. Translated by Irene Born' + year: '1971' + qc6CJjYAAAAJ:0KZCP5UExFUC: + citations: 35 + title: 'Einstein''s Annalen papers: the complete collection 1901-1922' + year: '2005' + qc6CJjYAAAAJ:0KrOiVmbFBYC: + citations: 0 + title: "Zeitungen gleichen Sparb\xFCchern: dass sie voll geschrieben sind, bedeutet noch nichts." + year: Unknown Year + qc6CJjYAAAAJ:0SnApaDgcCoC: + citations: 71 + title: podolsky B and Rosen N 1935 Phys + year: Unknown Year + qc6CJjYAAAAJ:0UEtxawf5sEC: + citations: 0 + title: "II. A. On The Inevitability and Prevention Of Nuclear War/Or. Martin E. Hellman The unleashed power of the atom has changed everything save our modes of thinking and we thus \u2026" + year: '1986' + qc6CJjYAAAAJ:0VGYH9MJNTkC: + citations: 0 + title: "Aux historiens des travaux d'Einstein sur la th\xE9orie du rayonnement quantique." + year: Unknown Year + qc6CJjYAAAAJ:0izwh0c-50kC: + citations: 0 + title: "Professora, a maioria da turma n\xE3o est\xE1 entendendo nada! Construindo olhares e atitudes transdisciplinares" + year: Unknown Year + qc6CJjYAAAAJ:0kYikfLtzSYC: + citations: 0 + title: 'The Einstein Theory of Relativity: A Concise Statement by Prof. HA Lorentz' + year: '2009' + qc6CJjYAAAAJ:0klj8wIChNAC: + citations: 0 + title: Sulla teoria della relativita del tempo e dello spazio di Alberto Einsteni, nei rapporti dei fenomeni luminosi ed elettrici + year: '1922' + qc6CJjYAAAAJ:0q7iQwrhYWUC: + citations: 14 + title: Correspondencia con Michele Besso:(1903-1955) + year: '1994' + qc6CJjYAAAAJ:0t1ZDozeHsAC: + citations: 4 + title: Essays in science + year: '1954' + qc6CJjYAAAAJ:0wD49__q8KEC: + citations: 0 + title: 'Albert Einstein] to Heinrich Zangger: Letter, 10 Mar 1917' + year: Unknown Year + qc6CJjYAAAAJ:0z-ogHnYXbUC: + citations: 5 + title: reprinted 1956. On the theory of Brownian movement + year: '1906' + qc6CJjYAAAAJ:12nnf2f32iYC: + citations: 0 + title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 8 May 1915" + year: Unknown Year + qc6CJjYAAAAJ:17ZO-CJnx_8C: + citations: 240 + title: "Die Nordstr\xF6msche gravitationstheorie vom standpunkt des absoluten Differentialkalk\xFCls" + year: '1914' + qc6CJjYAAAAJ:1AS7WB7zg6gC: + citations: 79 + title: "L'\xE9ther et la th\xE9orie de la relativit\xE9" + year: '1921' + qc6CJjYAAAAJ:1DhOeZtQFr0C: + citations: 421 + title: Principle Points of the General Theory of Relativity + year: '1918' + qc6CJjYAAAAJ:1EM7I_rJWO4C: + citations: 0 + title: Planetary perspective + year: Unknown Year + qc6CJjYAAAAJ:1GSnt3Xtl_sC: + citations: 0 + title: 'Albert Einstein] to Fritz Haber: Letter, before 20 Dec 1918' + year: Unknown Year + qc6CJjYAAAAJ:1HYIo8DVeu0C: + citations: 11 + title: Sulla teoria speciale e generale della relativita:(volgarizzazione) + year: '1921' + qc6CJjYAAAAJ:1Lcp1PKUB6cC: + citations: 0 + title: "Albert Einstein] to Constantin Carath\xE9odory: Letter, 6 Sep 1916" + year: Unknown Year + qc6CJjYAAAAJ:1QLOHW2CHAAC: + citations: 91 + title: Letter to M Besso + year: '1942' + qc6CJjYAAAAJ:1cQOl6Zi554C: + citations: 14 + title: La lucha contra la guerra + year: '1986' + qc6CJjYAAAAJ:1l3MdapXzAoC: + citations: 388 + title: 'Hedwig und Max Born: Briefwechsel 1916-1955' + year: '1969' + qc6CJjYAAAAJ:1lB6hEDIqXYC: + citations: 0 + title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, before 15 Nov 1915' + year: Unknown Year + qc6CJjYAAAAJ:1n-LKbgTOzoC: + citations: 0 + title: On the quantitative theory of radiation + year: '2005' + qc6CJjYAAAAJ:1u-ON_Kw9acC: + citations: 0 + title: Winter Inquiry Land + year: Unknown Year + qc6CJjYAAAAJ:1xBWf43XMUgC: + citations: 40 + title: "Ueber die thermodynamische Theorie der Potentialdifferenz zwischen Metallen und vollst\xE4ndig dissociirten L\xF6sungen ihrer Salze und \xFCber eine elektrische Methode zur Erforschung \u2026" + year: '2005' + qc6CJjYAAAAJ:2168PZyDXAcC: + citations: 0 + title: 'Albert Einstein] to Willem de Sitter: Letter, 8 Aug 1917' + year: Unknown Year + qc6CJjYAAAAJ:22I2CSi1iVUC: + citations: 0 + title: 'Albert Einstein] to David Hilbert: Letter, 12 Apr 1918' + year: Unknown Year + qc6CJjYAAAAJ:23Hg5vt_rPQC: + citations: 0 + title: "Die Einstein-Sammlung der ETH-Bibliothek in Z\xFCrich: ein Ueberblick f\xFCr Ben\xFCtzer der Handschriften-Abteilung" + year: '1970' + qc6CJjYAAAAJ:2C0LhDdYSbcC: + citations: 1481 + title: "Le principe de relativit\xE9 et ses cons\xE9quences dans la physique moderne" + year: '1910' + qc6CJjYAAAAJ:2KloaMYe4IUC: + citations: 32 + title: The Einstein Reader + year: '2006' + qc6CJjYAAAAJ:2Q0AJrNhS-QC: + citations: 71 + title: "Zur Theorie der R\xE4ume mit Riemann\u2010Metrik und Fernparallelismus" + year: '2006' + qc6CJjYAAAAJ:2VmNxfDIOWgC: + citations: 0 + title: 'Albert Einstein] to Conrad Habicht: Letter, 15 Apr 1904' + year: Unknown Year + qc6CJjYAAAAJ:2ZctHUgIzyAC: + citations: 469 + title: "La g\xE9om\xE9trie et l'exp\xE9rience" + year: '1921' + qc6CJjYAAAAJ:2hfDYGh-f1UC: + citations: 0 + title: Planck-Medaille + year: '1928' + qc6CJjYAAAAJ:2mus-XyGPC0C: + citations: 61 + title: Demonstration of the non-existence of gravitational fields with a non-vanishing total mass free of singularities + year: '1941' + qc6CJjYAAAAJ:35r97b3x0nAC: + citations: 6 + title: "Sur le probl\xE8me cosmologique: th\xE9orie de la gravitation g\xE9n\xE9ralis\xE9e" + year: '1951' + qc6CJjYAAAAJ:3ERjdSgnfPsC: + citations: 0 + title: "Mamlekhet Lin\u1E33e\u02BCus: tokhnit li-yetsirat mish\u1E6Dar \u1E25ayim \u1E25adash, ta\u1E33in \u1E7Fe-enoshi" + year: '1939' + qc6CJjYAAAAJ:3NskZpgvI9IC: + citations: 0 + title: "Probl\xE8mes des dimensions de l'espace et la cosmologie." + year: Unknown Year + qc6CJjYAAAAJ:3_iODIlCio4C: + citations: 0 + title: "Le caract\xE8re unique et multiple de la mati\xE8re dans la repr\xE9sentation physique de l'univers." + year: Unknown Year + qc6CJjYAAAAJ:3eo-xq64HD0C: + citations: 0 + title: 'Albert Einstein] to Wilhelm von Siemens: Letter, 4 Jan 1918' + year: Unknown Year + qc6CJjYAAAAJ:3fE2CSJIrl8C: + citations: 327 + title: A generalization of the relativistic theory of gravitation, II + year: '1946' + qc6CJjYAAAAJ:3pYxbvHKFu8C: + citations: 273 + title: Briefwechsel 1916-1955 + year: '1972' + qc6CJjYAAAAJ:3s1wT3WcHBgC: + citations: 77 + title: A brief outline of the development of the theory of relativity + year: '1921' + qc6CJjYAAAAJ:3s2jc9hNhkQC: + citations: 0 + title: Relativity in Newtonian Mechanics and the Michelson-Morley Experiment + year: Unknown Year + qc6CJjYAAAAJ:3vbIHxFL9FgC: + citations: 144 + title: "Experimenteller Nachweis der Amp\xE8reschen Molekularstr\xF6me" + year: '1915' + qc6CJjYAAAAJ:3z7foVzkq2cC: + citations: 10 + title: The nature of reality + year: '1931' + qc6CJjYAAAAJ:45AZ0Vt6gvEC: + citations: 0 + title: Nachtrag zu meiner Arbeit:Thermodynamische Begruendung des photochemischen Aequivalentgesetzes'(from Annalen der Physik 1912) + year: '1993' + qc6CJjYAAAAJ:4Bh_hC5jS3YC: + citations: 6928 + title: Graviton Mass and Inertia Mass + year: '1911' + qc6CJjYAAAAJ:4DMP91E08xMC: + citations: 532 + title: The Origins of the General Theory of Relativity + year: '1933' + qc6CJjYAAAAJ:4E1Y8I9HL1wC: + citations: 10 + title: Gravitationstheorie + year: '1913' + qc6CJjYAAAAJ:4EsMycecMEYC: + citations: 0 + title: 'PERSONAY SOCIEDAD: PERSPECTIVAS PARA EL SIGLO XXI' + year: '2006' + qc6CJjYAAAAJ:4IpgxnMJogoC: + citations: 0 + title: 'Albert Einstein] to Mileva Einstein-Maric: Letter, 17 Apr 1908' + year: Unknown Year + qc6CJjYAAAAJ:4JMBOYKVnBMC: + citations: 2867 + title: Quantentheorie des einatomigen idealen Gases + year: '1924' + qc6CJjYAAAAJ:4QKQTXcH0q8C: + citations: 75 + title: "Kritisches zu einer von Hrn. de Sitter gegebenen L\xF6sung der Gravitationsgleichungen" + year: '1918' + qc6CJjYAAAAJ:4S6zbAYdD6oC: + citations: 14 + title: Naturwissenschaft und Religion + year: '1960' + qc6CJjYAAAAJ:4TOpqqG69KYC: + citations: 33 + title: 'Die Evolution der Physik: Von Newton bis zur Quantentheorie' + year: '1956' + qc6CJjYAAAAJ:4UtermoNRQAC: + citations: 51 + title: Autobiographische Skizze + year: '1956' + qc6CJjYAAAAJ:4ZjPyBmb-CUC: + citations: 1 + title: The nature and cause of mantle heterogeneity + year: Unknown Year + qc6CJjYAAAAJ:4_yl7nwqy4oC: + citations: 0 + title: Einstein on science + year: '2000' + qc6CJjYAAAAJ:4fKUyHm3Qg0C: + citations: 62 + title: 'Albert Einstein, Mileva Maric: The Love Letters' + year: '2000' + qc6CJjYAAAAJ:4hFrxpcac9AC: + citations: 0 + title: "L'heure H at-elle sonn\xE9 pour le monde?: Effets accumulatifs des explosions nucl\xE9aires" + year: '1955' + qc6CJjYAAAAJ:4oJvMfeQlr8C: + citations: 20 + title: Vorschlag zu einem die Natur des elementaren Strahlungs-Emissionsprozesses betreffenden Experiment + year: '1926' + qc6CJjYAAAAJ:4sHRCyKql0sC: + citations: 0 + title: 'The collected papers of Albert Einstein. Vol. 8, The Berlin years: correspondence, 1914-1918:[English translation]' + year: Unknown Year + qc6CJjYAAAAJ:4xIGDXbuNMYC: + citations: 0 + title: "DESARROLLO DE COMPETENCIAS EN LA FORMACI\xD3N INICIAL DE DOCENTES, A PARTIR DE LA EJECUCI\xD3N" + year: Unknown Year + qc6CJjYAAAAJ:4xcnnZsK8tIC: + citations: 5 + title: "La teor\xEDa de la relatividad: Al alcance de todos" + year: '1925' + qc6CJjYAAAAJ:5-bGDoUgDrYC: + citations: 0 + title: 'Einstein, the Man and His Achievement: A Series of Broadcast Talks' + year: '1967' + qc6CJjYAAAAJ:5-tCjTwfAdEC: + citations: 452 + title: "Die Relativit\xE4tstheorie" + year: '1915' + qc6CJjYAAAAJ:5Hlrm_bZEgcC: + citations: 14 + title: "Einstein und \xD6sterreich: nach einem Vortrag in der Chemisch-Physikalischen Gesellschaft zu Wien im April 1979, hundert Jahre nach der Geburt des gro\xDFen Meisters" + year: '1980' + qc6CJjYAAAAJ:5LOebrzo1TYC: + citations: 0 + title: 'Albert Einstein] to Hendrik A. Lorentz: Letter, 1 Jan 1916' + year: Unknown Year + qc6CJjYAAAAJ:5LPo_wSKItgC: + citations: 103 + title: "Bemerkung zu der Arbeit von A. Friedmann \u201E\xDCber die Kr\xFCmmung des Raumes \u201C" + year: '1922' + qc6CJjYAAAAJ:5McdzzY_mmwC: + citations: 41 + title: Correspondence 1916-1955 [entre] Albert Einstein, Max Born et Hedwig Born + year: '1972' + qc6CJjYAAAAJ:5UUbrqTvKfUC: + citations: 0 + title: Dr. Albert Einstein and American Colleagues, 1931 + year: '1949' + qc6CJjYAAAAJ:5Y1KH4bkPm0C: + citations: 0 + title: 'Albert Einstein] to Carl Heinrich Becker: Letter, 25 Nov 1918' + year: Unknown Year + qc6CJjYAAAAJ:5Y7y0xowK3MC: + citations: 8 + title: "Fisica e realt\xE0" + year: '1965' + qc6CJjYAAAAJ:5awf1xo2G04C: + citations: 14 + title: Escritos sobre la paz + year: '1967' + qc6CJjYAAAAJ:5bFWG3eDk9wC: + citations: 0 + title: 'Albert Einstein] to Emil Beck: Letter, 30 Apr 1917' + year: Unknown Year + qc6CJjYAAAAJ:5bGIVMdsOr0C: + citations: 168 + title: My theory + year: '1919' + qc6CJjYAAAAJ:5pGZGXnFQ_sC: + citations: 9666 + title: Sitzungsber. K + year: '1925' + qc6CJjYAAAAJ:5qfkUJPXOUwC: + citations: 159 + title: Unified field theory of gravitation and electricity + year: '1925' + qc6CJjYAAAAJ:5rMqqAh47xYC: + citations: 26 + title: "Pr\xFCfung der allgemeinen Relativit\xE4tstheorie" + year: '1919' + qc6CJjYAAAAJ:5y95FQUaxGgC: + citations: 0 + title: "Le caract\xE8re r\xE9p\xE9titif cyclique r\xE9gulier des bonds dans l'\xE9volution de la science correspondant \xE0 l'activit\xE9 solaire." + year: Unknown Year + qc6CJjYAAAAJ:62yiFa7nMbkC: + citations: 0 + title: "Die Not der deutschen Wissenschaft. Eine Gefahr f\xFCr die Nation, 21 Dez 1921" + year: Unknown Year + qc6CJjYAAAAJ:6B7w4NK6UsoC: + citations: 0 + title: 'Doctrines about the Universe: With Proof in the Form of a Letter to the Public and to Professor Einstein' + year: '1821' + qc6CJjYAAAAJ:6CdnuHuKHxIC: + citations: 80 + title: Refrigeration + year: '1927' + qc6CJjYAAAAJ:6DS7WFnF4J4C: + citations: 136 + title: Koniglich Preussische Akademie der Wissenschaften + year: '1983' + qc6CJjYAAAAJ:6Dd5luMImnEC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 15 Apr 1916' + year: Unknown Year + qc6CJjYAAAAJ:6E5OHDUOeTQC: + citations: 0 + title: 'Albert Einstein] to Hermann Weyl: Letter, 31 May 1918' + year: Unknown Year + qc6CJjYAAAAJ:6IwoDg2IE1oC: + citations: 2 + title: Comments on the Work of Friedmann + year: '1986' + qc6CJjYAAAAJ:6biGW3np0psC: + citations: 0 + title: "Conceptos, ambientes de aprendizaje:\xBF c\xF3mo aprendemos los humanos en diferentes contextos? Waleska Aldana Segura" + year: Unknown Year + qc6CJjYAAAAJ:6ftYtcnYaCAC: + citations: 333 + title: Ather and Relativitatstheorie. J + year: '1920' + qc6CJjYAAAAJ:6gD0efnhv6MC: + citations: 0 + title: 'Emmeline Hansen Salt Lake Community College Physics Term Paper: Albert Einstein Biography' + year: Unknown Year + qc6CJjYAAAAJ:6jAoOr-ogVAC: + citations: 0 + title: "La ley de gravitaci\xF3n de Einstein a prop\xF3sito de algunas cr\xEDticas recientes" + year: '1927' + qc6CJjYAAAAJ:6tHXJaRVc1QC: + citations: 95 + title: Sobranie nauchnykh trudov + year: '1967' + qc6CJjYAAAAJ:70eg2SAEIzsC: + citations: 61 + title: "Bietet die feldtheorie M\xF6glichkeiten f\xFCr die L\xF6sung des Quantenproblems?" + year: '1923' + qc6CJjYAAAAJ:7DJsn6tmoAwC: + citations: 320 + title: "\xC4ther und Relativit\xE4ts-theorie" + year: '1920' + qc6CJjYAAAAJ:7DTIKO_nxaIC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 8 Jan 1917' + year: Unknown Year + qc6CJjYAAAAJ:7VEv-pLvLSsC: + citations: 336 + title: "Elementare Betrachtungen \xFCber die thermische Molekularbewegung in festen K\xF6rpern" + year: '1911' + qc6CJjYAAAAJ:7XUxBq3GufIC: + citations: 0 + title: On the Quantization Condition of Sommerfeld and Epstein + year: '1980' + qc6CJjYAAAAJ:7YMrAF6eRCIC: + citations: 0 + title: 'On the Non-existence of Regular Stationary Solutions of Relativistic Field Equations: Annals of Mathematics, Vol. 44, No. 2, April 1943;(received January 4, 1943)' + year: '1943' + qc6CJjYAAAAJ:7bRg-L-9LFcC: + citations: 15 + title: How I see the world + year: '1991' + qc6CJjYAAAAJ:7eciy3tyNvQC: + citations: 0 + title: Strahlungs-Emission und-Absorption nach der Quantentheorie, 17 Jul 1916 + year: Unknown Year + qc6CJjYAAAAJ:7gse_HdimRUC: + citations: 8 + title: Why Do They Hate the Jews? + year: '1938' + qc6CJjYAAAAJ:7hTFQKV_Y-MC: + citations: 9 + title: 'Human Folly: To Disarm Or Perish?' + year: '1955' + qc6CJjYAAAAJ:7ioeYXKzaWoC: + citations: 29 + title: Komptonsche Experiment + year: '1924' + qc6CJjYAAAAJ:7q08wCQPkLwC: + citations: 0 + title: Briefe Albert Einsteins an Joseph Petzoldt + year: '1971' + qc6CJjYAAAAJ:84Dmd_oSKgsC: + citations: 0 + title: 'Albert Einstein] to Johannes Stark: Letter, 17 Feb 1908' + year: Unknown Year + qc6CJjYAAAAJ:8AbLer7MMksC: + citations: 808 + title: 'The Collected Papers of Albert Einstein, Vol. 5: The Swiss Years: Correspondence, 1902-1914' + year: '1995' + qc6CJjYAAAAJ:8NHCvSvNRCIC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 12 Nov 1917' + year: Unknown Year + qc6CJjYAAAAJ:8QO3eJiZnkEC: + citations: 0 + title: 'Albert Einstein] to the Department of Education: Letter, Canton of Bern' + year: Unknown Year + qc6CJjYAAAAJ:8Rip7PbZ7AYC: + citations: 0 + title: Einstein's Generalized Theory of Gravitation + year: '1969' + qc6CJjYAAAAJ:8VbLR7ExW8oC: + citations: 7 + title: Antwort auf eine Replik Paul Harzers (Nr. 4753, S. 10 und 11) + year: '1914' + qc6CJjYAAAAJ:8Wa-k36u3iwC: + citations: 0 + title: "Albert Einstein] to Th\xE9ophile de Donder: Letter, 17 Jul 1916" + year: Unknown Year + qc6CJjYAAAAJ:8_tS2Vw13FcC: + citations: 0 + title: Otto Stern Papers + year: '1968' + qc6CJjYAAAAJ:8aAMN6PqWdYC: + citations: 36 + title: "Sobre el humanismo: Escritos sobre pol\xEDtica, sociedad y ciencia" + year: '1995' + qc6CJjYAAAAJ:8dmKnlANe1sC: + citations: 2 + title: The Arabs and Palestine + year: '1944' + qc6CJjYAAAAJ:8gBurD7jEYQC: + citations: 9 + title: "Bemerkung zu der Arbeit von D. Mirimanoff \u201E\xDCber die Grundgleichungen\u2026\u201D \uFE01" + year: '1909' + qc6CJjYAAAAJ:8k81kl-MbHgC: + citations: 374 + title: Essays in science + year: '2011' + qc6CJjYAAAAJ:8moDcb_GFzgC: + citations: 0 + title: 'Albert Einstein] to Erwin Freundlich: Letter, 19 Mar 1915' + year: Unknown Year + qc6CJjYAAAAJ:8p-ueveQw4wC: + citations: 9 + title: "Ciencia y religi\xF3n" + year: '1984' + qc6CJjYAAAAJ:8p8iYwVyaVcC: + citations: 25 + title: "Bemerkung zu der Franz Seletyschen Arbeit\u201D \uFE01Beitr\xE4ge zum kosmologischen System \u201E" + year: '1922' + qc6CJjYAAAAJ:8s22W2WWFy4C: + citations: 0 + title: "Die Einstein-Dokumente im Archiv der Humboldt-Universit\xE4t zu Berlin" + year: '1973' + qc6CJjYAAAAJ:94rQ0kDLHKYC: + citations: 4496 + title: Evolution of Physics + year: '1954' + qc6CJjYAAAAJ:9CGX2owmTHMC: + citations: 0 + title: DIE NATLIRWISSENSCHAFTEN + year: Unknown Year + qc6CJjYAAAAJ:9LpHyFPp1DQC: + citations: 514 + title: "Riemann\u2010Geometrie mit Aufrechterhaltung des Begriffes des Fernparallelismus" + year: '1928' + qc6CJjYAAAAJ:9N3KX2BFTccC: + citations: 103 + title: Elementare Uberlegungen zur Interpretation der Grundlagen der Quanten-Mechanik + year: '1953' + qc6CJjYAAAAJ:9PbDelcLwNgC: + citations: 35 + title: On the theory of light production and light absorption + year: '1906' + qc6CJjYAAAAJ:9QTmwX2E1jEC: + citations: 0 + title: 'Albert Einstein] to Walther Rathenau: Letter, 8 Mar 1917' + year: Unknown Year + qc6CJjYAAAAJ:9aOYe38lPcwC: + citations: 16 + title: On the general molecular theory of heat + year: '1904' + qc6CJjYAAAAJ:9bzyojSiTPoC: + citations: 4 + title: Pump, especially for refrigerating machine + year: '1931' + qc6CJjYAAAAJ:9fSugHr6AN8C: + citations: 14 + title: 'Emanuel Lasker: Biogr. e. Schachweltmeisters' + year: '1952' + qc6CJjYAAAAJ:9hNLEifDsrsC: + citations: 0 + title: "Albert Einstein] to Emma Ehrat-\xDChlinger: Letter, last week of Mar 1903" + year: Unknown Year + qc6CJjYAAAAJ:9o6PfxSMcEIC: + citations: 10 + title: "Cum v\u0103d eu lumea: o antologie" + year: '1992' + qc6CJjYAAAAJ:9tJtKg94vZsC: + citations: 203 + title: Do gravitational fields play an essential role in the structure of elementary particles? + year: '1919' + qc6CJjYAAAAJ:9tletLqOvukC: + citations: 4 + title: "Fizika i real\u02B9nost\u02B9: sbornik state\u012D" + year: '1965' + qc6CJjYAAAAJ:9u2w3wkYHSMC: + citations: 91 + title: "Maxwell\u2019s influence on the development of the conception of physical reality" + year: '1931' + qc6CJjYAAAAJ:9xDRhSErrBIC: + citations: 89 + title: "Letter to Schr\xF6dinger" + year: '1950' + qc6CJjYAAAAJ:9xhnSCvx0jcC: + citations: 0 + title: 'Albert Einstein] to Edgar Meyer: Letter, after 12 Oct 1918' + year: Unknown Year + qc6CJjYAAAAJ:A5aiAONn640C: + citations: 20 + title: Religion und Wissenschaft + year: '1930' + qc6CJjYAAAAJ:A8NefVh_EAoC: + citations: 0 + title: 'Albert Einstein] to Otto Stern: Letter, 27 Mar 1916' + year: Unknown Year + qc6CJjYAAAAJ:AE81f6nWjdQC: + citations: 0 + title: "Wir sind gewarnt. Mit einem Vorw. von Albert Einstein.[Aus dem franz\xF6sischen \xFCbertr. von W. Theimer]." + year: '1955' + qc6CJjYAAAAJ:AFXcoJnoRH0C: + citations: 82 + title: Einheitliche Feldtheorie und Hamiltonsches Prinzip + year: '2006' + qc6CJjYAAAAJ:APw3zysQxTcC: + citations: 0 + title: "Einstein: \u0111\u1EDDi song v\xE0 t\u01AF\u1EDFng" + year: '1982' + qc6CJjYAAAAJ:AQkP-AuIKnwC: + citations: 12 + title: La relativit# a speciale + year: '1920' + qc6CJjYAAAAJ:AVQCy-ZCKIsC: + citations: 109 + title: "Planck\u2019s theory of radiation and the theory of specific heat" + year: '1907' + qc6CJjYAAAAJ:AYaE08C4-t8C: + citations: 17 + title: Prinzipien der Forschung + year: '1918' + qc6CJjYAAAAJ:A_-8YG8SPFQC: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 11 Aug 1916' + year: Unknown Year + qc6CJjYAAAAJ:A_xf8jiGkywC: + citations: 0 + title: 'Albert Einstein] to Wander de Haas: Letter, 7 Aug 1915' + year: Unknown Year + qc6CJjYAAAAJ:AbQWx2m_oG8C: + citations: 21 + title: "\xDCber ein den Elementarproze\xC3\u0178 der Lichtemission betreffendes Experiment" + year: '1921' + qc6CJjYAAAAJ:AdUz3-SiDfgC: + citations: 96 + title: 'Letters on Absolute Parallelism, 1929-1932: Correspondence Between Elie Cartan and Albert Einstein' + year: '1979' + qc6CJjYAAAAJ:AeQkyvggb0MC: + citations: 83 + title: The Theory of Opalescence of Homogeneous Liquids and Liquid Mixtures Near the Critical State + year: '1993' + qc6CJjYAAAAJ:Amrzk_ktLr0C: + citations: 2 + title: "Albert Ajn\u0161tajn: njegova dela i njihov uticaj na na\u0161 svet" + year: '1957' + qc6CJjYAAAAJ:B2rIPIGFPLEC: + citations: 37 + title: Bivector fields + year: '1944' + qc6CJjYAAAAJ:B3FOqHPlNUQC: + citations: 23 + title: "Elektron und allgemeine Relativit\xE4tstheorie" + year: '1925' + qc6CJjYAAAAJ:BCdnXsLIVDwC: + citations: 26 + title: "Bemerkung zu P. Jordans Abhandlung \u201EZur Theorie der Quantenstrahlung\u201D" + year: '1925' + qc6CJjYAAAAJ:BJrLMYCRBhgC: + citations: 0 + title: "Prinzipielles zur verallgemeinerten Relativit\xE4tstheorie und Gravitationstheorie.(German)" + year: Unknown Year + qc6CJjYAAAAJ:BPS1z4jHU5cC: + citations: 63 + title: "Zu Kaluzas Theorie des Zusammenhanges von Gravitation und Elektrizit\xE4t. Erste Mitteilung" + year: '2006' + qc6CJjYAAAAJ:BUYA1_V_uYcC: + citations: 115 + title: "La th\xE9orie de la relativit\xE9 restreinte et g\xE9n\xE9rale" + year: '1990' + qc6CJjYAAAAJ:BW2nPTmhBn4C: + citations: 282 + title: "\xDCber die im elektromagnetischen Felde auf ruhende K\xF6rper ausge\xFCbten ponderomotorischen Kr\xE4fte" + year: '1908' + qc6CJjYAAAAJ:BbFSz4cl-9EC: + citations: 0 + title: VI. GRAVITATIONAL WAVES + year: '1979' + qc6CJjYAAAAJ:BjLbhSWBl98C: + citations: 195 + title: "Experimental proof of the existence of Amp\xE8re's molecular currents" + year: '1915' + qc6CJjYAAAAJ:BnRbUGEozz8C: + citations: 0 + title: 'Albert Einstein] to Willem de Sitter: Letter, before 12 Mar 1917' + year: Unknown Year + qc6CJjYAAAAJ:BqipwSGYUEgC: + citations: 186 + title: Elementary derivation of the equivalence of mass and energy + year: '1935' + qc6CJjYAAAAJ:BtfE7wd9KvMC: + citations: 28 + title: "Meine Antwort. Ueber die anti-relativit\xE4tstheoretische GmbH" + year: '1920' + qc6CJjYAAAAJ:BxcezVm2apwC: + citations: 9 + title: "Sur la th\xE9orie des quantit\xE9s lumineuses et la question de la localisation de l'\xE9nergie \xE9lectromagn\xE9tique" + year: '1910' + qc6CJjYAAAAJ:C-GuzCveMkwC: + citations: 0 + title: "La th\xE9orie de la dispersion de la lumi\xE8re et le mod\xE8le atomique de P. Drude (1904-1913)." + year: Unknown Year + qc6CJjYAAAAJ:C14xlUzwkXEC: + citations: 9 + title: The cosmic religious feeling + year: '1997' + qc6CJjYAAAAJ:C6rTQemI8T8C: + citations: 23 + title: 'Briefe zur Wellenmechanik: 2. IV. 1926-22. XII. 1950 herausgegeben im Auftrage der Osterreichischen Akademie der Wissenschaften von K. Karl Przibram,...' + year: '1963' + qc6CJjYAAAAJ:CB6W3GmKGOEC: + citations: 0 + title: Antrittsrede und Erwiderung von Max Planck am Leibniztag + year: '2006' + qc6CJjYAAAAJ:CC3C2HR4nz8C: + citations: 63 + title: "F\u0131sica e realidade" + year: '2006' + qc6CJjYAAAAJ:CCeGMaHljPEC: + citations: 58 + title: Zur affinen Feldtheorie + year: '2006' + qc6CJjYAAAAJ:CLPBug3NTQYC: + citations: 0 + title: 'Albert Einstein] to Paul Seippel: Letter, 19 Aug 1917' + year: Unknown Year + qc6CJjYAAAAJ:CLQ-NLsb8zAC: + citations: 3072 + title: Ideas and Opinions + year: '1954' + qc6CJjYAAAAJ:COU-sansr_wC: + citations: 101 + title: "Elie Cartan-Albert Einstein: lettres sur le parall\xE9lisme absolu 1929-1932" + year: '1979' + qc6CJjYAAAAJ:CQX_Vi8q7s0C: + citations: 1954 + title: Introduction Einstein's Relativity + year: '1992' + qc6CJjYAAAAJ:CRQ797xmLJIC: + citations: 0 + title: 'Albert Einstein] to Fritz Reiche: Letter, 18 Jul 1914' + year: Unknown Year + qc6CJjYAAAAJ:CRzUtm-VnGAC: + citations: 68 + title: "Der Energiesatz in der allgemeinen Relativit\xE4tstheorie" + year: '1918' + qc6CJjYAAAAJ:CXI6bF9CpJ4C: + citations: 72 + title: "Untersuchungen \xFCber die Theorie der Brownschen Bewegung/Abhandlungen \xFCber die Brownsche Bewegung und verwandte Erscheinungen" + year: '1999' + qc6CJjYAAAAJ:CY3uIpTmi-gC: + citations: 124 + title: Einstein on Cosmic Religion and Other Opinions and Aphorisms + year: '2009' + qc6CJjYAAAAJ:CmbFvBriOyMC: + citations: 196 + title: "O significado da relatividade: com a teoria relativista do campo n\xE3o sim\xE9trico" + year: '1958' + qc6CJjYAAAAJ:CmeMDzcFUg4C: + citations: 0 + title: LA GUERRE ILLEGALE CONTRE L'IRAK + year: '2004' + qc6CJjYAAAAJ:Cn5sofW4b3YC: + citations: 13 + title: "\xDCber die Untersuchung des \xC4therzustandes im magnetischen Felde" + year: '1971' + qc6CJjYAAAAJ:CoqsOaBEKcQC: + citations: 11 + title: Improvements relating to refrigerating apparatus + year: '1927' + qc6CJjYAAAAJ:CrVLTnlDqZQC: + citations: 15 + title: On the moral obligation of the scientist + year: '1945' + qc6CJjYAAAAJ:Cv-mv52rCCkC: + citations: 5185 + title: On the motion of particles suspended in a liquid at rest, assumed by the molecular-kinetic theory of heat + year: '1905' + qc6CJjYAAAAJ:Cx2ibDnldiAC: + citations: 38 + title: On the quantum mechanics of radiation + year: '1917' + qc6CJjYAAAAJ:Cy13deThEpcC: + citations: 0 + title: Wissenschaftlicher Briefwechsel mit Bohr, Einstein, Heisenberg ua. 3. 1940-1949 + year: '1993' + qc6CJjYAAAAJ:D-3shSm-n1oC: + citations: 18 + title: Science, Philosophy, and Religion + year: '1953' + qc6CJjYAAAAJ:D4n_APcuzvwC: + citations: 0 + title: "Comment on Albert von Brunn,\" On Mr. Einstein's Remark about the Irregular Fluctuations of Lunar Longitude with an Approximate Period of the Rotation of the Lunar Nodes\", 24 \u2026" + year: Unknown Year + qc6CJjYAAAAJ:D52hNgOu9GcC: + citations: 0 + title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 18 Jun 1915" + year: Unknown Year + qc6CJjYAAAAJ:D8wXzuvKacYC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 17 Oct 1918' + year: Unknown Year + qc6CJjYAAAAJ:DCYT7yIMjgYC: + citations: 9 + title: Theoretische Atomistik + year: '1915' + qc6CJjYAAAAJ:DIubQTN3OvUC: + citations: 130 + title: "Kovarianzeigenschaften der Feldgleichungen der auf die verallgemeinerte Relativit\xE4tstheorie gegr\xFCndeten Gravitationstheorie" + year: '1914' + qc6CJjYAAAAJ:DOLguN9Lh8sC: + citations: 5 + title: 'Albert Einstein] to Moritz Schlick: Letter, 21 May 1917' + year: Unknown Year + qc6CJjYAAAAJ:DPnopAH2kssC: + citations: 10 + title: Jarbuch der Radioaktivitat und Elektronik, 4, 411 (1907), reprinted in The Collected Papers of A. Einstein, vol. 2, 252 + year: '1989' + qc6CJjYAAAAJ:DQNrXyjhriIC: + citations: 2590 + title: Die feldgleichungen der gravitation + year: '1915' + qc6CJjYAAAAJ:D_sINldO8mEC: + citations: 27 + title: Essays in humanism + year: '2011' + qc6CJjYAAAAJ:DejRBzv9GVYC: + citations: 69 + title: 'Ueber den Frieden: Weltordnung oder Weltuntergang?' + year: '1975' + qc6CJjYAAAAJ:Dh4RK7yvr34C: + citations: 0 + title: 'SCIENCE ET PHILOSOPHIE: EINSTEIN ET SPINOZA M.-A. TONNELAT' + year: '1981' + qc6CJjYAAAAJ:DjjA23gMNckC: + citations: 0 + title: Discussions of Lectures in Bad Nauheim, 23-24 Sep 1920 + year: Unknown Year + qc6CJjYAAAAJ:Dq1jD5C1HUoC: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 9 Dec 1915' + year: Unknown Year + qc6CJjYAAAAJ:Dqu_ECg3lNoC: + citations: 4 + title: "Bemerkung zu meiner Arbeit:\u201EEine Beziehung zwischen dem elastischen Verhalten\u2026\u201D \uFE01" + year: '2006' + qc6CJjYAAAAJ:DrOLxFoABAwC: + citations: 3 + title: 'The Origins of the General Theory of Relativity: Being the First Lecture on the George A. Gibson Foundation in the University of Glasgow, Delivered on June 20th, 1933' + year: '1933' + qc6CJjYAAAAJ:DtORCzn_ASQC: + citations: 101 + title: Quantum mechanics and reality + year: '1948' + qc6CJjYAAAAJ:DxlTmyU89zoC: + citations: 0 + title: Kreative Methoden 239 Kindern in Deutsehland lebensweltliche Erfahrungen von politischen Er + year: Unknown Year + qc6CJjYAAAAJ:E2bRg1zSkIsC: + citations: 276 + title: A teoria da relatividade especial e geral + year: '2003' + qc6CJjYAAAAJ:E2dP09oujfMC: + citations: 0 + title: "1. Physikalische Gr\xF6\xDFen und Einheiten" + year: Unknown Year + qc6CJjYAAAAJ:E6rqZ6_0n1EC: + citations: 0 + title: La teoria de la relativitat i altres textos + year: '2000' + qc6CJjYAAAAJ:E8M3ZPqbjf0C: + citations: 0 + title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 13 Dec 1914" + year: Unknown Year + qc6CJjYAAAAJ:E9iozgzfyhkC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 8 Jul 1914' + year: Unknown Year + qc6CJjYAAAAJ:EF0m1YoOS5EC: + citations: 2 + title: Formal Relationship of the Riemannian Curvature Tensor to the Field Equations of Gravity + year: '1927' + qc6CJjYAAAAJ:EMrlLOzmm-AC: + citations: 0 + title: "Bemerkung zu meiner Arbeit``Zur allgemeinen Relativit\xE4tstheorie\".(German)" + year: Unknown Year + qc6CJjYAAAAJ:END1nS_e-6cC: + citations: 0 + title: 'Albert Einstein] to Hermann Weyl: Letter, 29 Nov 1918' + year: Unknown Year + qc6CJjYAAAAJ:EUsVPkoNztoC: + citations: 0 + title: Jewish Solidarity and Palestine + year: '1938' + qc6CJjYAAAAJ:EXDW3tg14iEC: + citations: 0 + title: 'Albert Einstein] to Romain Rolland: Letter, 22 Mar 1915' + year: Unknown Year + qc6CJjYAAAAJ:EYYDruWGBe4C: + citations: 149 + title: "The Collected Papers of Albert Einstein, Vol. 2, The Swiss Years: Writings, 1900\u20131909 (English Translation Supplement)" + year: '1989' + qc6CJjYAAAAJ:Ecsxi449JjsC: + citations: 0 + title: "Sur le probl\xE8me de la formation de la personnalit\xE9 cr\xE9atrice d'Einstein." + year: Unknown Year + qc6CJjYAAAAJ:Ei5r6KrKXVQC: + citations: 1443 + title: "Theorie der Opaleszenz von homogenen Fl\xFCssigkeiten und Fl\xFCssigkeitsgemischen in der N\xE4he des kritischen Zustandes" + year: '2006' + qc6CJjYAAAAJ:EpJ50YjRFhcC: + citations: 3 + title: Correspondance:" Pourquoi la guerre?" + year: '1989' + qc6CJjYAAAAJ:EpUiTTZsFn8C: + citations: 0 + title: 'Albert Einstein] to Joseph Petzoldt: Letter, 11 Jun 1914' + year: Unknown Year + qc6CJjYAAAAJ:Es-9c2L5hKwC: + citations: 0 + title: Matter, Fields of Information, and Incompleteness + year: '1998' + qc6CJjYAAAAJ:EsO17nB32j8C: + citations: 18 + title: Theory of the Opalescence of Homogeneous and of Mixed Liquids in the Neighborhood of the Critical Region + year: '1910' + qc6CJjYAAAAJ:EsrhoZGmrkoC: + citations: 0 + title: "Grundgedanken und Methoden der Relativit\xE4tstheorie in ihrer Entwicklung dargestellt: Berlin" + year: '1920' + qc6CJjYAAAAJ:Et1yZiPVzsMC: + citations: 0 + title: "G\xE9ometrie complexe, Tome 2: aspects contemporains dans les math\xE9matiques et la physique" + year: '2004' + qc6CJjYAAAAJ:ExNiBuTMO9IC: + citations: 0 + title: Abstracts of Three Lectures on Relativity Delivered at Princeton University... May 11-13, 1921 + year: '1921' + qc6CJjYAAAAJ:F1-V36_CjEsC: + citations: 90 + title: Generation and conversion of light with regard to a heuristic point of view + year: '1905' + qc6CJjYAAAAJ:F4gwyMVh_r0C: + citations: 0 + title: 'Einstein: Science and Religion' + year: Unknown Year + qc6CJjYAAAAJ:FKYJxdYMdFIC: + citations: 895 + title: "The Collected Papers of Albert Einstein, Volume 15 (Translation Supplement): The Berlin Years: Writings & Correspondence, June 1925\u2013May 1927" + year: '2018' + qc6CJjYAAAAJ:FKzTm0Bp8ZYC: + citations: 63 + title: Oeuvres choisies + year: '1991' + qc6CJjYAAAAJ:FP-YCU5gdjEC: + citations: 0 + title: 'Remembering Creation: Towards a Christian Ecosophy' + year: Unknown Year + qc6CJjYAAAAJ:FS78WRl2AkQC: + citations: 0 + title: "Notiz zu unserer Arbeit\" Experimenteller Nachweis der Amp\xE8reschen Molekularstr\xF6me\", 15 Nov 1915" + year: Unknown Year + qc6CJjYAAAAJ:FSHXWovK7t4C: + citations: 0 + title: 'Der Einsteinturm in Potsdam: Architektur und Astrophysik' + year: '1995' + qc6CJjYAAAAJ:FSl0EHHYj-kC: + citations: 0 + title: Impact of Science on the Development of Pacifism, before 9 Dec 1921 + year: Unknown Year + qc6CJjYAAAAJ:FTNwVkz-CAMC: + citations: 74 + title: Outline of a generalized theory of relativity and of a theory of gravitation + year: '1913' + qc6CJjYAAAAJ:FV77Gu53xKkC: + citations: 105 + title: the Theory of Gravitation + year: '1974' + qc6CJjYAAAAJ:FcH-RsB9iB0C: + citations: 0 + title: Symposium on America and the World Situation... + year: '1933' + qc6CJjYAAAAJ:Fd3FjPIBfbkC: + citations: 0 + title: Oorlog als ziekte + year: '1938' + qc6CJjYAAAAJ:Fd6TstiuZzAC: + citations: 0 + title: "Uber den gengenw\xE4rtigen Stand der Feld-Theorie: Np" + year: '1955' + qc6CJjYAAAAJ:FecvS_q01PcC: + citations: 0 + title: BERNARD ROTH 22 The Impact of the Arms Race + year: '1983' + qc6CJjYAAAAJ:FjmlLC3huY4C: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 8 Feb 1916' + year: Unknown Year + qc6CJjYAAAAJ:Fp1gVP7Oym8C: + citations: 0 + title: 'The Militarization of America: A Report' + year: '1948' + qc6CJjYAAAAJ:FtNbRaqWXr4C: + citations: 0 + title: "Une lettre in\xE9dite de A. Einstein." + year: Unknown Year + qc6CJjYAAAAJ:Fu4hY69slDoC: + citations: 0 + title: 'Albert Einstein] to Paul and Tatiana Ehrenfest: Letter, 18 Oct 1916' + year: Unknown Year + qc6CJjYAAAAJ:FwTEoIZreccC: + citations: 5 + title: "Am Sonntag k\xFCss' ich Dich m\xFCndlich: die Liebesbriefe, 1897-1903" + year: '1994' + qc6CJjYAAAAJ:Fx7lCCP36QIC: + citations: 0 + title: "Vom Relativit\xE4ts-Prinzip, 26 Apr 1914" + year: '2003' + qc6CJjYAAAAJ:FzKuKYQlbrwC: + citations: 39 + title: Systematische Untersuchung fiber kompatible Feldgleichungen, welche von einem Riemannschen Raum mit Fernparallelismus gesetzt werden k6nnen + year: '1931' + qc6CJjYAAAAJ:G36d5HCDkJYC: + citations: 208 + title: Remarks on Bertrand Russell's theory of knowledge + year: '1946' + qc6CJjYAAAAJ:GCDlZl827dEC: + citations: 2 + title: SB preuss. Akad. Wiss.(1915), 778 + year: '1916' + qc6CJjYAAAAJ:GGgVawPscysC: + citations: 5 + title: The Religiousness of Science + year: '1934' + qc6CJjYAAAAJ:GHsHDPAyICYC: + citations: 22 + title: 'HA Lorentz: His Creative Genius and His Personality' + year: '1953' + qc6CJjYAAAAJ:GJVTs2krol4C: + citations: 130 + title: "Theoretische bemerkungen \xFCber die brownsche bewegung" + year: '2010' + qc6CJjYAAAAJ:GO2DTSf4MZMC: + citations: 0 + title: Souvenir of the Einstein Meeting at the Royal Albert Hall, Tuesday, October 3, 1933 + year: '1933' + qc6CJjYAAAAJ:GO5CT2y9xrEC: + citations: 11 + title: Lettres d'amour et de science + year: '1993' + qc6CJjYAAAAJ:GOtIa6ILFcwC: + citations: 5 + title: On Boltzmann's Principle and Some Immediate Consequences Thereof Translation by Bertrand Duplantier and Emily Parks from the original German text into French and English + year: '2006' + qc6CJjYAAAAJ:GUYAmugLYisC: + citations: 14 + title: "Bemerkungen zu unserer Arbeit:\u201E\xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper\u201D \uFE01" + year: '2006' + qc6CJjYAAAAJ:GZelqfngyKEC: + citations: 1 + title: Correspondence between Barrie Stavis and Albert Einstein + year: '1990' + qc6CJjYAAAAJ:GfAJFcoWUJEC: + citations: 51 + title: "\xDCber den gegenw\xE4rtigen Stand der Feld-Theorie" + year: '1929' + qc6CJjYAAAAJ:GgDznaKzj2MC: + citations: 0 + title: "El gobierno de Felipe Calder\xF3n\xBF hacia un desarrollo humano sustentable? Susana Garcia jimenez" + year: Unknown Year + qc6CJjYAAAAJ:GnPB-g6toBAC: + citations: 168 + title: Einstein on peace + year: '1968' + qc6CJjYAAAAJ:GpOSJs1ZbLkC: + citations: 0 + title: 'Zitate Aus Mein Weltbild: Sieben Radierungen Von Terry Haass' + year: '1975' + qc6CJjYAAAAJ:Gpwnp1kGG20C: + citations: 235 + title: Ernst Mach + year: '1916' + qc6CJjYAAAAJ:Grx829lh2T4C: + citations: 2969 + title: Quantum theory of monatomic ideal gases + year: '1924' + qc6CJjYAAAAJ:GsgvGxwuA5UC: + citations: 17 + title: 'Correspondance 1903-1955: Albert Einstein, Michele Besso' + year: '1979' + qc6CJjYAAAAJ:GtLg2Ama23sC: + citations: 10 + title: "L'\xE9ther et la th\xE9orie de la relativit\xE9: La g\xE9om\xE9trie et l'exp\xE9rience" + year: '1964' + qc6CJjYAAAAJ:GtszHNlY0egC: + citations: 0 + title: 'The collected papers of Albert Einstein. Vol. 8, The Berlin years: correspondence, 1914-1918, P. A, 1914-1917' + year: Unknown Year + qc6CJjYAAAAJ:GwaQhVSQhKEC: + citations: 0 + title: "Theorien verborgener Parameter, EPR-Korrelationen, Bell\u2019sche Ungleichung, GHZ-Zust ande" + year: '1999' + qc6CJjYAAAAJ:GzlcqhCAosUC: + citations: 493 + title: "QUANTEN\u2010MECHANIK UND WIRKLICHKEIT" + year: '1948' + qc6CJjYAAAAJ:H-nlc5mcmJQC: + citations: 2 + title: On Newton (1927) + year: '1979' + qc6CJjYAAAAJ:H1aCVKaixnMC: + citations: 11 + title: Science Fiction and Fantasy + year: '1980' + qc6CJjYAAAAJ:H4IpxOyCX80C: + citations: 184 + title: "L'\xE9volution des id\xE9es en physique" + year: '1963' + qc6CJjYAAAAJ:HKviVsUxM5wC: + citations: 9 + title: "Bemerkung zu Abrahams vorangehender Auseinandersetzung \u201ENochmals Relativit\xE4t und Gravitation\u201D \uFE01" + year: '2006' + qc6CJjYAAAAJ:HM9HXerLlEkC: + citations: 7 + title: Vincenzo Bellini + year: '1935' + qc6CJjYAAAAJ:HPvNdXBGwkEC: + citations: 12 + title: Electrodynamic Movement of Fluid Metals Particularly for Refrigerating Machines + year: '1928' + qc6CJjYAAAAJ:HaiYZdWvYCYC: + citations: 0 + title: Out of the Darkness/A Way Forward by Tom Parish + year: Unknown Year + qc6CJjYAAAAJ:HjGq7OYTVFUC: + citations: 5 + title: Riemann-Metrik mit Aufrechterhaltung des Begriffes der Fern-parallelismus, Preuss + year: '1928' + qc6CJjYAAAAJ:HklM7qHXWrUC: + citations: 452 + title: "Die Relativit\xE4tstheorie" + year: '1925' + qc6CJjYAAAAJ:Hl4CZ0n6gBQC: + citations: 20375 + title: Uber einen die Erzeugung und Verwandlung des Lichtes betreffenden heurischen Gesichtpunkt + year: '1905' + qc6CJjYAAAAJ:HtEfBTGE9r8C: + citations: 181 + title: "La f\xEDsica: aventura del pensamiento" + year: '1939' + qc6CJjYAAAAJ:Hx6RvaqUy9IC: + citations: 0 + title: 'Science: Conjectures and Refutations' + year: '1997' + qc6CJjYAAAAJ:HygtOXotxAUC: + citations: 189 + title: "Sur l'\xE9lectrodynamique des corps en mouvement" + year: '1925' + qc6CJjYAAAAJ:I6TX2FUo6loC: + citations: 91 + title: Theodore von Karman Anniversary Volume + year: '1941' + qc6CJjYAAAAJ:I8ubwoE7ciMC: + citations: 1 + title: Zur Abwehr + year: '1921' + qc6CJjYAAAAJ:I9gX6wnfuA8C: + citations: 323 + title: "\xC4ther und Relativit\xE4tstheorie: Rede gehalten am 5. Mai 1920 an der Reichs-Universit\xE4t zu Leiden" + year: '1920' + qc6CJjYAAAAJ:IEpB_1CIIT4C: + citations: 3857 + title: 'THE EVOLUTION OF PHYSICS: THE GROWTH OF IDEAS FROM THE EARLY CON CEPTS TO RELATIVITY AND QUANTA.' + year: '1938' + qc6CJjYAAAAJ:IHkkN1K1AlAC: + citations: 62 + title: "Beitr\xE4ge zur Quantentheorie" + year: '1914' + qc6CJjYAAAAJ:IMJZBBnUFLgC: + citations: 0 + title: 'Albert Einstein] to Werner Weisbach: Letter, 14 Oct 1916' + year: Unknown Year + qc6CJjYAAAAJ:IT1MJ6E3JesC: + citations: 60 + title: Sehallausbreitung in teilweise disseziierten Gasen. + year: '1920' + qc6CJjYAAAAJ:IWHjjKOFINEC: + citations: 686 + title: Cosmological considerations on the general theory of relativity + year: '1986' + qc6CJjYAAAAJ:IZKZNMMMWs0C: + citations: 0 + title: "Religi\xF6se Sinnstiftung durch Technik?" + year: Unknown Year + qc6CJjYAAAAJ:I__7AI8a974C: + citations: 0 + title: Relatividade Especial e Geral + year: Unknown Year + qc6CJjYAAAAJ:Ib8FQH8mdS0C: + citations: 0 + title: 'Albert Einstein] to Elsa Einstein: Letter, 30 Aug 1915' + year: Unknown Year + qc6CJjYAAAAJ:IfvCfoBprpQC: + citations: 765 + title: 'The collected papers of Albert Einstein. Vol 4, The Swiss years: writings, 1912-1914 [English translation]' + year: Unknown Year + qc6CJjYAAAAJ:IjCSPb-OGe4C: + citations: 1354 + title: The gravitational equations and the problem of motion + year: '1938' + qc6CJjYAAAAJ:IkxDsZK-5NQC: + citations: 0 + title: "Algunas consideraciones sobre el tiempo y la teor\xEDa especial de la relatividad" + year: '1979' + qc6CJjYAAAAJ:Iq19BMNozs4C: + citations: 3 + title: 'Zu Max Plancks sechzegstem Geburtstag: Ansprachen, gehalten am 26. April 1918 in der Deutschen Physikalischen Gesellschaft' + year: '1918' + qc6CJjYAAAAJ:IqrShC7OVU0C: + citations: 6326 + title: Investigations on the theory of the Brownian movement, edited with notes by R + year: '1926' + qc6CJjYAAAAJ:IvSMUa3B7yYC: + citations: 6 + title: "Berichtigung zur Abhandlung:\u201E\xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper\u201D \uFE01" + year: '1908' + qc6CJjYAAAAJ:J-pR_7NvFogC: + citations: 26 + title: 'The Swiss Years: Writings, 1914-1917' + year: '1996' + qc6CJjYAAAAJ:J4wmHkHhN-kC: + citations: 2 + title: Memorial to Dr. David Eder + year: '1936' + qc6CJjYAAAAJ:JQOojiI6XY0C: + citations: 17 + title: Tables of Einstein Functions + year: '1962' + qc6CJjYAAAAJ:JQPmwQThujIC: + citations: 469 + title: "La g\xE9om\xE9trie et l'exp\xE9rience, par Albert Einstein; traduit par Maurice Solovine" + year: '1921' + qc6CJjYAAAAJ:JXi_AgyUMBAC: + citations: 101 + title: Relativistic theory of the non-symmetric field + year: '1955' + qc6CJjYAAAAJ:JZsVLox4iN8C: + citations: 2394 + title: 'Autobiographisches in: Albert Einstein: Philosopher-Scientist' + year: '1949' + qc6CJjYAAAAJ:J_g5lzvAfSwC: + citations: 124 + title: Warum Krieg? + year: '1972' + qc6CJjYAAAAJ:JjPkQosUWiAC: + citations: 0 + title: 'Science and Synthesis: An International Colloquium' + year: '1967' + qc6CJjYAAAAJ:JoHZYnTS1h4C: + citations: 2 + title: "La teor\xEDa de la relatividad especial y general al alcance de todos" + year: '1923' + qc6CJjYAAAAJ:JoZmwDi-zQgC: + citations: 29 + title: Das Raum-Feld-und Aether-Problem in der Physik + year: '1930' + qc6CJjYAAAAJ:K-tzbvM8PMoC: + citations: 0 + title: "Briefe zur Wellenmechanik: Schr\xF6dinger, Planck, Einstein, Lorentz" + year: '1963' + qc6CJjYAAAAJ:K3LRdlH-MEoC: + citations: 80 + title: Fundamental ideas and problems of the theory of relativity + year: '2009' + qc6CJjYAAAAJ:K4-iKlO5MD4C: + citations: 672 + title: A Heuristic Viewpoint Concerning the Production and Transformation of Light + year: '1929' + qc6CJjYAAAAJ:K6kyChav4UkC: + citations: 11 + title: Letter to Lincoln Barnett, quoted inThe concept of mass' by Lev Okum + year: '1948' + qc6CJjYAAAAJ:K8XpiWYAYk8C: + citations: 0 + title: "Mgr Aleksandra Ochman Tw\xF3rcze my\u015Blenie\u2013teoria i praktyka szkolna." + year: Unknown Year + qc6CJjYAAAAJ:K9zgXSuleLYC: + citations: 0 + title: 'The Myth of Consistent Skepticism: The Cautionary Case of Albert Einstein' + year: Unknown Year + qc6CJjYAAAAJ:KEHW5XCvxlQC: + citations: 6 + title: 'New Evidence of the Militarization of America: A Report' + year: '1949' + qc6CJjYAAAAJ:KFIQUvoPKFAC: + citations: 0 + title: Planck units and wave-particle duality + year: Unknown Year + qc6CJjYAAAAJ:KIRwYnRZzWQC: + citations: 6 + title: Why socialism? + year: '1951' + qc6CJjYAAAAJ:KOc9rAu6-V4C: + citations: 363 + title: letter to Max Born + year: '1926' + qc6CJjYAAAAJ:KQ7zX_ltr48C: + citations: 0 + title: 'Albert Einstein] to Romain Rolland: Letter, 22 Aug 1917' + year: Unknown Year + qc6CJjYAAAAJ:KUekCDWCRvQC: + citations: 0 + title: Physiology and Pathophysiology of the Heart + year: '1990' + qc6CJjYAAAAJ:KVXOKlNwS8oC: + citations: 61 + title: 'Briefwechsel [zwischen] Albert Einstein und Arnold Sommerfeld: sechzig Briefe aus dem goldenen Zeitalter der modernen Physik' + year: '1968' + qc6CJjYAAAAJ:Kaaf24wrr50C: + citations: 0 + title: "R\xF4le de l'\xE9thique dans l'oeuvre d'Einstein (\xE0 l'exemple de la m\xE9canique quantique)." + year: Unknown Year + qc6CJjYAAAAJ:KbeHZ-DlqmcC: + citations: 0 + title: Deposition in Divorce Proceedings, 23 Dec 1918 + year: Unknown Year + qc6CJjYAAAAJ:KjnAay3C9J8C: + citations: 5 + title: "Die spezielle Relativit\xE4sthorie" + year: '1912' + qc6CJjYAAAAJ:KlAtU1dfN6UC: + citations: 430 + title: On the Influence of Gravitation on the Propagation of Light + year: '1911' + qc6CJjYAAAAJ:KqnX2w3egDsC: + citations: 96 + title: "Vier Vorlesungen \xFCber Relativit\xE4tstheorie gehalten im Mai 1921 an der Universit\xE4t Princeton" + year: '1922' + qc6CJjYAAAAJ:Kr3pDLWb32UC: + citations: 2 + title: "Bemerkung zu der Notiz von W. Anderson\xBB Eine neue Erkl\xE4rung des kontinuierlichen Koronaspektrums \xAB" + year: '1923' + qc6CJjYAAAAJ:KxNY-X0OflYC: + citations: 9 + title: "La th\xE9orie du rayonnement et les quanta" + year: '1911' + qc6CJjYAAAAJ:L2Pn6qttGKUC: + citations: 0 + title: 'Albert Einstein] to Mileva Einstein-Maric: Letter, after 17 Mar 1918' + year: Unknown Year + qc6CJjYAAAAJ:L7JqRCIhofwC: + citations: 6495 + title: Sitzungsberichte der Preussischen Akademie der Wissenschaften zu Berlin + year: '1915' + qc6CJjYAAAAJ:L7vk9XBBNxgC: + citations: 11 + title: Emil Warburg als Forscher + year: '1922' + qc6CJjYAAAAJ:LA-8tw-JpD0C: + citations: 0 + title: "Probleme kann man niemals mit der gleichen Denkweise l\xF6sen durch die sie entstanden sind." + year: Unknown Year + qc6CJjYAAAAJ:LAaCg2gyLagC: + citations: 273 + title: Briefwechsel 1916-1955 + year: '1972' + qc6CJjYAAAAJ:LGA7_l5-FVwC: + citations: 123 + title: Preussiche Akademie der Wissenchaften Berlin + year: '1927' + qc6CJjYAAAAJ:LIyjJRbbAUMC: + citations: 0 + title: "Bei der Redaktion eingegangene B\xFCcher und Schriften." + year: '1916' + qc6CJjYAAAAJ:LNjCCq68lIgC: + citations: 8 + title: 'Relativity, Thermodynamics and Cosmology.(Scientific Books: Relativity, Thermodynamics and Cosmology)' + year: '1934' + qc6CJjYAAAAJ:LPZeul_q3PIC: + citations: 35 + title: "Beweis der Nichtexistenz eines \xFCberall regul\xE4ren zentrische symmetrischen Feldes nach der Feld-Theorie von Th. Kaluza" + year: '1923' + qc6CJjYAAAAJ:LSkeIYDkhQYC: + citations: 0 + title: Letter to a friend of peace + year: '1984' + qc6CJjYAAAAJ:LTdYzzxxQecC: + citations: 0 + title: 'Newton: the man' + year: '1972' + qc6CJjYAAAAJ:LWUVeqegjeYC: + citations: 0 + title: "Albert Einstein] to Constantin Carath\xE9odory: Letter, 10 Dec 1916" + year: Unknown Year + qc6CJjYAAAAJ:LWqeokA2EBkC: + citations: 77 + title: "\xDCber die G\xFCltigkeitsgrenze des Satzes vom thermodynamischen Gleichgewicht und \xFCber die M\xF6glichkeit einer neuen Bestimmung der Elementarquanta" + year: '1907' + qc6CJjYAAAAJ:LYDvBi7O6RsC: + citations: 0 + title: 'Albert Einstein] to Robert Heller: Letter, 20 Jul 1914' + year: Unknown Year + qc6CJjYAAAAJ:LYW2S8xaXYEC: + citations: 0 + title: A minor sidelight on a great man + year: '1956' + qc6CJjYAAAAJ:L_at8tGC9oEC: + citations: 52 + title: The Meaning of + year: '1969' + qc6CJjYAAAAJ:Lbh3VFZM3akC: + citations: 0 + title: 'Albert Einstein] to Hedwig Born: Letter, 8 Feb 1918' + year: Unknown Year + qc6CJjYAAAAJ:LkGwnXOMwfcC: + citations: 2759 + title: The foundation of the general theory of relativity + year: '1916' + qc6CJjYAAAAJ:LkrQC8aPkXYC: + citations: 5129 + title: 'Relativity: The Special and the General Theory: a Popular Exposition by Albert Einstein; Transl. by Robert W. Lawson' + year: '1961' + qc6CJjYAAAAJ:Lmuc1furtc4C: + citations: 0 + title: "Albert Einstein] to Rudolf F\xF6rster: Letter, 16 Nov 1917" + year: Unknown Year + qc6CJjYAAAAJ:LnJLeQ70pnUC: + citations: 0 + title: 'Albert Einstein] to Walter Schottky: Letter, 26 Sep 1917' + year: Unknown Year + qc6CJjYAAAAJ:LoiWQfKZB3kC: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 3 Jan 1916' + year: Unknown Year + qc6CJjYAAAAJ:LpWf3qrnWeoC: + citations: 0 + title: 'Albert Einstein] to Walter Schottky: Letter, 23 Jun 1918' + year: Unknown Year + qc6CJjYAAAAJ:Lr5Uwm59ZTwC: + citations: 0 + title: VORLESUNGEN UBER SPEZIELLE RELATIVITATSTHEORIE + year: '1999' + qc6CJjYAAAAJ:LsccmWB6Ip4C: + citations: 0 + title: The Application of Catastrophe Theory + year: Unknown Year + qc6CJjYAAAAJ:LwieBGrN4GEC: + citations: 22 + title: Relativity, quanta, and cosmology in the development of the scientific thought of Albert Einstein + year: '1981' + qc6CJjYAAAAJ:LzOrNEA7mwcC: + citations: 0 + title: 'The Impact of modern scientific ideas on society: in commemoration of Einstein' + year: '1981' + qc6CJjYAAAAJ:M0j1y4EgrScC: + citations: 101 + title: "Thermodynamische Begr\xFCndung des photochemischen \xC4quivalentgesetzes" + year: '1912' + qc6CJjYAAAAJ:M0jDNLgoRFEC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 25 Aug 1916' + year: Unknown Year + qc6CJjYAAAAJ:M3NEmzRMIkIC: + citations: 82 + title: Two-body problem in general relativity theory + year: '1936' + qc6CJjYAAAAJ:M3ejUd6NZC8C: + citations: 416 + title: "Prinzipielles zur allgemeinen Relativit\xE4tstheorie" + year: '1918' + qc6CJjYAAAAJ:M8meJADSprsC: + citations: 196 + title: El significado de la relatividad + year: '1971' + qc6CJjYAAAAJ:MDX3w3dAD3YC: + citations: 907 + title: Zum quantensatz von Sommerfeld und Epstein + year: '1917' + qc6CJjYAAAAJ:MGPUR4WVBMEC: + citations: 81 + title: "Notiz zu der Arbeit von A. Friedmann \u201E\xDCber die Kr\xFCmmung des Raumes \u201C" + year: '1923' + qc6CJjYAAAAJ:ML0RJ9NH7IQC: + citations: 318 + title: New possibility for a unified field theory of gravitation and electricity + year: '1928' + qc6CJjYAAAAJ:MNNNGtAgD4EC: + citations: 15 + title: "Bemerkung zu dem Gesetz von E\xF6tv\xF6s" + year: '1911' + qc6CJjYAAAAJ:MTuJV9umhWMC: + citations: 0 + title: "Eine einfache Anwendung des Newtonschen Gravitationsgesetzes auf die kugelf\xF6rmigen Sternhaufen, ca. 18 M\xE4r 1921" + year: Unknown Year + qc6CJjYAAAAJ:MWSB05WFU5AC: + citations: 0 + title: "La corr\xE9lation de l'empirique et du rationnel dans l'oeuvre scientifique d'Einstein." + year: Unknown Year + qc6CJjYAAAAJ:MXK_kJrjxJIC: + citations: 622 + title: On a stationary system with spherical symmetry consisting of many gravitating masses + year: '1939' + qc6CJjYAAAAJ:MqTxh1vmwXEC: + citations: 2 + title: Physikalische Gesellschaft zu Berlin. Berlin, 12. Juni 1931 + year: '2006' + qc6CJjYAAAAJ:MvIMIWP2nqIC: + citations: 769 + title: 'The Collected Papers of Albert Einstein, Vol. 4: The Swiss Years: Writings, 1912-1914' + year: '1996' + qc6CJjYAAAAJ:Mx5hWS9ctUkC: + citations: 0 + title: Einstein's Collected Writings + year: '1960' + qc6CJjYAAAAJ:N6_Y7JlWxwsC: + citations: 41 + title: Physikalische Grundlagen einer Gravitationstheorie + year: '1914' + qc6CJjYAAAAJ:NAGhd4NKCV8C: + citations: 139 + title: "K\xF6niglich Preu\xDFische Akademie der Wissenschaften Berlin" + year: '1916' + qc6CJjYAAAAJ:NGoJ35N4lvkC: + citations: 40 + title: "Bemerkungen zu P. Harzers Abhandlung \xAB\xDCber die Mitf\xFChrung des Lichtes in Glas und die Aberration\xBB(AN 4748)" + year: '1914' + qc6CJjYAAAAJ:NJ774b8OgUMC: + citations: 21 + title: The advent of the quantum theory + year: '1951' + qc6CJjYAAAAJ:NM66qo_NnlUC: + citations: 902 + title: 'The Collected Papers of Albert Einstein: English Translation' + year: '1989' + qc6CJjYAAAAJ:NMxIlDl6LWMC: + citations: 5 + title: 'The Collected Papers of Albert Einstein, Volume 6: The Berlin Years: Writings, 1914-1917' + year: '1997' + qc6CJjYAAAAJ:NNXJ2mIwlScC: + citations: 6 + title: Albert Einstein, Michele Besso, correspondence, 1903-1955 + year: '1972' + qc6CJjYAAAAJ:NRnkAyzcrGMC: + citations: 0 + title: Gravitation of Spinning Matter as a Gauge Theory + year: Unknown Year + qc6CJjYAAAAJ:NU53l0vQ3PcC: + citations: 0 + title: "Ein einfaches Experiment zum Nachweis der Amp\xE8reschen Molekularstr\xF6me, 25 Feb 1916" + year: '1916' + qc6CJjYAAAAJ:NWFKKQzSIN4C: + citations: 4 + title: Besprechungen + year: '1914' + qc6CJjYAAAAJ:NXb4pA-qfm4C: + citations: 4 + title: 'Builders of the Universe: From the Bible to the Theory of Relativity' + year: '1932' + qc6CJjYAAAAJ:NYu48kWxaQAC: + citations: 11 + title: Albert Einstein] to Michele Besso:[A first] letter, 21 Jul 1916 + year: Unknown Year + qc6CJjYAAAAJ:NZNkWSpQBv0C: + citations: 71 + title: Zum Ehrenfestschen Paradoxon + year: '1910' + qc6CJjYAAAAJ:NnTm98qLMbgC: + citations: 568 + title: Mein weltbild + year: '1934' + qc6CJjYAAAAJ:Nnq8S6OXqDYC: + citations: 155 + title: "Allgemeine relativit\xE4tstheorie und bewegungsgesetz" + year: '1927' + qc6CJjYAAAAJ:Np1obAXpBq8C: + citations: 0 + title: 'Albert Einstein] to Hermann Weyl: Letter, 15 Apr 1918' + year: Unknown Year + qc6CJjYAAAAJ:Ns2bVKt8YxIC: + citations: 500 + title: Sidelights on Relativity,... I. Ether and Relativity. II. Geometry and Experience + year: '1922' + qc6CJjYAAAAJ:Nufq_to8ts0C: + citations: 191 + title: "Das Prinzip von der Erhaltung der Schwerpunktsbewegung und die Tr\xE4gheit der Energie" + year: '1906' + qc6CJjYAAAAJ:Nw5Pwe77XXAC: + citations: 0 + title: 'Albert Einstein] to Wilhelm Wien: Letter, 17 Oct 1916' + year: Unknown Year + qc6CJjYAAAAJ:Nw_I7GeUguwC: + citations: 165 + title: "Zur allgemeinen molekularen Theorie der W\xE4rme" + year: '1904' + qc6CJjYAAAAJ:NzUpm4bhSXQC: + citations: 2 + title: "Die Quantentheorie der spezifischen W\xE4rme" + year: '1967' + qc6CJjYAAAAJ:O0MA3yP7Y3UC: + citations: 231 + title: 'The Collected Papers of Albert Einstein, Volume 8: The Berlin Years: Correspondence, 1914-1918.' + year: '1998' + qc6CJjYAAAAJ:O3NaXMp0MMsC: + citations: 138 + title: How I created the theory of relativity + year: '1982' + qc6CJjYAAAAJ:OBae9N4Z9bMC: + citations: 21 + title: "L\u2019\xE9volution des id\xE9es en physique" + year: '1978' + qc6CJjYAAAAJ:OC7j4ufeY2cC: + citations: 0 + title: 'Albert Einstein] to Friedrich Adler: Letter, 20 Oct 1918' + year: Unknown Year + qc6CJjYAAAAJ:ODN9lDrI8hIC: + citations: 16 + title: Appendix II. Generalization of gravitation theory + year: '1953' + qc6CJjYAAAAJ:OLNndOjO69MC: + citations: 0 + title: 'Friedrich Wilhelm Foerster und Albert Einstein: Briefwechsel von 1935 bis 1954' + year: '2001' + qc6CJjYAAAAJ:OPs5gEIPXMUC: + citations: 7550 + title: On gravitational waves Sitzungsber. preuss + year: '1918' + qc6CJjYAAAAJ:OTTXONDVkokC: + citations: 0 + title: On the relativity problem + year: '2007' + qc6CJjYAAAAJ:OVe_t5h5bhEC: + citations: 265 + title: "Mi visi\xF3n del mundo" + year: '1985' + qc6CJjYAAAAJ:Oi-j_DTgP3cC: + citations: 3 + title: 'Einstein und Smoluchowski: Zur Geschichte der Brownschen Bewegung und der Opaleszenz' + year: '1969' + qc6CJjYAAAAJ:OiA2aNrLN7MC: + citations: 0 + title: The Rise and Fall of the Great Ether + year: '1993' + qc6CJjYAAAAJ:OlbiQ0ttILcC: + citations: 186 + title: "Las teor\xEDas de la relatividad" + year: '1922' + qc6CJjYAAAAJ:Ow2R9nchCv8C: + citations: 0 + title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 10 Feb 1915" + year: Unknown Year + qc6CJjYAAAAJ:OwUwxyS7Fk8C: + citations: 0 + title: On German Literature for Viola Da Gamba in the 16th and 17th Centuries + year: '1977' + qc6CJjYAAAAJ:P1qO8dLd1z8C: + citations: 196 + title: The Photoelectric Effect + year: '1905' + qc6CJjYAAAAJ:P9oYG7HA76QC: + citations: 13 + title: The military mentality + year: '1947' + qc6CJjYAAAAJ:PLWDSxI5WzYC: + citations: 41 + title: Deutsche Physikalische Gesellschaft + year: '1915' + qc6CJjYAAAAJ:PPAp3RzCAaIC: + citations: 61 + title: 'Briefwechsel: Albert Einstein, Arnold Sommerfeld: Sechzig Briefe Aus Dem Goldenen Zeitalter Der Modernen Physik' + year: '1968' + qc6CJjYAAAAJ:PQm_lTwdG-sC: + citations: 125 + title: "Einleitende Bemerkungen \xFCber Grundbegriffe (with French transl. Remarques pr\xE9liminaires sur les principes fondamentaux, by MA Tonnelat)" + year: '1953' + qc6CJjYAAAAJ:PVjk1bu6vJQC: + citations: 0 + title: "Einstein und sein Weltbild: Aufs\xE4tze und Vortr\xE4ge" + year: '1988' + qc6CJjYAAAAJ:PWMd_Z0sy-4C: + citations: 58 + title: "Th\xE9orie unitaire du champ physique" + year: '1930' + qc6CJjYAAAAJ:PbrqR9PZhrEC: + citations: 5 + title: "On Boltzmann\u2019s Principle and Some Immediate Consequences Thereof" + year: '2006' + qc6CJjYAAAAJ:PicmXY_cuE0C: + citations: 2 + title: ADDRESS BEFORE STUDENT BODY CALIFORNIA INSTITUTE OF TECHNOLOGY + year: '1938' + qc6CJjYAAAAJ:PoEJn1poz0QC: + citations: 265 + title: 'Wissenschaftlicher Briefwechsel Mit Bohr, Einstein, Heisenberg, Ua: Scientific Correspondence with Bohr, Einstein, Heisenberg, Ao Volume 1: 1919-1929. 1919-1929' + year: '1979' + qc6CJjYAAAAJ:Q7hiZQKJ-pAC: + citations: 245 + title: 'Cosmic religion: with other opinions and aphorisms' + year: '1931' + qc6CJjYAAAAJ:Q9ss7R9eeXsC: + citations: 11 + title: "Sulla teoria speciale e generale della relativit\xE0" + year: '1921' + qc6CJjYAAAAJ:QAsQKsfVUN4C: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 24 Dec 1917' + year: Unknown Year + qc6CJjYAAAAJ:QBXC_7Xd1GUC: + citations: 13 + title: 'The new physics: the route into the atomic age' + year: '1979' + qc6CJjYAAAAJ:QDEWnZBrHwAC: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, after 1 Feb 1918' + year: Unknown Year + qc6CJjYAAAAJ:QI7uKX5mnFEC: + citations: 4 + title: "Cien a\xF1os de relatividad: Los art\xEDculos de Albert Einstein de 1905 y 1906" + year: '2004' + qc6CJjYAAAAJ:QIV2ME_5wuYC: + citations: 682 + title: Does the inertia of a body depend upon its energy-content? + year: '1905' + qc6CJjYAAAAJ:QKtdBID3u5MC: + citations: 39 + title: Einstein und das Universum + year: '1958' + qc6CJjYAAAAJ:QSG1pgF8pGAC: + citations: 0 + title: 'The Theory of Relativity in Contemporary Science: Papers Read at the Celebration of the Seventieth Birthday of Albert Einstein in Princeton, March 19, 1949' + year: '1949' + qc6CJjYAAAAJ:QUKcMBy53xEC: + citations: 0 + title: "L'actualit\xE9 constante de la th\xE9orie de gravitation d'Einstein." + year: Unknown Year + qc6CJjYAAAAJ:QXXbHxWZe5oC: + citations: 4 + title: My Attitude to Quantum Theory + year: '1950' + qc6CJjYAAAAJ:QYdC8u9Cj1oC: + citations: 11 + title: Special and General relativity + year: '1920' + qc6CJjYAAAAJ:Q_E8KsG3g9MC: + citations: 13 + title: Correspondencia (1916-1955) + year: '1999' + qc6CJjYAAAAJ:QaLwMs-zPFMC: + citations: 0 + title: "Notiz zu E. Schr\xF6dingers Arbeit\" Die Energiekomponenten des Gravitationsfeldes\", 5 Feb 1918" + year: Unknown Year + qc6CJjYAAAAJ:QbuKDewGlxwC: + citations: 0 + title: "La Th\xE9orie d'Einstein, ou La piperie relativiste" + year: '1928' + qc6CJjYAAAAJ:QhmGFXoqNHAC: + citations: 0 + title: 'Albert Einstein] to Hermann Weyl: Letter, 27 Sep 1918' + year: Unknown Year + qc6CJjYAAAAJ:QjNCP7ux8QYC: + citations: 5 + title: Mein Weltbild, Herausgegeben von Carl Seelig, Neue, vom Verfasser durchgesehene und wesentlich erweiterte Auflage + year: Unknown Year + qc6CJjYAAAAJ:Qo9Q-PfIzZ0C: + citations: 18 + title: "Observa\xE7\xF5es sobre a situa\xE7\xE3o atual da teoria da luz" + year: '1926' + qc6CJjYAAAAJ:QoN_6baHBqgC: + citations: 3 + title: Geometria ed esperienza1 + year: '1957' + qc6CJjYAAAAJ:Qovp55VTycgC: + citations: 0 + title: F. General relativity and its general covariance + year: Unknown Year + qc6CJjYAAAAJ:QppYajJO_VYC: + citations: 17 + title: "Albert Einstein und Johannes Stark: Briefwechsel und Verh\xE4ltnis der beiden Nobelpreistr\xE4ger" + year: '1966' + qc6CJjYAAAAJ:Qqt8gOYqc0UC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 14 Feb 1917' + year: Unknown Year + qc6CJjYAAAAJ:QuPaituDtm8C: + citations: 2 + title: CULTURE MUST BE ONE OF THE FOUNDATIONS FOR WORLD UNDERSTANDING'. + year: '1996' + qc6CJjYAAAAJ:Qwfv3SoyJx4C: + citations: 2 + title: "Physikalische Gesellschaft zu Berlin und Deutsche Gesellschaft f\xFCr technische Physik. Berlin, 17. Juli 1931" + year: '2006' + qc6CJjYAAAAJ:R3hNpaxXUhUC: + citations: 290 + title: "Lettres \xE0 Maurice Solovine" + year: '1956' + qc6CJjYAAAAJ:R6aXIXmdpM0C: + citations: 3 + title: Pourquoi le socialisme? + year: '1993' + qc6CJjYAAAAJ:RF4BjkDOTHkC: + citations: 961 + title: "Letters on Wave Mechanics: Correspondence with HA Lorentz, Max Planck, and Erwin Schr\xF6dinger" + year: '2011' + qc6CJjYAAAAJ:RJNGbXJAtMsC: + citations: 14 + title: 'The essential Einstein: his greatest works' + year: '2008' + qc6CJjYAAAAJ:RPps9qLA3-kC: + citations: 103 + title: Letter to Jacques Hadamard + year: '1952' + qc6CJjYAAAAJ:Rc-B-9qnGaUC: + citations: 0 + title: Bemerkungen iiber den Wandel der Problemstcllungen in der theoretischen Physik + year: Unknown Year + qc6CJjYAAAAJ:RfUwGJFMQ-0C: + citations: 4060 + title: Zur quantentheorie der strahlung + year: '1917' + qc6CJjYAAAAJ:RgMnzfD6kpIC: + citations: 14 + title: Only then shall we find courage + year: '1946' + qc6CJjYAAAAJ:RmQ8dt0hH3oC: + citations: 0 + title: "Buchbesprechungen \xFCber: Grundz\xFCge der Relativit\xE4tstheorie" + year: '1957' + qc6CJjYAAAAJ:RpHLKABnwqoC: + citations: 0 + title: "Berichtigung zur Abhandlung:\" \xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper\", 24 Aug 1908" + year: Unknown Year + qc6CJjYAAAAJ:S0RksyIsHSIC: + citations: 0 + title: "Briefe zur Wellenmechanik: Mit 4 portr\xE4ts" + year: '1963' + qc6CJjYAAAAJ:S2WlVNSe3u4C: + citations: 127 + title: "Kinetische Theorie des W\xE4rmegleichgewichtes und des zweiten Hauptsatzes der Thermodynamik" + year: '1902' + qc6CJjYAAAAJ:S9V7H-Nz35UC: + citations: 7321 + title: On a Heuristic Point of View Toward the Emission and Transformation of Light + year: '1905' + qc6CJjYAAAAJ:SFOYbPikdlgC: + citations: 22 + title: Spaltung der natuerlichsten Feldgleichungen fuer Semi-Vektoren in Spinor-Gleichungen vom Dirac'schen Typus + year: '1933' + qc6CJjYAAAAJ:SLTdnKVCdHAC: + citations: 0 + title: 'Albert Einstein] to Wilhelm Wien: Letter, 18 Mar 1916' + year: Unknown Year + qc6CJjYAAAAJ:SPgoriM2DtkC: + citations: 10 + title: 'Albert Einstein] to Max Born: Letter, after 29 Jun 1918' + year: Unknown Year + qc6CJjYAAAAJ:S_Qw7xXuMuIC: + citations: 827 + title: 'The collected papers of Albert Einstein: The Berlin years: correspondence, January-December 1921' + year: '2009' + qc6CJjYAAAAJ:S_fw-_riRmcC: + citations: 10 + title: Albert einstein to max born + year: '2005' + qc6CJjYAAAAJ:Se3iqnhoufwC: + citations: 969 + title: The world as I see it + year: '2007' + qc6CJjYAAAAJ:SenaEjHFqFYC: + citations: 7 + title: The Structure of Scientific Thought + year: '1960' + qc6CJjYAAAAJ:Sg-YnEhjH50C: + citations: 0 + title: ALBERT EINSTEIN, UN HOMBRE UNIVERSAL + year: Unknown Year + qc6CJjYAAAAJ:ShjGdcaqzI0C: + citations: 188 + title: "\xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper" + year: '1908' + qc6CJjYAAAAJ:Sipo1f_CKiIC: + citations: 0 + title: "Albert Einstein] to Walter D\xE4llenbach: Letter, after 15 Jun 1918" + year: Unknown Year + qc6CJjYAAAAJ:SpbQ_efOBbkC: + citations: 0 + title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, 3 Oct 1916' + year: Unknown Year + qc6CJjYAAAAJ:SrKkpNFED5gC: + citations: 409 + title: "Zum gegenw\xE4rtigen Stand des Strahlungsproblems" + year: '1909' + qc6CJjYAAAAJ:SrsqWtBqNIQC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 25 Jan 1915' + year: Unknown Year + qc6CJjYAAAAJ:SxVRRePJDnEC: + citations: 0 + title: 'Albert Einstein] to Wladyslaw Natanson: Letter, 24 Aug 1915' + year: Unknown Year + qc6CJjYAAAAJ:SzsLJvG5eXAC: + citations: 2011 + title: Autobiographical Notes, ed + year: '1979' + qc6CJjYAAAAJ:T64LSalLz9oC: + citations: 0 + title: 'Albert Einstein] to Willem de Sitter: Letter, 23 Jan 1917' + year: Unknown Year + qc6CJjYAAAAJ:T8_be82Iz5gC: + citations: 158 + title: Zur Theorie des statischen Gravitationsfeldes + year: '2006' + qc6CJjYAAAAJ:TA1nTKmGtTgC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 19 Aug 1914' + year: Unknown Year + qc6CJjYAAAAJ:TFP_iSt0sucC: + citations: 79 + title: Letters on wave mechanics + year: '1967' + qc6CJjYAAAAJ:TGemctCAZTQC: + citations: 37 + title: The new field theory + year: '1929' + qc6CJjYAAAAJ:TIZ-Mc8IlK0C: + citations: 1080 + title: On the method of theoretical physics + year: '1934' + qc6CJjYAAAAJ:TKTY8N1AUUAC: + citations: 0 + title: 'Albert Einstein] to Wilhelm Wien: Letter, 28 Feb 1916' + year: Unknown Year + qc6CJjYAAAAJ:TNEldfgDb5MC: + citations: 769 + title: 'The Collected Papers of Albert Einstein, Vol. 4: The Swiss Years: Writings, 1912-1914' + year: '1996' + qc6CJjYAAAAJ:TXgqPU86QykC: + citations: 0 + title: Review of Publications-Out of My Later Years + year: '1950' + qc6CJjYAAAAJ:TeJ9juy8vcMC: + citations: 38 + title: On the Present State of the Problem of Gravitation + year: '2007' + qc6CJjYAAAAJ:TewouNez5YAC: + citations: 2 + title: "Filosofia e relativit\xE0" + year: '1965' + qc6CJjYAAAAJ:Tfl4UtY-dJUC: + citations: 66 + title: "Hamilton\u2019s principle and the general theory of relativity" + year: '1916' + qc6CJjYAAAAJ:TiIbgCYny7sC: + citations: 8767 + title: "Zur Elektrodynamik bewegter K\xF6rper" + year: Unknown Year + qc6CJjYAAAAJ:TmnWbB_axlEC: + citations: 83 + title: Untersuchungen uber die Theorie der Brownschen Bewegung + year: '1922' + qc6CJjYAAAAJ:ToZsFq5dof0C: + citations: 3 + title: "Les fondements de la th\xE9orie de la relativit\xE9 g\xE9n\xE9rale. Th\xE9orie unitaire de la gravitation et de l'electricit\xE9. Sur la structure cosmologique de l'espace." + year: '1934' + qc6CJjYAAAAJ:U5uP8zs9lfgC: + citations: 11 + title: Bemerkung zu E. Gehrckes Notiz + year: '1918' + qc6CJjYAAAAJ:UC7Jl7-kV0oC: + citations: 160 + title: Scientific papers presented to Max Born + year: '1953' + qc6CJjYAAAAJ:UEa65astgjsC: + citations: 0 + title: REPLY TO REICHENBACH 75 + year: '1953' + qc6CJjYAAAAJ:UFuRdyijzaAC: + citations: 0 + title: 'Albert Einstein] to Otto Naumann: Letter, 7 Dec 1915' + year: Unknown Year + qc6CJjYAAAAJ:ULOm3_A8WrAC: + citations: 322 + title: On the motion of particles in general relativity theory + year: '1949' + qc6CJjYAAAAJ:UO8fSLLLPykC: + citations: 4 + title: 'Albert Einstein] to Hedwig and Max Born: Letter, 2 Aug 1918' + year: Unknown Year + qc6CJjYAAAAJ:UOgPUojWnykC: + citations: 16 + title: Science and God + year: '1930' + qc6CJjYAAAAJ:UPMPWMAU16oC: + citations: 0 + title: Lecture Notes for Courses on Special Relativity at the University of Berlin and the University of Zurich, Winter Semester 1918-1919, 11 October 1918-second half of February 1919 + year: Unknown Year + qc6CJjYAAAAJ:USX2HHcnDqcC: + citations: 0 + title: "Bemerkung zu Herrn Schr\xF6dingers Notiz\" \xDCber ein L\xF6sungssystem der allgemein kovarianten Gravitationsgleichungen\", 3 M\xE4r 1918" + year: Unknown Year + qc6CJjYAAAAJ:UY3hNwcQ290C: + citations: 27 + title: "La teor\xEDa de la relatividad: Sus or\xEDgenes e impacto sobre el pensamiento moderno" + year: '1983' + qc6CJjYAAAAJ:UbXTy9l1WKIC: + citations: 0 + title: The Effect of Autonomous Algorithms on Networking + year: Unknown Year + qc6CJjYAAAAJ:UeHWp8X0CEIC: + citations: 65 + title: "Sobre la electrodin\xE1mica de los cuerpos en movimiento" + year: '2005' + qc6CJjYAAAAJ:UebtZRa9Y70C: + citations: 966 + title: "\xDCber die spezielle und die allgemeine Relativit\xE4tstheorie" + year: '2008' + qc6CJjYAAAAJ:UlRcoTO8nVoC: + citations: 0 + title: On a Jewish Palestine. First Version, before 27 Jun 1921 + year: Unknown Year + qc6CJjYAAAAJ:Ul_CLA4dPeMC: + citations: 209 + title: 'Religion and Science: Irreconcilable?' + year: '1948' + qc6CJjYAAAAJ:UnhBtiQKoKQC: + citations: 26 + title: 'The Swiss Years: Writing 1900-1909:...' + year: '1989' + qc6CJjYAAAAJ:UoSa6IK8DwsC: + citations: 14 + title: from The Einstein-Freud Correspondence (1931-1932) + year: '1960' + qc6CJjYAAAAJ:UuaQgmrAG1sC: + citations: 0 + title: 'Albert Einstein] to Michele Besso: Letter, 31 Oct 1916' + year: Unknown Year + qc6CJjYAAAAJ:Uwzdpet-joYC: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 28 Nov 1915' + year: Unknown Year + qc6CJjYAAAAJ:V0QqM0Py3VsC: + citations: 0 + title: Die Zuwanderung aus dem Osten Berliner Tageblatt, 30 Dez 1919 + year: Unknown Year + qc6CJjYAAAAJ:V8JMcbNWlSUC: + citations: 0 + title: Relating to relativity + year: '1940' + qc6CJjYAAAAJ:VBbLNo9YSJgC: + citations: 0 + title: 'Albert Einstein] to Wilhelm Wien: Letter, 15 Jun 1914' + year: Unknown Year + qc6CJjYAAAAJ:VGxY11nYJJYC: + citations: 0 + title: "Gen\xE8se de la conception de la gravitation g\xE9om\xE9trique tensorielle (1912-1913)." + year: Unknown Year + qc6CJjYAAAAJ:VJOaslTFpLQC: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 1 Jun 1918' + year: Unknown Year + qc6CJjYAAAAJ:VLnqNzywnoUC: + citations: 446 + title: "Das relativit\xE4tsprinzip: Eine sammlung von abhandlungen" + year: '1915' + qc6CJjYAAAAJ:VOx2b1Wkg3QC: + citations: 45 + title: "O princ\xEDpio da relatividade" + year: '1983' + qc6CJjYAAAAJ:VTkKiNFP83YC: + citations: 4 + title: "Relativit\xE0, Boringhieri" + year: '1960' + qc6CJjYAAAAJ:VXkaQG_c9EQC: + citations: 1 + title: "La educaci\xF3n y la Atenci\xF3n Primaria de la salud en la Complejidad Social" + year: Unknown Year + qc6CJjYAAAAJ:VaBbNeojGYwC: + citations: 0 + title: 'Einstein''s New Theory: Text of His Treatise' + year: '1929' + qc6CJjYAAAAJ:VdWZULf8Gq0C: + citations: 0 + title: Determinism in Classical and Quantal Physics by JM Jauch + year: '1973' + qc6CJjYAAAAJ:VfMbra648c4C: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 3 Mar 1916' + year: Unknown Year + qc6CJjYAAAAJ:VglVhKISWcQC: + citations: 7 + title: ON A HEURISTIC VIEWPOINT OF THE CREATION AND MODIFICATION OF LIGHT + year: '1905' + qc6CJjYAAAAJ:VjBpw8Hezy4C: + citations: 4 + title: Besprechungen + year: '1922' + qc6CJjYAAAAJ:VnuxuLaQPLMC: + citations: 50 + title: "Semi\u2010Vektoren und Spinoren" + year: '1932' + qc6CJjYAAAAJ:VoB_afVdn6EC: + citations: 0 + title: "Cuestiones fundamentales de la f\xEDsica contempor\xE1nea" + year: Unknown Year + qc6CJjYAAAAJ:Vxkav03X4woC: + citations: 1 + title: 'The collected papers of Albert Einstein. Vol 6, The Berlin years: writings, 1914-1917:[English translation]' + year: '2002' + qc6CJjYAAAAJ:VyOdxF-JhwgC: + citations: 246 + title: SB preuss + year: '1916' + qc6CJjYAAAAJ:VyewGSb6xwwC: + citations: 0 + title: 'Albert Einstein] to Wilhelm Wien: Letter, 2 Jun 1917' + year: Unknown Year + qc6CJjYAAAAJ:W1ZWpF0a3GIC: + citations: 1 + title: THE FREEDOM OF LEARNING. + year: '1936' + qc6CJjYAAAAJ:W6h41lW4BooC: + citations: 27 + title: "L'\xE9tat actuel du probl\xE8me des chaleurs sp\xE9cifiques" + year: '1912' + qc6CJjYAAAAJ:W7OEmFMy1HYC: + citations: 1576 + title: Lens-like action of a star by the deviation of light in the gravitational field + year: '1936' + qc6CJjYAAAAJ:WC4w5-ZrDNIC: + citations: 10 + title: "Textos fundamentais da f\xEDsica moderna" + year: '2001' + qc6CJjYAAAAJ:WD7AgJrCjNIC: + citations: 0 + title: La discussion Einstein-Bohr. + year: Unknown Year + qc6CJjYAAAAJ:WF5omc3nYNoC: + citations: 1019 + title: On gravitational waves + year: '1937' + qc6CJjYAAAAJ:WIVIxizkzXoC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 26 Dec 1915' + year: Unknown Year + qc6CJjYAAAAJ:WIXB4To3Tx4C: + citations: 109 + title: "Relativit\xE4t und gravitation. Erwiderung auf eine bemerkung von M. Abraham" + year: '1912' + qc6CJjYAAAAJ:WM2K3OHRCGMC: + citations: 217 + title: "Notas autobiogr\xE1ficas" + year: '2003' + qc6CJjYAAAAJ:WMtz-WDmgKQC: + citations: 59 + title: "Newtons Mechanik und ihr Einflu\xDF auf die Gestaltung der theoretischen Physik" + year: '1927' + qc6CJjYAAAAJ:WQTnNU6cpycC: + citations: 0 + title: 'Albert Einstein] to Geertruida de Haas: Letter, before 10 Apr 1915' + year: Unknown Year + qc6CJjYAAAAJ:WTSGYGHz1bkC: + citations: 0 + title: The collected papers of Albert Einstein. Vol. 11, Cumulative index, bibliography, list of correspondence, chronology, and errata to volumes 1-10 + year: Unknown Year + qc6CJjYAAAAJ:WY6AygvC5sMC: + citations: 0 + title: "Albert Einstein] to Walter D\xE4llenbach: Letter, 31 May 1915" + year: Unknown Year + qc6CJjYAAAAJ:WYtWvJut7doC: + citations: 0 + title: Reply to Welcome of Scientists of the California Institute of Technology in 1931 + year: '1949' + qc6CJjYAAAAJ:WgBxaE7EUScC: + citations: 0 + title: Autograph Manuscript of Einstein's Theory of Relativity + year: '1931' + qc6CJjYAAAAJ:WliCQ7fkH-wC: + citations: 48 + title: Emission and absorption of radiation according to the quantum theory + year: '1916' + qc6CJjYAAAAJ:WtgKeONp1i0C: + citations: 186 + title: "Lettres a Maurice Solovine: reprod. en facsimil\xE9 et trad. en fran\xE7aise: avec une introduction et trois photographies" + year: '1956' + qc6CJjYAAAAJ:WxjA8IQWSGYC: + citations: 0 + title: Dr. Einstein to Dean Muelder + year: '1955' + qc6CJjYAAAAJ:WzbvD7BMtBoC: + citations: 0 + title: 'Albert Einstein] to Wladyslaw Natanson: Letter, 14 Sep 1917' + year: Unknown Year + qc6CJjYAAAAJ:X-Dm1JipzzIC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 18 Dec 1915' + year: Unknown Year + qc6CJjYAAAAJ:X1xEhyGaivYC: + citations: 1 + title: "Ged\xE4chtnisrede auf Karl Schwarzschild" + year: '2006' + qc6CJjYAAAAJ:X3EXpuCuTEcC: + citations: 0 + title: The collecteds of albert einstein v 9 the berlin years correspondence january 1919 april 1920 (hardback) + year: '2004' + qc6CJjYAAAAJ:X5QHDg3V9EEC: + citations: 2 + title: Science and synthesis + year: '1971' + qc6CJjYAAAAJ:X5YyAB84Iw4C: + citations: 292 + title: Philosopher-Scientist + year: '1970' + qc6CJjYAAAAJ:XK2cf6JOk9AC: + citations: 0 + title: 'Gefaehrliche Freundschaft: Konsens in schwieriger Zeit' + year: '1996' + qc6CJjYAAAAJ:XOE35tnTnDYC: + citations: 48 + title: Space-time + year: '1929' + qc6CJjYAAAAJ:XR3BWSlh_xcC: + citations: 14 + title: "Sobre la teor\xEDa especial y la teoria general de la relatividad" + year: '1983' + qc6CJjYAAAAJ:XUAslYVNQLQC: + citations: 264 + title: Relativita + year: '1960' + qc6CJjYAAAAJ:XWcFhoZvYIAC: + citations: 0 + title: "Problemy fiziki: klassika i sovremennost\u02B9" + year: '1982' + qc6CJjYAAAAJ:XX7pGhTe5MgC: + citations: 0 + title: 'Albert Einstein] to Paul Gruner: Letter, 11 Feb 1908' + year: Unknown Year + qc6CJjYAAAAJ:XZvG1uL-wj0C: + citations: 1126 + title: 'On the method of theoretical physics: The Herbert Spencer lecture, delivered at Oxford 10 June 1933' + year: '1933' + qc6CJjYAAAAJ:Xc-mKOjpdrwC: + citations: 0 + title: Relativistische Physik + year: Unknown Year + qc6CJjYAAAAJ:XdYaqolBBq8C: + citations: 30 + title: 'The Collected Papers of Albert Einstein, Volume 9: The Berlin Years: Correspondence, January 1919-April 1920' + year: '2004' + qc6CJjYAAAAJ:XdwVV_xN3QMC: + citations: 1388 + title: Draft of a Generalized Theory of Relativity and a Theory of Gravitation + year: '1913' + qc6CJjYAAAAJ:XeErXHja3Z8C: + citations: 14 + title: "\xDCber die Interferenzeigenschaften des durch Kanalstrahlen emittierten Lichtes" + year: '1926' + qc6CJjYAAAAJ:XfMaBeGYgSgC: + citations: 0 + title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, 10 Aug 1915' + year: Unknown Year + qc6CJjYAAAAJ:Xi1bsBfZRoQC: + citations: 0 + title: 'Reise nach Japan Palestine Spanien 6 Oktober 1922-12.3. 23: Various places' + year: '1923' + qc6CJjYAAAAJ:XiSMed-E-HIC: + citations: 63 + title: What I believe + year: '1956' + qc6CJjYAAAAJ:Xnn2mF3JXD4C: + citations: 72 + title: "Untersuchungen \xFCber die Theorie der Brownschen Bewegung" + year: '1922' + qc6CJjYAAAAJ:XtJa11BXPS4C: + citations: 36 + title: Atomic war or peace + year: '1947' + qc6CJjYAAAAJ:Xtec1x7NZGAC: + citations: 0 + title: Constante de Planck + year: Unknown Year + qc6CJjYAAAAJ:XzWLPxS1ir4C: + citations: 0 + title: "Research@ FrankfurtSchool in Zeiten der Finanzmarktkrise \u201EA Collection of Working Papers \u201C" + year: Unknown Year + qc6CJjYAAAAJ:Y0agIcFmOsQC: + citations: 1289 + title: A correction on my work-A new determination of molecular dimensions + year: '1969' + qc6CJjYAAAAJ:Y1W0x10ZrwMC: + citations: 0 + title: Nonlinear Partial Differential Equations with Applications + year: Unknown Year + qc6CJjYAAAAJ:Y3Sh7dCAXz0C: + citations: 6 + title: "Correspondance 1903-1955, publi\xE9e par P" + year: '1972' + qc6CJjYAAAAJ:Y6EZgx1ah38C: + citations: 0 + title: "L'\xE9lectron et la th\xE9orie de la relativit\xE9 g\xE9n\xE9rale" + year: '1997' + qc6CJjYAAAAJ:YEBtnu9hOHUC: + citations: 0 + title: "A Statement of Purpose by the Emergency Committee of Atomic Scientists Incorporated: Presented to the Friends of the Committee on Sunday, November Seventeenth, 1946, at the \u2026" + year: '1946' + qc6CJjYAAAAJ:YFjsv_pBGBYC: + citations: 56 + title: Essays in physics + year: '1950' + qc6CJjYAAAAJ:YK4ucWkmU_UC: + citations: 72 + title: 'Albert Einstein, the Human Side: New Glimpses from His Archives' + year: '1981' + qc6CJjYAAAAJ:YP-lgzILWVMC: + citations: 0 + title: 'Albert Einstein] to Mileva Einstein-Maric: Letter, 8 Apr 1916' + year: Unknown Year + qc6CJjYAAAAJ:YV61qt6iSr0C: + citations: 9 + title: "Los fundamentos de la geometr\xEDa" + year: '1948' + qc6CJjYAAAAJ:YXPZ0dOdYS4C: + citations: 2 + title: 'Einstein''s Zurich Notebook: Transcription and Facsimile' + year: '2007' + qc6CJjYAAAAJ:YZzzgH80nR8C: + citations: 29 + title: The Late Emmy Noether + year: '1935' + qc6CJjYAAAAJ:YbLjypsZzowC: + citations: 89 + title: "\xBF Por qu\xE9 la Guerra?" + year: '2001' + qc6CJjYAAAAJ:YiBZ6_7J9mkC: + citations: 0 + title: "THEORY OF RELATIVITY ON EINSTEIN: Einstein the Searcher. A. Moskowski. London, 1921. Albert Einstein. Anton Reiser. New York, 1930. Contemporary Immortals. A. Henderson. New \u2026" + year: '1938' + qc6CJjYAAAAJ:YiZc1oW-E3oC: + citations: 0 + title: 'Albert Einstein] to Otto Naumann: Letter, after 1 Oct 1915' + year: Unknown Year + qc6CJjYAAAAJ:Yo42cslQ7-cC: + citations: 20 + title: Physics, philosophy and scientific progress. + year: '1950' + qc6CJjYAAAAJ:YoqGh_aPxy4C: + citations: 76 + title: The common language of science + year: '1941' + qc6CJjYAAAAJ:YpRCXavlr0AC: + citations: 0 + title: 'Albert Einstein] to Michele and Anna Besso-Winteler: Letter, 1 Aug 1917' + year: Unknown Year + qc6CJjYAAAAJ:YsMSGLbcyi4C: + citations: 2239 + title: The particle problem in the general theory of relativity + year: '1935' + qc6CJjYAAAAJ:YvgfBAebZEkC: + citations: 0 + title: 'Notice to the world: renounce war or perish; world peace or universal death.[Sound recording]' + year: '1955' + qc6CJjYAAAAJ:Z5m8FVwuT1cC: + citations: 19 + title: Mi credo humanista + year: '1991' + qc6CJjYAAAAJ:ZDu_srLEjN8C: + citations: 144 + title: Preussische akademie der wissenschaften, Phys-math + year: '1925' + qc6CJjYAAAAJ:ZEcFV8kAgqMC: + citations: 0 + title: 'Albert Einstein] to Edgar Meyer: Letter, 30 Oct 1917' + year: Unknown Year + qc6CJjYAAAAJ:ZHR7-34Bl2wC: + citations: 0 + title: "Ged\xE4chtnisrede des Hrn. Einstein auf Karl Schwarzschild, 29 Jun 1916" + year: Unknown Year + qc6CJjYAAAAJ:ZHo1McVdvXMC: + citations: 1 + title: 'The collected papers of Albert Einstein. Vol. 3: The Swiss years: Writings 1909-1911; Vol. 5: The Swiss years: Correspondence 1902-1914' + year: '1993' + qc6CJjYAAAAJ:ZM__uENUXnMC: + citations: 0 + title: 'Albert Einstein] to the Council of Education: Letter, Canton of Zurich, 20 Jan 1908' + year: Unknown Year + qc6CJjYAAAAJ:ZWXmI6zqLYMC: + citations: 0 + title: "Bemerkung zu E. Gehrckes Notiz\" \xDCber den \xC4ther\", 29 Nov 1918" + year: Unknown Year + qc6CJjYAAAAJ:ZYLUaBFA95QC: + citations: 11 + title: 'Briefwechsel: Sechzig Briefe aus dem goldenen Zeitalter der modernen Physik' + year: '1968' + qc6CJjYAAAAJ:ZbQVaL1IMbQC: + citations: 622 + title: Quanzeml~ orie der stralllung + year: '1916' + qc6CJjYAAAAJ:ZbiiB1Sm8G8C: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 6 Apr 1916' + year: Unknown Year + qc6CJjYAAAAJ:ZeXyd9-uunAC: + citations: 317 + title: "Physik und realit\xE4t" + year: '1936' + qc6CJjYAAAAJ:ZfRJV9d4-WMC: + citations: 89 + title: Pourquoi la guerre? + year: '1933' + qc6CJjYAAAAJ:ZgPQhQxLujAC: + citations: 6 + title: Mein Weltbild, hrsg. v + year: '1977' + qc6CJjYAAAAJ:Zk83zdSX4-UC: + citations: 5 + title: "L'\xE9vidence de la th\xE9orie de Einstein" + year: '1923' + qc6CJjYAAAAJ:ZnWe2zbntUIC: + citations: 2 + title: 'Relativiteit: speciale en algemene theorie' + year: '1986' + qc6CJjYAAAAJ:Zph67rFs4hoC: + citations: 394 + title: "Grundz\xFCge der Relativit\xE4tstheorie" + year: '2002' + qc6CJjYAAAAJ:ZppSRAJs3i8C: + citations: 5 + title: 'Albert Einstein] to Moritz Schlick: Letter, 6 Feb 1917' + year: Unknown Year + qc6CJjYAAAAJ:ZuSUVyMx-TgC: + citations: 0 + title: 'Albert Einstein] to David Hilbert: Letter, 30 May 1916' + year: Unknown Year + qc6CJjYAAAAJ:ZysSsiWj_g4C: + citations: 21 + title: "Bemerkungen \xFCber periodische Schwankungen der Mondl\xE4nge, welche bisher nach der Newtonschen Mechanik nicht erkl\xE4rbar erschienen" + year: '1919' + qc6CJjYAAAAJ:_8B_re9sV0EC: + citations: 0 + title: 'Albert Einstein] to Romain Rolland: Letter, 15 Sep 1915' + year: Unknown Year + qc6CJjYAAAAJ:_8F20clBW_QC: + citations: 3 + title: Gelegentliches von Albert Einstein + year: '1929' + qc6CJjYAAAAJ:_9Xh93LWpsYC: + citations: 40 + title: "\xDCber Friedrich Kottlers Abhandlung \u201C\xDCber Einsteins \xC4quivalenzhypothese und die Gravitation\u201D" + year: '1916' + qc6CJjYAAAAJ:_IsBomjs8bsC: + citations: 26 + title: "Lassen sich Brechungsexponenten der K\xF6rper f\xFCr R\xF6ntgenstrahlen experimentell ermitteln?" + year: '1918' + qc6CJjYAAAAJ:_Nt1UvVys9QC: + citations: 23 + title: Gravitational and electromagnetic fields + year: '1931' + qc6CJjYAAAAJ:_Re3VWB3Y0AC: + citations: 133 + title: 'Einstein and the Poet: In Search of the Cosmic Man' + year: '1983' + qc6CJjYAAAAJ:_Ybze24A_UAC: + citations: 17 + title: The collected works of Bernhard Riemann + year: '1953' + qc6CJjYAAAAJ:_axFR9aDTf0C: + citations: 6 + title: Theoretical remark on the superconductivity of metals + year: '2005' + qc6CJjYAAAAJ:_bh1rdP-zDcC: + citations: 43 + title: "Die Diracgleichungen f\xFCr Semivektoren" + year: '1933' + qc6CJjYAAAAJ:_inCrQx-FbQC: + citations: 0 + title: "Depuis le principe d'\xE9quivalence jusqu'aux \xE9quations de la gravitation." + year: Unknown Year + qc6CJjYAAAAJ:_kc_bZDykSQC: + citations: 408 + title: A generalization of the relativistic theory of gravitation + year: '1945' + qc6CJjYAAAAJ:_mQi-xiA4oYC: + citations: 452 + title: "Die Relativit\xE4ts-Theorie" + year: '1911' + qc6CJjYAAAAJ:a2necdfpwlEC: + citations: 155 + title: "Eine Beziehung zwischen dem elastischen Verhalten und der spezifischen W\xE4rme bei festen K\xF6rpern mit einatomigem Molek\xFCl" + year: '1911' + qc6CJjYAAAAJ:a9-T7VOCCH8C: + citations: 3753 + title: The Science and the Life of Albert Einstein + year: '1982' + qc6CJjYAAAAJ:aDdGf5um_jkC: + citations: 0 + title: 'Albert Einstein] to Gustav Mie: Letter, 2 Jun 1917' + year: Unknown Year + qc6CJjYAAAAJ:aEPHIGigqugC: + citations: 4210 + title: "Physics and Reality, in \u201CIdeas and Opinions\u201D" + year: '1954' + qc6CJjYAAAAJ:aEyKTaVlRPYC: + citations: 10 + title: El mundo tal como yo lo veo + year: '1989' + qc6CJjYAAAAJ:aKos2Y7kUz0C: + citations: 107 + title: letter to Ernst Mach + year: '1923' + qc6CJjYAAAAJ:aMQnNzTHVu4C: + citations: 7 + title: 'Essays in Science (New York: Philosophical Library, 1934)' + year: Unknown Year + qc6CJjYAAAAJ:aXI_bbQgCfgC: + citations: 165 + title: "Die Ursache der M\xE4anderbildung der Flu\xDFl\xE4ufe und des sogenannten Baerschen Gesetzes" + year: '1926' + qc6CJjYAAAAJ:aXwx4OqTWR4C: + citations: 0 + title: Einstein Appeals for War Resisters + year: '1932' + qc6CJjYAAAAJ:abCsMXLaarkC: + citations: 8 + title: "Religi\xF3n y ciencia" + year: '2000' + qc6CJjYAAAAJ:abG-DnoFyZgC: + citations: 290 + title: The fundamentals of theoretical physics + year: '1950' + qc6CJjYAAAAJ:ace9KxS0p5UC: + citations: 280 + title: Zur theorie der lichterzeugung und lichtabsorption + year: '1906' + qc6CJjYAAAAJ:adHtZc2wMuEC: + citations: 129 + title: "Neue M\xF6glichkeit f\xFCr eine einheitliche Feldtheorie von Gravitation und Elektrizit\xE4t" + year: '1928' + qc6CJjYAAAAJ:adgdM4TzidAC: + citations: 189 + title: "Sur l'\xE9lectrodynamique des corps en mouvement" + year: '1905' + qc6CJjYAAAAJ:ae0xyBWlIcIC: + citations: 0 + title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 6 Jul 1915" + year: Unknown Year + qc6CJjYAAAAJ:afceBpUbn5YC: + citations: 58 + title: Atomic education urged by Einstein + year: '1946' + qc6CJjYAAAAJ:afcu1OVO0wMC: + citations: 10 + title: Autobiographical notes (1949) + year: Unknown Year + qc6CJjYAAAAJ:afsF9h1fxg0C: + citations: 2 + title: Physical meaning of geometrical propositions + year: '1961' + qc6CJjYAAAAJ:b9WrW9Envh0C: + citations: 0 + title: 'Albert Einstein Letter: Princeton, NJ, to JN Smith, Laguna Beach, Calif' + year: '1950' + qc6CJjYAAAAJ:bB6ab1qDjH0C: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 26 Nov 1916' + year: Unknown Year + qc6CJjYAAAAJ:bCjgOgSFrM0C: + citations: 1204 + title: "Die plancksche theorie der strahlung und die theorie der spezifischen w\xE4rme" + year: '1906' + qc6CJjYAAAAJ:bEWYMUwI8FkC: + citations: 280 + title: Why war? + year: '1933' + qc6CJjYAAAAJ:bFuYayV9R1gC: + citations: 0 + title: GENERAL RELATIVITY VERSUS QUANTUM THEORY + year: Unknown Year + qc6CJjYAAAAJ:bNEIKWRbVi8C: + citations: 0 + title: King's College Lecture, before 13 Jun 1921 + year: Unknown Year + qc6CJjYAAAAJ:bO_hriczGZwC: + citations: 0 + title: 'Albert Einstein] to Adolf von Harnack: Letter, 6 Oct 1917' + year: Unknown Year + qc6CJjYAAAAJ:bQkGhl1z2hUC: + citations: 0 + title: 'Albert Einstein] to Paul Hertz: Letter, 22 Aug 1915' + year: Unknown Year + qc6CJjYAAAAJ:bUu3lypoyhcC: + citations: 660 + title: On the quantum theory of radiation + year: '1972' + qc6CJjYAAAAJ:bcT4vkklUMwC: + citations: 0 + title: "Briefe zur Wellenmechanik: Schr\xF6dinger, Planck, Einstein, Lorentz; mit 4 Portr" + year: '1963' + qc6CJjYAAAAJ:bczYY1dZPtQC: + citations: 93 + title: "M\xE9thode pour la d\xE9termination de valeurs statistiques d'observations concernant des grandeurs soumises a des fluctuations irr\xE9guli\xE8res" + year: '1914' + qc6CJjYAAAAJ:bf7w-NijnqMC: + citations: 14 + title: Kinetic theory of thermal equilibrium and of the second law of thermodynamics + year: '1902' + qc6CJjYAAAAJ:bgW0xdllhO4C: + citations: 17 + title: Personal God Concept Causes Science-Religion Conflict + year: '1940' + qc6CJjYAAAAJ:bjlTY1bLvvcC: + citations: 0 + title: So You Want to + year: '2003' + qc6CJjYAAAAJ:blknAaTinKkC: + citations: 159 + title: "Zur Theorie der Radiometerkr\xE4fte" + year: '1924' + qc6CJjYAAAAJ:bnK-pcrLprsC: + citations: 30 + title: Unified field theory based on Riemannian metrics and distant parallelism + year: '1930' + qc6CJjYAAAAJ:boGf3zyra0UC: + citations: 0 + title: 'The collected papers of Albert Einstein. vol. 9, The Berlin years: correspondence, January 1919-April 1920:[English translation]' + year: Unknown Year + qc6CJjYAAAAJ:brChLMnLtjYC: + citations: 158 + title: Relativity Principle and its Consequences in Modern Physics. Collection of Scientific Works, V. 1 + year: '1965' + qc6CJjYAAAAJ:bsl25C5uMOsC: + citations: 26 + title: Field theories, old and new + year: '1960' + qc6CJjYAAAAJ:btULBOGQ_gcC: + citations: 0 + title: 'Albert Einstein] to Erwin Freundlich: Letter, 3 Sep 1917' + year: Unknown Year + qc6CJjYAAAAJ:bxbQgRQgr4sC: + citations: 0 + title: Selected works of Einstein with historical commentaries + year: '1979' + qc6CJjYAAAAJ:bz8QjSJIRt4C: + citations: 0 + title: 'Relativity: an interpretation of Einstein''s theory' + year: '1931' + qc6CJjYAAAAJ:c3oc_9pK2TEC: + citations: 9 + title: The Fight Against War + year: '1933' + qc6CJjYAAAAJ:c4A-nLdbYHEC: + citations: 1544 + title: 'Concepts of space: The history of theories of space in physics' + year: '1969' + qc6CJjYAAAAJ:c5LcigzBm8MC: + citations: 0 + title: 'Albert Einstein] to Heinrich Zangger: Letter, 24 Jun 1918' + year: Unknown Year + qc6CJjYAAAAJ:cB__R-XWw9UC: + citations: 147 + title: "Aus meinen sp\xE4ten Jahren" + year: '1952' + qc6CJjYAAAAJ:cG0OFEevkNgC: + citations: 0 + title: 'In Memory of Emmy Noether...: Abstract of Address Delivered by Professor Hermann Weyl... and Copy of Letter of Professor Albert Einstein' + year: '1935' + qc6CJjYAAAAJ:cNe27ouKFcQC: + citations: 6935 + title: "Die grundlage der allgemeinen relativit\xE4tstheorie" + year: '2006' + qc6CJjYAAAAJ:cOfwuRB03ygC: + citations: 3 + title: "Die spezielle relativit\xE4tstheorie Einsteins und die logik" + year: '1924' + qc6CJjYAAAAJ:cRMvf6lLvU8C: + citations: 265 + title: "Einige Argumente f\xFCr die Annahme einer molekularen Agitation beim absoluten Nullpunkt" + year: '1913' + qc6CJjYAAAAJ:cSdaV2aYdYsC: + citations: 415 + title: Spielen Gravitationsfelder im Aufbau der materiellen Elementarteilchen eine wesentliche Rolle? + year: '1919' + qc6CJjYAAAAJ:cTdzRpWJKHEC: + citations: 103 + title: Sitsungsber. Preus. Akad. Wiss + year: '1915' + qc6CJjYAAAAJ:caH3YpRUWsIC: + citations: 0 + title: Theories and sociology of the history of science + year: Unknown Year + qc6CJjYAAAAJ:cdM53WF7QocC: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 9 Mar 1917' + year: Unknown Year + qc6CJjYAAAAJ:cjagZD1ri60C: + citations: 260 + title: On the present status of the radiation problem + year: '1909' + qc6CJjYAAAAJ:co-xmOEWlm8C: + citations: 0 + title: Physical Principles of Sensing + year: Unknown Year + qc6CJjYAAAAJ:coeFWI40FR8C: + citations: 3 + title: Letter on the creative process + year: '1971' + qc6CJjYAAAAJ:cvMPO0XfNn8C: + citations: 0 + title: "cr\xE9ateur et rebelle" + year: '1972' + qc6CJjYAAAAJ:cww_0JKUTDwC: + citations: 165 + title: Eine Theorie der Grundlagen der Thermodynamik + year: '1903' + qc6CJjYAAAAJ:cxS_fjKIGZMC: + citations: 0 + title: 'Einstein, the Man, the Jew: Excerpts from His Articles, Speeches and Statements' + year: '1955' + qc6CJjYAAAAJ:d4Uf0zfqV5IC: + citations: 0 + title: "Signification de la relativit\xE9: appendice \xE0 la cinqui\xE8me \xE9dition de\" The meaning of relativity\"(d\xE9cembre 1954). Compl\xE9ments" + year: '1960' + qc6CJjYAAAAJ:d4tt_xEv1X8C: + citations: 219 + title: Lichtgeschwindigkeit und statik des Gravitationsfeldes + year: '1912' + qc6CJjYAAAAJ:d6JCS5z0ckYC: + citations: 4 + title: The establishment of an international bureau of meteorology + year: '1927' + qc6CJjYAAAAJ:dBIO0h50nwkC: + citations: 43 + title: Physics & reality + year: '2003' + qc6CJjYAAAAJ:dDz6LBb16w8C: + citations: 18 + title: The work and personality of Walther Nernst + year: '1942' + qc6CJjYAAAAJ:dFKc6_kCK1wC: + citations: 8 + title: "Bemerkung zu der Abhandlung von E. Trefftz:\u201CDas statische Gravitationsfeld zweier Massenpunkte in der Einsteinschen Theorie\u201D" + year: '2006' + qc6CJjYAAAAJ:dJ-sGqsME_YC: + citations: 9 + title: "Correspondence 1903\u20131955, ed" + year: '1972' + qc6CJjYAAAAJ:dTyEYWd-f8wC: + citations: 184 + title: "L'\xE9volution des id\xE9es en physique: des premiers concepts aux th\xE9ories de la relativit\xE9 et des quanta" + year: '1948' + qc6CJjYAAAAJ:dX-nQPao9noC: + citations: 0 + title: "Quelques explications concernant les d\xE9placements\" rouges\" dans les spectres des galaxies lointaines." + year: Unknown Year + qc6CJjYAAAAJ:dY-VugTTHzcC: + citations: 0 + title: "L'Heure H at-elle sonn\xE9 pour le monde?: effets accumulatifs des explosions nucl\xE9aires. Pr\xE9c\xE9d\xE9 d'un Message de Albert Einstein" + year: '1955' + qc6CJjYAAAAJ:dZbaGXT4iR0C: + citations: 38 + title: Education + year: '1950' + qc6CJjYAAAAJ:dgXhHFWAKKUC: + citations: 10 + title: 'Albert Einstein] to Max Born: Letter, after 3 Jul 1918' + year: Unknown Year + qc6CJjYAAAAJ:dhFuZR0502QC: + citations: 197 + title: 'Corrections and additional remarks to our paper: The influence of the expansion of space on the gravitation fields surrounding the individual stars' + year: '1946' + qc6CJjYAAAAJ:dhZ1Wuf5EGsC: + citations: 0 + title: "Continuous Symmetries and Conservation Laws. Noether\u2019s Theorem" + year: Unknown Year + qc6CJjYAAAAJ:dpaHy1TF288C: + citations: 0 + title: 'Albert Einstein] to Conrad Habicht: Letter, 14 Dec 1909' + year: Unknown Year + qc6CJjYAAAAJ:dtdq7L-L3iMC: + citations: 0 + title: Early life and education + year: Unknown Year + qc6CJjYAAAAJ:e3CVSTJ63dQC: + citations: 7 + title: "Der gegenw\xE4rtige Stand der Relativit\xE4tstheorie..." + year: '1931' + qc6CJjYAAAAJ:e3UXjaW_PBUC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 4 Nov 1915' + year: Unknown Year + qc6CJjYAAAAJ:e84hm74t-eoC: + citations: 5650 + title: "Eine neue bestimmung der molek\xFCldimensionen" + year: '1906' + qc6CJjYAAAAJ:eAUscmXIlQ8C: + citations: 29 + title: Nichteuklidische Geometrie und Physik + year: '1925' + qc6CJjYAAAAJ:eCFM_hdDfssC: + citations: 0 + title: The equivalence of gravitational and inertial mass + year: Unknown Year + qc6CJjYAAAAJ:eGJUmgNLeWAC: + citations: 4 + title: Besprechungen + year: '1918' + qc6CJjYAAAAJ:eJXPG6dFmWUC: + citations: 484 + title: The theory of relativity + year: '1996' + qc6CJjYAAAAJ:eKGuBlYFiu8C: + citations: 0 + title: "L'\xE9lectronique quantique et la th\xE9orie d'irradiation d'Einstein." + year: Unknown Year + qc6CJjYAAAAJ:eMMeJKvmdy0C: + citations: 12 + title: Det Moderne Verdensbillede + year: '1939' + qc6CJjYAAAAJ:ealulPZkXgsC: + citations: 3 + title: Expectations of a definite form + year: '1950' + qc6CJjYAAAAJ:ec1XJgWlWRUC: + citations: 0 + title: Relational, Linear-Time Communication for Replication + year: Unknown Year + qc6CJjYAAAAJ:ehoypfNsBj8C: + citations: 20 + title: Antwort auf vorstehende Betrachtung + year: '1920' + qc6CJjYAAAAJ:eiwtZcG9oBcC: + citations: 0 + title: 'A Letter from Einstein: Praises Dean Muelder''s Distinguished Lecture" The Idea of the Responsible Society"' + year: '1955' + qc6CJjYAAAAJ:eq2jaN3J8jMC: + citations: 66 + title: "\xDCber den Frieden: Weltordnung oder Weltuntergang?" + year: '1976' + qc6CJjYAAAAJ:esGtpfCv0y8C: + citations: 0 + title: Butsurigaku wa ikani tsukuraretaka + year: '1962' + qc6CJjYAAAAJ:evX43VCCuoAC: + citations: 296 + title: 'Scientific Correspondence with Bohr, Einstein, Heisenberg and Others...: 1919-1929' + year: '1979' + qc6CJjYAAAAJ:f-E_jMG6T4AC: + citations: 0 + title: La correspondance entre Einstein et De Broglie. + year: Unknown Year + qc6CJjYAAAAJ:f13iAvnbnnYC: + citations: 0 + title: PROBABILITY AND STOCHASTIC PROCESSES + year: Unknown Year + qc6CJjYAAAAJ:f14mYpCygl4C: + citations: 0 + title: "Kritisches zu einer von Hrn. De Sitter gegebenen L\xF6sung der Gravitationsgleichungen, 7 M\xE4r 1918" + year: Unknown Year + qc6CJjYAAAAJ:f2IySw72cVMC: + citations: 39 + title: Briefe an Maurice Solovine + year: '1960' + qc6CJjYAAAAJ:f36TrmluGJsC: + citations: 0 + title: 'Albert Einstein] to Otto Stern: Letter, after 4 Jun 1914' + year: Unknown Year + qc6CJjYAAAAJ:f8T_-ThkUo0C: + citations: 0 + title: "Histoire de la compr\xE9hension de l'origine du spectre infrarouge (1912-1920)(II)." + year: Unknown Year + qc6CJjYAAAAJ:f9jR0vFhilIC: + citations: 0 + title: "Sushchnost\u02B9 teorii otnositel\u02B9nosti: Perevod s angli\u012Dskogo" + year: '1955' + qc6CJjYAAAAJ:fEOibwPWpKIC: + citations: 147 + title: "\xDCber den \xC4ther" + year: '1924' + qc6CJjYAAAAJ:fHS53ZCY-AEC: + citations: 0 + title: 'Albert Einstein] to Kathia Adler: Letter, 20 Feb 1917' + year: Unknown Year + qc6CJjYAAAAJ:fLJJVVwU7EQC: + citations: 264 + title: "Ein einfaches Experiment zum Nachweis der Amp\xE8reschen Molekularstr\xF6me" + year: '1916' + qc6CJjYAAAAJ:fPk4N6BV_jEC: + citations: 66 + title: "Sobre a eletrodin\xE2mica dos corpos em movimento" + year: '1983' + qc6CJjYAAAAJ:fSKd39tHJ84C: + citations: 0 + title: To Prevent Misunderstanding + year: '1949' + qc6CJjYAAAAJ:fTLh7q_iUBEC: + citations: 40 + title: "Bemerkungen zu P. Harzers Abhandlung\xBB \xDCber die Mitf\xFChrung des Lichtes in Glas und die Aberration \xAB." + year: '1914' + qc6CJjYAAAAJ:fXCg-C-QWH4C: + citations: 0 + title: "Albert Einstein, o lado humano: r\xE1pidas vis\xF5es colhidas em seus arquivos" + year: '1979' + qc6CJjYAAAAJ:fZtrMt_Z7PsC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, beginning Dec 1914' + year: Unknown Year + qc6CJjYAAAAJ:fh7vmlWxvT0C: + citations: 61 + title: 'Albert Einstein/Arnold Sommerfeld: Briefwechsel: Sechzig Briefe aus dem goldenen Zeitalter der modernen Physik' + year: '1968' + qc6CJjYAAAAJ:fixghrsIJ_wC: + citations: 0 + title: L'assoluto nella teoria di Einstein + year: '1923' + qc6CJjYAAAAJ:fveVehIkgekC: + citations: 0 + title: The Collected Papers of Albert Einstein, Vol. 6 The Berlin Years 1914-1917 + year: '1998' + qc6CJjYAAAAJ:g-FVFPYC6a8C: + citations: 0 + title: Does Nature Violate Local Realism? + year: '1997' + qc6CJjYAAAAJ:g2bnS7N2_ggC: + citations: 29 + title: Testimorial from Professor Einstein (Appendix II) + year: '1945' + qc6CJjYAAAAJ:g2zAJ5Cw7N4C: + citations: 83 + title: On the limit of validity of the law of thermodynamic equilibrium and on the possibility of a new determination of the elementary quanta + year: '1907' + qc6CJjYAAAAJ:g5m5HwL7SMYC: + citations: 140 + title: TIME, SPACE, AND GRAVITATION. + year: '1920' + qc6CJjYAAAAJ:gKLIUvgTho8C: + citations: 28 + title: "Comment on the Paper by WR He\xDF,\u2018Contribution to the theory of the viscosity of heterogeneous systems,\u2019" + year: '1920' + qc6CJjYAAAAJ:gNsIjQZ6FscC: + citations: 86 + title: Letter + year: '1934' + qc6CJjYAAAAJ:gUOu-QWEMMQC: + citations: 7 + title: Zu Dr. Berliners siebzigstem Geburtstag + year: '1932' + qc6CJjYAAAAJ:gV6rEsy15s0C: + citations: 3261 + title: Bemerkungen zu der Arbeit + year: '1914' + qc6CJjYAAAAJ:gYAb_yFic6IC: + citations: 32 + title: Zur Methodik der Theoretischen Physik + year: '1934' + qc6CJjYAAAAJ:gmHTDCtJMcoC: + citations: 157 + title: "Folgerungen aus den Capillarit\xE4tserscheinungen" + year: '1901' + qc6CJjYAAAAJ:gqMmJtG4vxUC: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 10 Dec 1915' + year: Unknown Year + qc6CJjYAAAAJ:h0mLeC6b6wcC: + citations: 18 + title: Electrons et photons + year: '1928' + qc6CJjYAAAAJ:h7-KW5G1enMC: + citations: 117 + title: Induktion und Deduktion in der Physik + year: '1919' + qc6CJjYAAAAJ:hB2aVRuWZNwC: + citations: 4 + title: "Ejn\u0161tejnovskaja teorija otnosite\u013Enosti" + year: '1972' + qc6CJjYAAAAJ:hEXC_dOfxuUC: + citations: 391 + title: Reply to critics + year: '1949' + qc6CJjYAAAAJ:hEp1lTclR2YC: + citations: 305 + title: On the generalized theory of gravitation + year: '1950' + qc6CJjYAAAAJ:hKjooKYXoHIC: + citations: 56 + title: "\xDCber die formale Beziehung des Riemannschen Kr\xFCmmungstensors zu den Feldgleichungen der Gravitation" + year: '1927' + qc6CJjYAAAAJ:hMod-77fHWUC: + citations: 5008 + title: "La relativit\xE9" + year: '1964' + qc6CJjYAAAAJ:hMwNgRnlwaMC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, 10 Sep 1914' + year: Unknown Year + qc6CJjYAAAAJ:hTqO-V9ugBQC: + citations: 189 + title: "Sur l'\xE9lectrodynamique des corps en mouvement" + year: '1965' + qc6CJjYAAAAJ:hUq98zRk74IC: + citations: 15 + title: EddingtonsTheorie und Hamiltonsches Prinzip + year: '1925' + qc6CJjYAAAAJ:hVd5agGqjXwC: + citations: 376 + title: Physikalische Gesellschaft Zuerich + year: '1916' + qc6CJjYAAAAJ:hbz17DqrwuEC: + citations: 144 + title: Notiz zu unserer Arbeit + year: '1915' + qc6CJjYAAAAJ:hcF2OqvMasEC: + citations: 124 + title: Warum Krieg? + year: '1933' + qc6CJjYAAAAJ:he8YCnfqqkoC: + citations: 37 + title: "Rapports et Discussions du Cinqui\xE8me Conseil Solvay" + year: '1928' + qc6CJjYAAAAJ:hegzVdMJwJYC: + citations: 0 + title: "Quelques probl\xE8mes touchant les recherches sur Einstein" + year: Unknown Year + qc6CJjYAAAAJ:hfzGNhXhx5MC: + citations: 227 + title: "Dialog \xFCber Einw\xE4nde gegen die Relativit\xE4tstheorie" + year: '1918' + qc6CJjYAAAAJ:htV_5D2kmyYC: + citations: 32 + title: The way out + year: '1946' + qc6CJjYAAAAJ:htyGaKyDgHMC: + citations: 30 + title: "Zwei strenge statische L\xF6sungen der Feldgleichungen der einheitlichen Feldtheorie" + year: '1930' + qc6CJjYAAAAJ:hy8If-OszRcC: + citations: 0 + title: Divorce Agreement, 12 Jun 1918 + year: Unknown Year + qc6CJjYAAAAJ:i91s68tWr-MC: + citations: 84 + title: "\xDCber einen Satz der Wahrscheinlichkeitsrechnung und seine Anwendung in der Strahlungstheorie" + year: '1910' + qc6CJjYAAAAJ:i9zlNfTiRXIC: + citations: 0 + title: 'As it was: the UNESCO Courier December 1951' + year: '1996' + qc6CJjYAAAAJ:iH-uZ7U-co4C: + citations: 112 + title: Knowledge of past and future in quantum mechanics + year: '1931' + qc6CJjYAAAAJ:iKmOvsfbmGkC: + citations: 0 + title: Discussion following lecture," On the Present State of the Problem of Specific Heats"(Doc. 26), 3 Nov 1911 + year: '2003' + qc6CJjYAAAAJ:iKz1iSBcTNcC: + citations: 0 + title: 'Albert Einstein] to Elsa Einstein: Letter, 11 Sep 1915' + year: Unknown Year + qc6CJjYAAAAJ:iMbXGt5dmAEC: + citations: 0 + title: "Proceedings of the Second Marcel Grossmann Meeting on General Relativity: Organized and Held at the Internat. Centre for Theoret. Physics, Trieste, 5-11 July, 1979: Held in \u2026" + year: '1982' + qc6CJjYAAAAJ:iRaVAuoZnuIC: + citations: 17 + title: Geometria no euclidea y fisica + year: '1926' + qc6CJjYAAAAJ:i_7YvbSbtFEC: + citations: 8458 + title: "Berichtigung zu meiner Arbeit:\u201EEine neue Bestimmung der Molek\xFCldimensionen\u201D \uFE01" + year: '2006' + qc6CJjYAAAAJ:ifIdVpG6JtcC: + citations: 15 + title: On the" Cosmologic Problem" + year: '1945' + qc6CJjYAAAAJ:in81wS_EFI4C: + citations: 0 + title: Relativites restreinte et generale Relativite generale, cosmologie et theories unitaires + year: '1994' + qc6CJjYAAAAJ:inmFHauC9wsC: + citations: 241 + title: Statistische Untersuchung der Bewegung eines Resonators in einem Strahlungsfeld + year: '1910' + qc6CJjYAAAAJ:iomT83CKXisC: + citations: 0 + title: "La th\xE9orie de la relativit\xE9 d'Einstein et la dialectique." + year: Unknown Year + qc6CJjYAAAAJ:isC4tDSrTZIC: + citations: 3644 + title: "\xDCber Gravitationswellen" + year: '1918' + qc6CJjYAAAAJ:it4f3qIuXWYC: + citations: 13 + title: "Principios de f\xEDsica te\xF3rica" + year: '1983' + qc6CJjYAAAAJ:j2GxDk2JBlYC: + citations: 12 + title: Correspondance avec Michele Besso + year: '1979' + qc6CJjYAAAAJ:j3f4tGmQtD8C: + citations: 116 + title: Principles of research + year: '1954' + qc6CJjYAAAAJ:j5aT6aphRxQC: + citations: 178 + title: "Zum gegenw\xE4rtigen Stande des Gravitations-problems" + year: '1914' + qc6CJjYAAAAJ:j8SEvjWlNXcC: + citations: 182 + title: Letters on absolute parallelism + year: '1979' + qc6CJjYAAAAJ:j8pvxH-kN2QC: + citations: 52 + title: "Notiz zu E. Schr\xF6dingers Arbeit" + year: '1918' + qc6CJjYAAAAJ:jEJjQKk8aPQC: + citations: 0 + title: 'Albert Einstein] to Felix Klein: Letter, 27 Apr 1918' + year: Unknown Year + qc6CJjYAAAAJ:jKT558fuBk8C: + citations: 6 + title: Antwort auf eine Bemerkung von W. Anderson + year: '1924' + qc6CJjYAAAAJ:jPVjDSAV6m0C: + citations: 19 + title: Darstellung der Semi-Vektoren Als Gewohnliche Vektoren von Besonderem Differentiations Charakter + year: '1934' + qc6CJjYAAAAJ:jhmUvTrEinIC: + citations: 9 + title: 'Helle Zeit-dunkle Zeit: In memoriam Albert Einstein' + year: '1956' + qc6CJjYAAAAJ:jjenCjXDw2QC: + citations: 0 + title: My faith + year: Unknown Year + qc6CJjYAAAAJ:jmwITWCuk8IC: + citations: 14 + title: Einstein on the atomic bomb + year: '1945' + qc6CJjYAAAAJ:jtusTj6o6osC: + citations: 0 + title: A memorial to PAM Dirac + year: '1990' + qc6CJjYAAAAJ:k4O5U3vRA4YC: + citations: 5392 + title: The special and general theory + year: '1920' + qc6CJjYAAAAJ:k6nH7jlkaTkC: + citations: 0 + title: The Einstein Centennial + year: '1982' + qc6CJjYAAAAJ:kF4WlwDc9qcC: + citations: 42 + title: Hedwig und Max Born + year: '1916' + qc6CJjYAAAAJ:kFzFP8IdBVAC: + citations: 374 + title: Einstein's essays in science + year: '2009' + qc6CJjYAAAAJ:kGbpvR7Ecy8C: + citations: 40 + title: Bivector fields II + year: '1944' + qc6CJjYAAAAJ:kMrClmKSQGwC: + citations: 248 + title: "Briefwechsel 1916\xB11955 von Albert Einstein und Hedwig und Max Born, Kommentiert von Max Born" + year: '1969' + qc6CJjYAAAAJ:kNdYIx-mwKoC: + citations: 490 + title: Sidelights on relativity + year: '2009' + qc6CJjYAAAAJ:kO05sadLmrgC: + citations: 69 + title: "Bemerkungen zu der Notiz von Hrn. Paul Ehrenfest:\u201D \uFE01Die Translation deformierbarer Elektronen und der Fl\xE4chensatz \u201E" + year: '1907' + qc6CJjYAAAAJ:kPzzr9KoCG0C: + citations: 0 + title: "L\u2019agopuntura in campo oncologico. Riflessioni ed esperienze dell\u2019ultimo decennio." + year: Unknown Year + qc6CJjYAAAAJ:k_IJM867U9cC: + citations: 119 + title: "Relativit\xE4tstheorie in mathematischer Behandlung" + year: '1925' + qc6CJjYAAAAJ:kbDB7uaqCfAC: + citations: 0 + title: "Albert Einstein] to Walter D\xE4llenbach: Letter, after 15 Feb 1917" + year: Unknown Year + qc6CJjYAAAAJ:kqeZabM7ilsC: + citations: 3956 + title: Preuss, Sitzungsber + year: '1915' + qc6CJjYAAAAJ:l0_JBNIuc60C: + citations: 52 + title: Quoted in + year: '1990' + qc6CJjYAAAAJ:l1jknz_x7mgC: + citations: 0 + title: Court Expert Opinion in the Matter of Signal Co. vs. Atlas Works, ca. 3 Dec 1921 + year: Unknown Year + qc6CJjYAAAAJ:l6Q3WhenKVUC: + citations: 575 + title: Geometrie und erfahrung + year: '1921' + qc6CJjYAAAAJ:l7t_Zn2s7bgC: + citations: 609 + title: Ether and the Theory of Relativity + year: '2007' + qc6CJjYAAAAJ:lAj_JhtUatoC: + citations: 0 + title: 'Albert Einstein] to Friedrich Adler: Letter, 4 Aug 1918' + year: Unknown Year + qc6CJjYAAAAJ:lAvqOWfki2wC: + citations: 0 + title: Sitzungsber. Preus. Akad. Wiss. Berlin (Math. Phys.) 778 (1915) + year: '1915' + qc6CJjYAAAAJ:lCh-sgrp-YMC: + citations: 0 + title: The collecteds of albert einstein v 9 the berlin years correspondence january 1919-april 1920 english translation (paperback) + year: '2004' + qc6CJjYAAAAJ:lEqHes_HPG0C: + citations: 750 + title: 'The principle of relativity: a collection of original memoirs on the special and general theory of relativity' + year: '1923' + qc6CJjYAAAAJ:lIaPce-xyHYC: + citations: 0 + title: "Privatgutachten zu dem Einspruch gegen die Patentanmeldung G43359 der Gesellschaft f\xFCr nautische Instrumente auf Grund des Pantentes 241637, 16 Jul 1918" + year: Unknown Year + qc6CJjYAAAAJ:lLDkS9sB7dAC: + citations: 36 + title: "Grundgedanken und Probleme der Relativit\xE4tstheorie" + year: '1923' + qc6CJjYAAAAJ:lLPirIASiZEC: + citations: 808 + title: "The Collected Papers of Albert Einstein, Volume 15 (Translation Supplement): The Berlin Years: Writings & Correspondence, June 1925\u2013May 1927" + year: '2018' + qc6CJjYAAAAJ:lOG7zRu2uA8C: + citations: 47 + title: The foundations of general relativity theory + year: '1973' + qc6CJjYAAAAJ:lPNvfOEJVFUC: + citations: 17 + title: "Die {\\ it Planck} sche Theorie der Strahlung und die Theorie der spezifischen W\xE4rme.(German)" + year: Unknown Year + qc6CJjYAAAAJ:lR2ECBI0YV4C: + citations: 119 + title: Quantentheoretische Bemerkungen zum Experiment von Stern und Gerlach + year: '1922' + qc6CJjYAAAAJ:lVu93_cgYy4C: + citations: 0 + title: OPERATIONALISM AND FUNDAMENTAL MODELS OF PHYSICS + year: '1983' + qc6CJjYAAAAJ:lX_RDcPAamoC: + citations: 4 + title: Foreword to Concepts of Space, by Max Jammer + year: '1954' + qc6CJjYAAAAJ:ldfaerwXgEUC: + citations: 43 + title: Algebraic properties of the field in the relativistic theory of the asymmetric field + year: '1954' + qc6CJjYAAAAJ:lms347EBdh4C: + citations: 14 + title: Verhandl. deut. physik + year: '1915' + qc6CJjYAAAAJ:m1cs02wJCiwC: + citations: 0 + title: "Hilbert et le probl\xE8me de covariance dans les \xE9quations de la gravitation." + year: Unknown Year + qc6CJjYAAAAJ:mB3voiENLucC: + citations: 145 + title: A new form of the general relativistic field equations + year: '1955' + qc6CJjYAAAAJ:mN77zE6YZBUC: + citations: 679 + title: Ueber spezielle und allgemeine Relativitaetstheorie, 127 + year: '1969' + qc6CJjYAAAAJ:mNm_27jwclsC: + citations: 13 + title: Open Letter to the General Assembly of the United Nations + year: '1947' + qc6CJjYAAAAJ:mSXQG6lSlFkC: + citations: 0 + title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, ca. 10 May 1915' + year: Unknown Year + qc6CJjYAAAAJ:mSnHxa73OtAC: + citations: 0 + title: 'The collected papers of Albert Einstein. Vol. 1, The early years: 1879-1902:[English translation]' + year: Unknown Year + qc6CJjYAAAAJ:mVC4hKzE2FoC: + citations: 9 + title: "Berichtigung zu meiner Arbeit:\u201EDie Plancksche Theorie der Strahlung etc.\u201D \uFE01" + year: '1907' + qc6CJjYAAAAJ:mZB2-lCpWbQC: + citations: 10 + title: 'Albert Einstein] to Max Born: Letter, 27 Feb 1916' + year: Unknown Year + qc6CJjYAAAAJ:maZDTaKrznsC: + citations: 113 + title: The Bianchi identities in the generalized theory of gravitation + year: '1950' + qc6CJjYAAAAJ:mdGv78FIKkEC: + citations: 0 + title: "UN GIORNO LE MACCHINE RIUSCIRANNO A RISOLVERE TUTTI I PROBLEMI, MA MAI NESSUNA DI ESSE POTR\xC0 PORNE UNO\u2026" + year: Unknown Year + qc6CJjYAAAAJ:mmBnJtEBTSAC: + citations: 11 + title: Albert Einstein] to Michele Besso:[A second] letter, 21 Jul 1916 + year: Unknown Year + qc6CJjYAAAAJ:mnAcAzq93VMC: + citations: 111 + title: Riemannian Geometry with Maintaining the Notion of distant parallelism + year: '1928' + qc6CJjYAAAAJ:mpaOjDK6XBIC: + citations: 3 + title: Mossbauer Effect + year: '1958' + qc6CJjYAAAAJ:mqGkWRiPAHEC: + citations: 0 + title: "Albert Einstein] to Walther Sch\xFCcking: Letter, 22 Oct 1915" + year: Unknown Year + qc6CJjYAAAAJ:n0_S8QYMK-AC: + citations: 0 + title: "L'article d'Einstein\" Remarques th\xE9oriques sur la superconductivit\xE9 des m\xE9taux\"." + year: Unknown Year + qc6CJjYAAAAJ:n1qY4L4uFdgC: + citations: 775 + title: 'The collected papers of Albert Einstein. Vol. 12, The Berlin years: correspondence, January-December 1921' + year: Unknown Year + qc6CJjYAAAAJ:n35PH7pn8T4C: + citations: 53 + title: "Grundgedanken und Methoden der Relativit\xE4tstheorie, in ihrer Entwicklung dargestellt" + year: '1920' + qc6CJjYAAAAJ:n94QCav8jycC: + citations: 12 + title: From the philosophy of Bertrand Russell + year: '1944' + qc6CJjYAAAAJ:nFloTcPoiwMC: + citations: 0 + title: "R\xF4le du principe d'\xE9quivalence et apparition de la th\xE9orie g\xE9n\xE9rale de la relativit\xE9." + year: Unknown Year + qc6CJjYAAAAJ:nOiSByfp82kC: + citations: 39 + title: "Systematische Untersuchung \xFCber kompatible Feldgleichungen, welche in einem Riemannschen Raume mit Fernparallelismus gesetzt werden k\xF6nnen" + year: '1931' + qc6CJjYAAAAJ:nU66GSXDKhoC: + citations: 29 + title: Elementare theorie der wasserwellen und des fluges + year: '1916' + qc6CJjYAAAAJ:nZtlP1Cc3DIC: + citations: 0 + title: Einstein und die Interviewer, 10 Aug 1921 + year: Unknown Year + qc6CJjYAAAAJ:nazVBdFzvK0C: + citations: 168 + title: Einstein on Peace, ed. Otto Nathan and Heinz Norden + year: '1960' + qc6CJjYAAAAJ:njp6nI0QjqAC: + citations: 354 + title: "\xDCber die Entwickelung unserer Anschauungen \xFCber das Wesen und die Konstitution der Strahlung" + year: '1909' + qc6CJjYAAAAJ:nlKf13ul9_IC: + citations: 3 + title: "Pol\xEDtica y pacifismo" + year: '1960' + qc6CJjYAAAAJ:nlmsuG0oqtYC: + citations: 0 + title: APPLICATION OF STOCHASTIC DIFFERENTIAL EQUATIONS TO THE DESCRIPTION CF TURBULENT DIFFUSION + year: '1978' + qc6CJjYAAAAJ:nmIsvVfQd4cC: + citations: 21 + title: Investigations on the Theory of Non-Uniform Gases + year: '1956' + qc6CJjYAAAAJ:nrtMV_XWKgEC: + citations: 37 + title: Os fundamentos da teoria da relatividade geral + year: '1916' + qc6CJjYAAAAJ:ntg98fmFLVcC: + citations: 407 + title: The elementary theory of the Brownian motion + year: '1908' + qc6CJjYAAAAJ:nvAonm6-wpUC: + citations: 0 + title: "Neue Zugangswege zur Entw\xF6hnungs-behandlung in Sachsen, Sachsen-Anhalt und Th\xFCringen" + year: Unknown Year + qc6CJjYAAAAJ:nwfoItMF7hMC: + citations: 141 + title: "Teor\u0131a cu\xE1ntica de gases ideales monoat\xF3micos, Sitz" + year: '1924' + qc6CJjYAAAAJ:o4Qvs5Y5TLQC: + citations: 178 + title: The Early Years 1879-1902 + year: '1987' + qc6CJjYAAAAJ:o9ULDYDKYbIC: + citations: 36 + title: "Bemerkung zu Herrn Schr\xF6dingers Notiz" + year: '1918' + qc6CJjYAAAAJ:oAywNP-vUhwC: + citations: 37 + title: Eine neue formale Deutung der Maxwellschen Feldgleichungen der Elektrodynamik + year: '1916' + qc6CJjYAAAAJ:oFKsPyNwwpYC: + citations: 83 + title: "\xDCber die M\xF6glichkeit einer neuen Pr\xFCfung des Relativit\xE4tsprinzips" + year: '2006' + qc6CJjYAAAAJ:oFWWKr2Zb18C: + citations: 147 + title: On the ether + year: '1991' + qc6CJjYAAAAJ:oJZlKik0E8QC: + citations: 11 + title: Albert Einstein + year: '1999' + qc6CJjYAAAAJ:oQQVFBP0nzwC: + citations: 5 + title: "Einstein und Ulm: Festakt, Sch\xFClerwettbewerb und Ausstellung zum 100. Geburtstag von Albert Einstein" + year: '1979' + qc6CJjYAAAAJ:oR5SthnA400C: + citations: 4 + title: 'Le pouvoir nu: propos sur la guerre et la paix, 1914-1955' + year: '1991' + qc6CJjYAAAAJ:oYLFIHfuHKwC: + citations: 234 + title: "Zum kosmologischen Problem der allgemeinen Relativit\xE4tstheorie" + year: '1931' + qc6CJjYAAAAJ:oea97a5D_h0C: + citations: 4 + title: "\xDCber den gegenw\xE4rtigen Stand der allgemeinen Relativit\xE4tsteorie" + year: '1930' + qc6CJjYAAAAJ:ojlX30-wUrgC: + citations: 191 + title: Religion and science + year: '1930' + qc6CJjYAAAAJ:oldoQiaHq2UC: + citations: 124 + title: "Einheitliche Theorie von Gravitation und Elektrizit\xE4t. Zweite Abhandlung" + year: '2006' + qc6CJjYAAAAJ:oqD4_j7ulsYC: + citations: 19590 + title: On the movement of small particles suspended in stationary liquids required by the molecular-kinetic theory of heat + year: '1905' + qc6CJjYAAAAJ:osi8XriVlOYC: + citations: 0 + title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, 6 Jul 1915' + year: Unknown Year + qc6CJjYAAAAJ:oursBaop5wYC: + citations: 1487 + title: Zur theorie der brownschen bewegung + year: '1906' + qc6CJjYAAAAJ:oy0z8GdgWhYC: + citations: 0 + title: 'On the Nature of Spirit: Masculinity, Femininity, and Human Identity' + year: Unknown Year + qc6CJjYAAAAJ:oynPyU19kbsC: + citations: 67 + title: "Berichtigungen zu der Arbeit:\" \xDCber das Relativit\xE4tsprinzip und die aus demselben gezogenen Folgerungen\"" + year: '1908' + qc6CJjYAAAAJ:p2vkXumR6kMC: + citations: 4 + title: Verlandlungen der deutchen physikalischen Gesellschaft + year: '1917' + qc6CJjYAAAAJ:p6f6DfXMsGMC: + citations: 0 + title: "Resultados de la terapia floral en el tratamiento del brote de agudizaci\xF3n de la psoriasis" + year: Unknown Year + qc6CJjYAAAAJ:p7qoFRH4VUUC: + citations: 5 + title: 'Albert Einstein] to Moritz Schlick: Letter, 14 Dec 1915' + year: Unknown Year + qc6CJjYAAAAJ:p866XJ6hu_8C: + citations: 8 + title: B. Ho mann and L. Infeld + year: '1938' + qc6CJjYAAAAJ:p9YawgimX9oC: + citations: 37 + title: Albert Einstein und die Schweiz + year: '1952' + qc6CJjYAAAAJ:pGq6TLPqxssC: + citations: 0 + title: 'Albert Einstein] to Paul Hertz: Letter, 9 Oct 1915' + year: Unknown Year + qc6CJjYAAAAJ:pOP5Rf-i_loC: + citations: 0 + title: Non-euclidean geometry and physics (1926) + year: '2005' + qc6CJjYAAAAJ:pRWBApOjXDcC: + citations: 72 + title: "Untersuchungen \xFCber die Theorie der Brownschen Bewegung" + year: '1997' + qc6CJjYAAAAJ:pUxgyZctzPYC: + citations: 65 + title: "Prinzipielles zur verallgemeinerten Relativit\xE4tstheorie und Gravitationstheorie" + year: '1914' + qc6CJjYAAAAJ:pa8xeX_DvI4C: + citations: 23 + title: B. Podolsky & N. Rosen, 1935 + year: Unknown Year + qc6CJjYAAAAJ:polMJLZb0X8C: + citations: 0 + title: 'Albert Einstein] to Erwin Freundlich: Letter, between 1 and 25 Mar 1915' + year: Unknown Year + qc6CJjYAAAAJ:prKdS1S5QkMC: + citations: 0 + title: Creator and Rebel + year: '1972' + qc6CJjYAAAAJ:prvsfHNhuEoC: + citations: 0 + title: 'Albert Einstein] to David Hilbert: Letter, 18 Nov 1915' + year: Unknown Year + qc6CJjYAAAAJ:pxXbYLTb8EgC: + citations: 2 + title: Selected passages on Machian ideas + year: '1995' + qc6CJjYAAAAJ:pzedKLaGEyUC: + citations: 0 + title: THE ANTHROPIC PRINCIPLE IN COSMOLOGY AND IN BIOLOGY + year: Unknown Year + qc6CJjYAAAAJ:q-jS9JxWzv0C: + citations: 0 + title: What is the Responsibility of Scientists in War? + year: Unknown Year + qc6CJjYAAAAJ:q1ZQJjUA47MC: + citations: 227 + title: On the motion, required by the molecular-kinetic theory of heat, of particles suspended in a fluid at rest + year: '1905' + qc6CJjYAAAAJ:q2Dn1KgioksC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, before 10 Apr 1914' + year: Unknown Year + qc6CJjYAAAAJ:q2HS4OCVtYIC: + citations: 1 + title: "Kurze Skizze zur Entwicklung der Relativit\xE4tstheorie" + year: Unknown Year + qc6CJjYAAAAJ:q3SxJD15z-gC: + citations: 0 + title: 'Albert Einstein] to Tullio Levi-Civita: Letter, 2 Apr 1915' + year: Unknown Year + qc6CJjYAAAAJ:q3oQSFYPqjQC: + citations: 39 + title: "Quatre conf\xE9rences sur la th\xE9orie de la relativit\xE9 faites \xE0 l'Universit\xE9 de Princeton" + year: '2005' + qc6CJjYAAAAJ:qCpRzq7zkD8C: + citations: 2088 + title: "Zur allgemeinen Relativit\xE4tstheorie" + year: '1915' + qc6CJjYAAAAJ:qPeb-qHga9sC: + citations: 306 + title: "Auf die Riemann-Metrik und den Fern-Parallelismus gegr\xFCndete einheitliche Feldtheorie" + year: '1930' + qc6CJjYAAAAJ:qbqt7gslDFUC: + citations: 0 + title: The manuscript of Einstein's" Zur einheitlichen Feld-Theorie". + year: Unknown Year + qc6CJjYAAAAJ:qdR3duxP4mUC: + citations: 0 + title: "En busca del eslab\xF3n perdido entre educaci\xF3n y desarrollo: desaf\xEDos y retos para la universidad en Am\xE9rica Latina y el Caribe" + year: Unknown Year + qc6CJjYAAAAJ:qjMakFHDy7sC: + citations: 3063 + title: On the electrodynamics of moving bodies + year: '1905' + qc6CJjYAAAAJ:qsWQJNntlusC: + citations: 3121 + title: Ideas and opinions + year: '1995' + qc6CJjYAAAAJ:quBVm8e4N6QC: + citations: 62 + title: "Zu Kaluzas Theorie des Zusammenhanges von Gravitation und Elektrizit\xE4t. Zweite Mitteilung" + year: '2006' + qc6CJjYAAAAJ:qxL8FJ1GzNcC: + citations: 599 + title: Geometrie und erfahrung + year: '1921' + qc6CJjYAAAAJ:qyhmnyLat1gC: + citations: 26986 + title: Can quantum-mechanical description of physical reality be considered complete? + year: '1935' + qc6CJjYAAAAJ:qzuIxkxWBNsC: + citations: 0 + title: 'Albert Einstein] to Edgar Meyer: Letter, 4 Nov 1918' + year: Unknown Year + qc6CJjYAAAAJ:r-XlWH_wwbwC: + citations: 9 + title: La questione del metodo + year: '1954' + qc6CJjYAAAAJ:r0BpntZqJG4C: + citations: 197 + title: On the non-existence of regular stationary solutions of relativistic field equations + year: '1943' + qc6CJjYAAAAJ:r0s_y6AIs4IC: + citations: 0 + title: Waarom oorlog? + year: '1986' + qc6CJjYAAAAJ:r4zddjZt6C4C: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 25 May 1914' + year: Unknown Year + qc6CJjYAAAAJ:r7QigD7TRWAC: + citations: 12 + title: 'Scienza e vita: lettere 1916-1955' + year: '1973' + qc6CJjYAAAAJ:r8lgQMkXaCEC: + citations: 0 + title: Oorlog als ziekte. Met een voorw. van Albert Einstein. Naar de Nederlandse vertaling bewerkt door C. van Emde Boas + year: '1938' + qc6CJjYAAAAJ:rCzfLUpcSPoC: + citations: 464 + title: "A evolu\xE7\xE3o da f\xEDsica: o desenvolvimento das ideias desde os primitivos conceitos at\xE9 \xE0 Relatividade e aos Quanta" + year: '1939' + qc6CJjYAAAAJ:rFyVMFCKTwsC: + citations: 333 + title: Elementare Theorie der Brownschen) Bewegung + year: '1908' + qc6CJjYAAAAJ:rKOGDx9nJ1EC: + citations: 3 + title: "Gelegentliches: Zum f\xFCnfzigsten Geburtstag 14. M\xE4rz 1929 dargebracht von der Soncino-Gesellschaft der Freunde des J\xFCdischen Buches zu Berlin" + year: '1929' + qc6CJjYAAAAJ:rPbfW60zdgkC: + citations: 1152 + title: Physics and reality + year: '1936' + qc6CJjYAAAAJ:rQcm2j6_ZE8C: + citations: 21 + title: Max Planck als Forscher + year: '1913' + qc6CJjYAAAAJ:rUiCm8s56TIC: + citations: 7 + title: A new analysis of molecule dimensions + year: '1968' + qc6CJjYAAAAJ:rWqKpwLRvsIC: + citations: 2590 + title: Die feldgleichungen der gravitation + year: Unknown Year + qc6CJjYAAAAJ:rbgNTKsR3fAC: + citations: 0 + title: The Absence of Negative Gravitational Mass and Related Problems + year: Unknown Year + qc6CJjYAAAAJ:rc0DTgEpx5oC: + citations: 0 + title: "Einheitliche Feldtheorie von Gravitation und Elektrizit\xE4t.(German)" + year: Unknown Year + qc6CJjYAAAAJ:rjBKtydo3wgC: + citations: 40 + title: "\xBF Por qu\xE9 socialismo?" + year: '2001' + qc6CJjYAAAAJ:rp474-M6Y4oC: + citations: 16 + title: "Einstein sagt: Zitate, Einf\xE4lle, Gedanken" + year: '1999' + qc6CJjYAAAAJ:rq4rw-O2q6QC: + citations: 0 + title: 'The anthropomorphized product shelf: Symmetric multimodal human-environment interaction' + year: '2006' + qc6CJjYAAAAJ:rr29yNp9FasC: + citations: 21 + title: "\xDCber ein den Elementarproze\xDF der Lichtemission betreffendes Experiment" + year: '2006' + qc6CJjYAAAAJ:rsrKZ8bNWIsC: + citations: 0 + title: 'Albert Einstein] to Heinrich Zangger: Letter, between 24 Jul and 7 Aug 1915' + year: Unknown Year + qc6CJjYAAAAJ:rt-opDMcQ_cC: + citations: 0 + title: 'PROBLEM GAMBLING & AOD: IMPULSIVELY SEPARATED?' + year: Unknown Year + qc6CJjYAAAAJ:rv4tAfkFLVgC: + citations: 0 + title: "O Papel da Epistemologia em uma Disciplina e Evolu\xE7\xE3o dos Conceitos da F\xEDsica\xB7" + year: Unknown Year + qc6CJjYAAAAJ:rywEMSoAiS0C: + citations: 0 + title: "Histoire de la d\xE9couverte des \xE9quations de la gravitation (Einstein et Hilbert)." + year: Unknown Year + qc6CJjYAAAAJ:rzkGdFpNPO0C: + citations: 0 + title: 'Prospettive relativistiche: dell''etere e della geometria' + year: '1922' + qc6CJjYAAAAJ:s1ouQE5r0WUC: + citations: 17 + title: Mein Glaubensbekenntnis + year: '1930' + qc6CJjYAAAAJ:s2G-WRnXBicC: + citations: 2 + title: My Views + year: '1967' + qc6CJjYAAAAJ:s9piBQ-TX4wC: + citations: 0 + title: "La th\xE9orie corpusculaire des rayons X et la structure des cristaux." + year: Unknown Year + qc6CJjYAAAAJ:sAujV351FBYC: + citations: 4750 + title: The meaning of relativity + year: '1950' + qc6CJjYAAAAJ:sIDMtVbdO0QC: + citations: 20 + title: "\xDCber die gegenw\xE4rtige Krise der theoretischen Physik" + year: '1922' + qc6CJjYAAAAJ:sJK75vZXtG0C: + citations: 209 + title: Mis ideas y opiniones + year: '2011' + qc6CJjYAAAAJ:sNmaIFBj_lkC: + citations: 7 + title: Compton Effect + year: '1966' + qc6CJjYAAAAJ:sYWh8IhQ1GMC: + citations: 12 + title: Letter to Michele Besso's Family + year: '1989' + qc6CJjYAAAAJ:scjTk0LcRdsC: + citations: 0 + title: "Nous ne pouvons pas r\xE9soudre nos probl\xE8mes avec le m\xEAme mode de pens\xE9e que nous utilisions quand nous les avons cr\xE9\xE9s." + year: Unknown Year + qc6CJjYAAAAJ:seU1ZbiIO-YC: + citations: 0 + title: The Principles of humanism + year: '1974' + qc6CJjYAAAAJ:sgVRHlApM4oC: + citations: 67 + title: The laws of science and the laws of ethics + year: '1950' + qc6CJjYAAAAJ:sgsej9ZJWHMC: + citations: 3818 + title: "N\xE4herungsweise Integration der Feldgleichungen der Gravitation" + year: '1916' + qc6CJjYAAAAJ:siTy-4AL0AwC: + citations: 0 + title: "O conhecimento cient\xEDfico no nosso contexto social e hist\xF3rico: um ano de realiza\xE7\xF5es" + year: '2008' + qc6CJjYAAAAJ:sk-5v2XeZBgC: + citations: 21 + title: Theoretische Bemerkungen zur Supraleitung der Metalle + year: '1922' + qc6CJjYAAAAJ:spwacExez6wC: + citations: 0 + title: "Meine Antwort. \xFCber die anti-relativit\xE4tstheoretische GmbH Berliner Tageblatt, 27 Aug 1920" + year: Unknown Year + qc6CJjYAAAAJ:t1niNHmIXQYC: + citations: 0 + title: Religion, Spirituality, and Stress + year: Unknown Year + qc6CJjYAAAAJ:t3sMychFT9UC: + citations: 0 + title: "Divulgaci\xF3n de la Ciencia para Ni\xF1os a Trav\xE9s de Revistas Mexicanas: Aproximaci\xF3n a Partir de la Construcci\xF3n del Discurso." + year: Unknown Year + qc6CJjYAAAAJ:t6hKUfryX1MC: + citations: 0 + title: Uproar in the Lecture Hall, 13 Feb 1920 + year: Unknown Year + qc6CJjYAAAAJ:t6usbXjVLHcC: + citations: 134 + title: The human side + year: '1979' + qc6CJjYAAAAJ:t7izwRedFcYC: + citations: 4 + title: Albert Einstein, il lato humano + year: '1980' + qc6CJjYAAAAJ:tHxcpc5o5bgC: + citations: 10 + title: A. Einstein autobiographical notes + year: '1970' + qc6CJjYAAAAJ:tVzLobxzA7YC: + citations: 5 + title: "Geografia, ecologia da paisagem e teledetec\xE7\xE3o, enquadramento\u2013contextualiza\xE7\xE3o" + year: '2004' + qc6CJjYAAAAJ:tWiuw1KVSQEC: + citations: 91 + title: "La Th\xE9orie de la Relativit\xE9" + year: '1935' + qc6CJjYAAAAJ:tYdqGa2HnWcC: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 3 Aug 1916' + year: Unknown Year + qc6CJjYAAAAJ:tai-Ft5GzhwC: + citations: 0 + title: Storia del concetto di spazio + year: '1966' + qc6CJjYAAAAJ:tgTmbKTkO1IC: + citations: 16 + title: "Nachtrag zu meiner Arbeit:\u201EThermodynamische Begr\xFCndung des photochemischen Aquivalentgesetzes\u201D \uFE01" + year: '1912' + qc6CJjYAAAAJ:tkaPQYYpVKoC: + citations: 16 + title: Physik als Abenteuer der Erkenntnis + year: '1938' + qc6CJjYAAAAJ:tltQ_bo2KloC: + citations: 19 + title: My Credo + year: '1986' + qc6CJjYAAAAJ:tntj4plCNvAC: + citations: 122 + title: Relativity and the Problem of Space + year: '1954' + qc6CJjYAAAAJ:tzPJaSocouwC: + citations: 29 + title: Fund-raising telegram for the Emergency Committee of Atomic Scientists, 23 May 1946 + year: '1960' + qc6CJjYAAAAJ:u0Mu_IsstPMC: + citations: 28 + title: "Die Kompatibilit\xE4t der Feldgleichungen in der einheitlichen Feldtheorie" + year: '1930' + qc6CJjYAAAAJ:uAPFzskPt0AC: + citations: 15 + title: "equations of motion\uFB01 one therefore could not doubt that the laws of nature are" + year: '1907' + qc6CJjYAAAAJ:uCYQzKCmtZwC: + citations: 1226 + title: Out of my later years + year: '1950' + qc6CJjYAAAAJ:uH1VZYVfkoQC: + citations: 10 + title: 'Albert Einstein] to Max Born: Letter, 24 Jun 1918' + year: Unknown Year + qc6CJjYAAAAJ:uK1dVpBkok0C: + citations: 0 + title: UNCERTAINTIES AND HOPES + year: '1993' + qc6CJjYAAAAJ:uQrt9rju91QC: + citations: 0 + title: 'Albert Einstein] to Paul Hertz: Letter, between 14 Aug and 4 Nov 1915' + year: Unknown Year + qc6CJjYAAAAJ:uXirmJe02n4C: + citations: 82 + title: "Berichtigungen zu der Arbeit:\" \xDCber das Relativit\xE4tsprinzip und die aus demselben gezogenen Folgerungen\", 29 Feb 1908" + year: Unknown Year + qc6CJjYAAAAJ:u_mOZUIutIEC: + citations: 35 + title: "\xDCber eine Methode zur Bestimmung des Verh\xE4ltnisses der transversalen und longitudinalen Masse des Elektrons" + year: '1906' + qc6CJjYAAAAJ:ufKn5pxu7C0C: + citations: 28 + title: "Bemerkung zu meiner Arbeit \u201CZur allgemeinen Relativit\xE4tstheorie\u201D" + year: '2006' + qc6CJjYAAAAJ:ufrVoPGSRksC: + citations: 626 + title: The influence of the expansion of space on the gravitation fields surrounding the individual stars + year: '1945' + qc6CJjYAAAAJ:uh8FjILnQOkC: + citations: 0 + title: "Bemerkungen zu P. Harzers Abhandlung,\" \xDCber die Mitf\xFChrung des Lichtes in Glas und die Aberration\", 18 Jul 1914" + year: Unknown Year + qc6CJjYAAAAJ:ujJXPdh5xs4C: + citations: 0 + title: "Lehrs\xE4tze \xFCber das Weltall: Mit Beweis in Form eines offenen Briefes an Professor Einstein. In einer von Gerhard R\xFChm bearbeiteten Neuauflage" + year: '1965' + qc6CJjYAAAAJ:ult01sCh7k0C: + citations: 308 + title: Wolfgang Pauli + year: '2001' + qc6CJjYAAAAJ:umqufdRvDiIC: + citations: 7 + title: "Einstein \xFCber \u201Ewahre Kultur \u201Cund die Stellung der Geometrie im Wissenschaftssystem" + year: '1979' + qc6CJjYAAAAJ:uoeYKOKFegwC: + citations: 14 + title: Einstein on Humanism + year: '1993' + qc6CJjYAAAAJ:uqZYSrDi9MMC: + citations: 0 + title: Ideas fundamentales y problemas de la teoria de la relatividad + year: '1924' + qc6CJjYAAAAJ:uwWlEQcBbEIC: + citations: 0 + title: 'Albert Einstein] to Felix Klein: Letter, 26 Mar 1917' + year: Unknown Year + qc6CJjYAAAAJ:v-tg9Wi2VGwC: + citations: 0 + title: Overture to the comic opera Don Giovanni, K + year: '1900' + qc6CJjYAAAAJ:vCSeWdjOjw8C: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 22 Sep 1917' + year: Unknown Year + qc6CJjYAAAAJ:vM5yiaU9oLoC: + citations: 0 + title: 'Albert Einstein] to Hans Albert Einstein: Letter, before 4 Apr 1915' + year: Unknown Year + qc6CJjYAAAAJ:vMcOFpnEpxoC: + citations: 8 + title: Inst. intern. phys + year: '1911' + qc6CJjYAAAAJ:vPKCt-r_nWsC: + citations: 0 + title: Albert Einstein to Heinrich Zangger + year: '2005' + qc6CJjYAAAAJ:vRqMK49ujn8C: + citations: 26 + title: "Fysika jako dobrodru\u017Estv\xED pozn\xE1n\xED" + year: '1958' + qc6CJjYAAAAJ:vV6vV6tmYwMC: + citations: 156 + title: Living philosophies + year: '1979' + qc6CJjYAAAAJ:v_xunPV0uK0C: + citations: 69 + title: On the five-dimensional representation of gravitation and electricity + year: '1941' + qc6CJjYAAAAJ:viPVbuMW504C: + citations: 298 + title: Collected Scientific Works + year: '1965' + qc6CJjYAAAAJ:viTTOddtVMkC: + citations: 0 + title: IDEAS PARA MEDITAR CON CALMA + year: Unknown Year + qc6CJjYAAAAJ:vj8KeYadoLsC: + citations: 63 + title: Diskussion + year: '1920' + qc6CJjYAAAAJ:vjZqxyZ7hS4C: + citations: 15 + title: "Zum gegenw\xE4rtigen Stande des Problems der spezifischen W\xE4rme" + year: '1911' + qc6CJjYAAAAJ:vkz5F8TaVKkC: + citations: 28 + title: 'Albert Einstein, Max Born, Hedwig Born: Correspondance, 1916-1955' + year: '1972' + qc6CJjYAAAAJ:vlECJaBXBlQC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 1 May 1918' + year: Unknown Year + qc6CJjYAAAAJ:vofGIMt6cyEC: + citations: 5 + title: "Zum hundertj\xE4hrigen Gedenktag von Lord Kelvins Geburt. 26. Juni 1824" + year: '1924' + qc6CJjYAAAAJ:vptNTMqK6uYC: + citations: 0 + title: "A educa\xE7\xE3o inclusiva e as transforma\xE7\xF5es dos processos de constru\xE7\xE3o do conhecimento" + year: Unknown Year + qc6CJjYAAAAJ:vq25oHwZT-8C: + citations: 17 + title: "Koniglich Preussische Akademie f\xFCr Wissenschaft 844 (1915);[Links] A. Einstein" + year: '1916' + qc6CJjYAAAAJ:vt8c2csMsvAC: + citations: 1 + title: "Introduction aux th\xE8ories de M. Einstein en vue de leur application a l'astronomie" + year: '1921' + qc6CJjYAAAAJ:vytXtR8tOLIC: + citations: 445 + title: B. preuss + year: '1916' + qc6CJjYAAAAJ:vzY-6mMDyDUC: + citations: 85 + title: 'The Berlin Years, Correspondence 1914-1918: English Translation' + year: '1998' + qc6CJjYAAAAJ:w1G5vK4DiEkC: + citations: 0 + title: 'Albert Einstein] to Gustav Mie: Letter, 8 Feb 1918' + year: Unknown Year + qc6CJjYAAAAJ:w2Gke83ceDMC: + citations: 0 + title: Considerations on electrodynamics, the ether, geometry and relativity + year: '1972' + qc6CJjYAAAAJ:w2UhwfzvF0QC: + citations: 430 + title: On a generalization of Kaluza's theory of electricity + year: '1938' + qc6CJjYAAAAJ:w7CBUyPWg-0C: + citations: 10 + title: Eine ableitung des theorems von Jacobi + year: '1917' + qc6CJjYAAAAJ:wEOyVsangm4C: + citations: 734 + title: Philosopher-Scientist, ed + year: '1970' + qc6CJjYAAAAJ:wGzT3bKASkAC: + citations: 272 + title: "\xDCber die vom Relativit\xE4tsprinzip geforderte Tr\xE4gheit der Energie" + year: '1907' + qc6CJjYAAAAJ:wNvz2w4be3AC: + citations: 0 + title: 'On the Contribution of Intellectuals to International Reconciliation: Letter, after 29 Sep 1920' + year: Unknown Year + qc6CJjYAAAAJ:wTekDMGr9GkC: + citations: 0 + title: Einstein und die Geophysik:(Einstein and geophysics) + year: '2005' + qc6CJjYAAAAJ:wW8w_uPXRNAC: + citations: 1 + title: Statistische Mechanik + year: '1979' + qc6CJjYAAAAJ:wdLM4YbmhYkC: + citations: 0 + title: "La teoria della relativit\xE0" + year: '1987' + qc6CJjYAAAAJ:wgKq3sYidysC: + citations: 506 + title: Concerning an heuristic point of view toward the emission and transformation of light + year: '1965' + qc6CJjYAAAAJ:wkm4DBaukwsC: + citations: 8 + title: "Antwort auf eine Abhandlung M. v. Laues \u201EEin Satz der Wahrscheinlichkeitsrechnung und seine Anwendung auf die Strahlungstheorie\u201D \uFE01" + year: '1915' + qc6CJjYAAAAJ:wlh7PBhwZ8MC: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 6 Sep 1916' + year: Unknown Year + qc6CJjYAAAAJ:wuD5JclIwkYC: + citations: 222 + title: Science and religion + year: '1940' + qc6CJjYAAAAJ:wy5MF_2MSNEC: + citations: 11 + title: 'Albert Einstein] to Michele Besso: Letter, 9 Jul 1918' + year: Unknown Year + qc6CJjYAAAAJ:xMZGxf1v-3YC: + citations: 0 + title: 'Albert Einstein] to Hans Albert and Eduard Einstein: Letter, 10 Dec 1918' + year: Unknown Year + qc6CJjYAAAAJ:xUT3DyvLuJwC: + citations: 0 + title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 14 Jan 1908' + year: Unknown Year + qc6CJjYAAAAJ:xZ4F5NOCMJ0C: + citations: 0 + title: Why lnformation Technology lnspired but Cannot Deliver Knowledge Management + year: '2004' + qc6CJjYAAAAJ:xii_ZKWM4-0C: + citations: 44 + title: "Bemerkungen zu den P. Hertzschen Arbeiten:\u201E\xDCber die mechanischen Grundlagen der Thermodynamik\u201D \uFE01" + year: '1911' + qc6CJjYAAAAJ:xu-w60CxnpAC: + citations: 0 + title: "Briefe zur Wellenmechanik [von][Erwin] Schr\xF6dinger,[Max] Planck,[ALbert] Einstein und [Hendrik Antoon] Lorentz" + year: '1963' + qc6CJjYAAAAJ:xvKSgulxyWUC: + citations: 6 + title: 'The collected papers of Albert Einstein: writings, 1912-1914. The Swiss years' + year: '1966' + qc6CJjYAAAAJ:xwIxJehhd2UC: + citations: 0 + title: "Albert Einstein] to Rudolf F\xF6rster: Letter, 19 Feb 1918" + year: Unknown Year + qc6CJjYAAAAJ:xyKys1DtkaQC: + citations: 30 + title: Wissenschaftlicher Briefwechsel mit Bohr, Einstein, Heisenberg ua. Bd. 4. 1955-1956 + year: '2001' + qc6CJjYAAAAJ:yCjxvIMm6_oC: + citations: 16 + title: "Nachtr\xE4gliche Antwort auf eine Frage von Herrn Rei\xDFner" + year: '1914' + qc6CJjYAAAAJ:yG6gRY0c4kQC: + citations: 0 + title: 'Albert Einstein] to Gustav Mie: Letter, 29 Dec 1917' + year: Unknown Year + qc6CJjYAAAAJ:yIeBiWEAh44C: + citations: 1286 + title: "\xDCber den Einflu\xDF der Schwerkraft auf die Ausbreitung des Lichtes" + year: '2006' + qc6CJjYAAAAJ:yJjnfzR0HrkC: + citations: 850 + title: Strahlungs-emission und absorption nach der quantentheorie + year: '1916' + qc6CJjYAAAAJ:yKZlB_2wKysC: + citations: 0 + title: 'Albert Einstein] to Paul Ehrenfest: Letter, 4 Sep 1918' + year: Unknown Year + qc6CJjYAAAAJ:yNlG6JgpFqoC: + citations: 236 + title: A generalized theory of gravitation + year: '1948' + qc6CJjYAAAAJ:yNohvu9kXXYC: + citations: 377 + title: Quantentheorie des idealen einatomigen Gases, Sitzber + year: '1924' + qc6CJjYAAAAJ:yS0fcbgecPsC: + citations: 21 + title: Education for independent thought + year: '1952' + qc6CJjYAAAAJ:yXZqsUWzai8C: + citations: 136 + title: "Koniglich Preu\u03B2ische Akademie der Wissenschaften" + year: '1916' + qc6CJjYAAAAJ:yZoBfgUKqwcC: + citations: 45 + title: "\xDCber eine naheliegende Erg\xE4nzung des Fundamentes der allgemeinen Relativit\xE4tstheorie" + year: '1921' + qc6CJjYAAAAJ:ypzvKOdbExQC: + citations: 0 + title: VICTOR J. STENGER + year: '1990' + qc6CJjYAAAAJ:yxAilOxaV9sC: + citations: 0 + title: Le lien entre science et art dans la conception du monde de Einstein. + year: Unknown Year + qc6CJjYAAAAJ:yymuTJNBJz4C: + citations: 0 + title: "Z Einsteinovy Pra\u017Esk\xE9 korespondence" + year: '1962' + qc6CJjYAAAAJ:z2g7kDSNNyoC: + citations: 17 + title: "Eine neue elektrostatische Methode zur Messung kleiner Elektrizit\xE4tsmengen" + year: '1908' + qc6CJjYAAAAJ:zCpYd49hD24C: + citations: 0 + title: "Einstein e la sua relativit\xE0" + year: '1922' + qc6CJjYAAAAJ:zEYdoEEwLqEC: + citations: 11 + title: "Sur les forces pond\xE9romotrices qui agissent sur des conducteurs ferromagn\xE9tiques dispos\xE9s dans un champ magn\xE9tique et parcourus par un courant" + year: '1910' + qc6CJjYAAAAJ:zG6RlwjYRPQC: + citations: 18 + title: Marian v. Smoluchowski + year: '1917' + qc6CJjYAAAAJ:zI9YInTrFVIC: + citations: 0 + title: 'Albert Einstein] to Wander de Haas: Letter, 17 Mar 1915' + year: Unknown Year + qc6CJjYAAAAJ:zLWjf1WUPmwC: + citations: 19 + title: "Les fondements de la th\xE9orie de la relativit\xE9 g\xE9n\xE9rale" + year: '1933' + qc6CJjYAAAAJ:zLla2nKXDtwC: + citations: 0 + title: On the Misery of Children, 7 Oct 1921 + year: Unknown Year + qc6CJjYAAAAJ:zPkyA21Y468C: + citations: 0 + title: Physical Interpretations of Relativity Theory + year: Unknown Year + qc6CJjYAAAAJ:zTJoPluU4X4C: + citations: 0 + title: Nonlinear Model Equations and Variational Principles + year: Unknown Year + qc6CJjYAAAAJ:z_wVstp3MssC: + citations: 23 + title: 'About Zionism: Speeches and Letters by Professor Albert Einstein' + year: '1930' + qc6CJjYAAAAJ:za7pDTvVV8kC: + citations: 16 + title: Zur Theorie der Lichtfortpflanzung in dispergierenden Medien + year: '2006' + qc6CJjYAAAAJ:ziRtHtnO-_kC: + citations: 0 + title: Robert Nathan + year: '1967' + qc6CJjYAAAAJ:ziW8EwMpto0C: + citations: 0 + title: "Albert Einstein] to Rudolf F\xF6rster: Letter, 17 Jan 1918" + year: Unknown Year + qc6CJjYAAAAJ:zxzvZ9-XIW8C: + citations: 72 + title: Albert Einstein, the human side + year: '2013' diff --git a/_layouts/bib.liquid b/_layouts/bib.liquid index ea9ce56..a4c693f 100644 --- a/_layouts/bib.liquid +++ b/_layouts/bib.liquid @@ -317,9 +317,27 @@ aria-label="Google Scholar link" role="button" > + {% assign citation_count = 0 %} + {% assign scholar_id_key = site.scholar_userid | append: ':' | append: entry.google_scholar_id %} + {% assign publication_key = entry.google_scholar_id %} + + {% if site.data.citations.papers[scholar_id_key] %} + {% assign citation_count = site.data.citations.papers[scholar_id_key].citations %} + {% elsif site.data.citations.papers[publication_key] %} + {% assign citation_count = site.data.citations.papers[publication_key].citations %} + {% else %} + {% for paper in site.data.citations.papers %} + {% assign paper_key = paper[0] %} + {% if paper_key contains entry.google_scholar_id %} + {% assign citation_count = paper[1].citations %} + {% break %} + {% endif %} + {% endfor %} + {% endif %} + {% google_scholar_citations site.data.socials.scholar_userid entry.google_scholar_id %} Google Scholar citations {% endif %} diff --git a/bin/update_scholar_citations.py b/bin/update_scholar_citations.py new file mode 100644 index 0000000..1c4f57c --- /dev/null +++ b/bin/update_scholar_citations.py @@ -0,0 +1,132 @@ +#!/usr/bin/env python + +import os +import sys +import yaml +from datetime import datetime +from scholarly import scholarly + + +def load_scholar_user_id() -> str: + """Load the Google Scholar user ID from the configuration file.""" + config_file = "_data/socials.yml" + if not os.path.exists(config_file): + print( + f"Configuration file {config_file} not found. Please ensure the file exists and contains your Google Scholar user ID." + ) + sys.exit(1) + try: + with open(config_file, "r") as f: + config = yaml.safe_load(f) + scholar_user_id = config.get("scholar_userid") + if not scholar_user_id: + print( + "No 'scholar_userid' found in the configuration file. Please add 'scholar_userid' to _data/socials.yml." + ) + sys.exit(1) + return scholar_user_id + except yaml.YAMLError as e: + print( + f"Error parsing YAML file {config_file}: {e}. Please check the file for correct YAML syntax." + ) + sys.exit(1) + + +SCHOLAR_USER_ID: str = load_scholar_user_id() +OUTPUT_FILE: str = "_data/citations.yml" + + +def get_scholar_citations() -> None: + """Fetch and update Google Scholar citation data.""" + print(f"Fetching citations for Google Scholar ID: {SCHOLAR_USER_ID}") + today = datetime.now().strftime("%Y-%m-%d") + + # Check if the output file was already updated today + if os.path.exists(OUTPUT_FILE): + try: + with open(OUTPUT_FILE, "r") as f: + existing_data = yaml.safe_load(f) + if ( + existing_data + and "metadata" in existing_data + and "last_updated" in existing_data["metadata"] + ): + print(f"Last updated on: {existing_data['metadata']['last_updated']}") + if existing_data["metadata"]["last_updated"] == today: + print("Citations data is already up-to-date. Skipping fetch.") + return + except Exception as e: + print( + f"Warning: Could not read existing citation data from {OUTPUT_FILE}: {e}. The file may be missing or corrupted." + ) + + citation_data = {"metadata": {"last_updated": today}, "papers": {}} + + scholarly.set_timeout(15) + scholarly.set_retries(3) + try: + author = scholarly.search_author_id(SCHOLAR_USER_ID) + author_data = scholarly.fill(author) + except Exception as e: + print( + f"Error fetching author data from Google Scholar for user ID '{SCHOLAR_USER_ID}': {e}. Please check your internet connection and Scholar user ID." + ) + sys.exit(1) + + if not author_data: + print( + f"Could not fetch author data for user ID '{SCHOLAR_USER_ID}'. Please verify the Scholar user ID and try again." + ) + sys.exit(1) + + if "publications" not in author_data: + print(f"No publications found in author data for user ID '{SCHOLAR_USER_ID}'.") + sys.exit(1) + + for pub in author_data["publications"]: + try: + pub_id = pub.get("pub_id") or pub.get("author_pub_id") + if not pub_id: + print( + f"Warning: No ID found for publication: {pub.get('bib', {}).get('title', 'Unknown')}. This publication will be skipped." + ) + continue + + title = pub.get("bib", {}).get("title", "Unknown Title") + year = pub.get("bib", {}).get("pub_year", "Unknown Year") + citations = pub.get("num_citations", 0) + + print(f"Found: {title} ({year}) - Citations: {citations}") + + citation_data["papers"][pub_id] = { + "title": title, + "year": year, + "citations": citations, + } + except Exception as e: + print( + f"Error processing publication '{pub.get('bib', {}).get('title', 'Unknown')}': {e}. This publication will be skipped." + ) + + # Compare new data with existing data + if existing_data and existing_data.get("papers") == citation_data["papers"]: + print("No changes in citation data. Skipping file update.") + return + + try: + with open(OUTPUT_FILE, "w") as f: + yaml.dump(citation_data, f, width=1000, sort_keys=True) + print(f"Citation data saved to {OUTPUT_FILE}") + except Exception as e: + print( + f"Error writing citation data to {OUTPUT_FILE}: {e}. Please check file permissions and disk space." + ) + sys.exit(1) + + +if __name__ == "__main__": + try: + get_scholar_citations() + except Exception as e: + print(f"Unexpected error: {e}") + sys.exit(1) diff --git a/requirements.txt b/requirements.txt index f43bea8..78b0dcf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,3 @@ nbconvert +pyyaml +scholarly