diff --git a/gradle.properties b/gradle.properties index c117d98..2815476 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,8 +1,8 @@ group = org.xbib name = marc -version = 2.3.1 +version = 2.4.0 -gradle.wrapper.version = 6.4.1 +gradle.wrapper.version = 6.6.1 xbib-content.version = 2.3.1 xbib-bibliographic-character-sets.version = 2.0.0 xalan.version = 2.7.2 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 62d4c05..e708b1c 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 21e622d..33682bb 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index fbd7c51..4f906e0 100755 --- a/gradlew +++ b/gradlew @@ -130,7 +130,7 @@ fi if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath diff --git a/gradlew.bat b/gradlew.bat index a9f778a..ac1b06f 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init +if "%ERRORLEVEL%" == "0" goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -54,7 +54,7 @@ goto fail set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe -if exist "%JAVA_EXE%" goto init +if exist "%JAVA_EXE%" goto execute echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% @@ -64,21 +64,6 @@ echo location of your Java installation. goto fail -:init -@rem Get command-line arguments, handling Windows variants - -if not "%OS%" == "Windows_NT" goto win9xME_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* - :execute @rem Setup the command line @@ -86,7 +71,7 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* :end @rem End local scope for the variables with windows NT shell diff --git a/src/main/java/org/xbib/marc/Marc.java b/src/main/java/org/xbib/marc/Marc.java index d1d6c59..e14d0a3 100644 --- a/src/main/java/org/xbib/marc/Marc.java +++ b/src/main/java/org/xbib/marc/Marc.java @@ -576,6 +576,10 @@ public final class Marc { builder.getMarcListener().endCollection(); } } + + public void parseRecords() throws IOException { + + } } /** diff --git a/src/main/java/org/xbib/marc/MarcRecord.java b/src/main/java/org/xbib/marc/MarcRecord.java index 7ce5aa4..4b4454b 100644 --- a/src/main/java/org/xbib/marc/MarcRecord.java +++ b/src/main/java/org/xbib/marc/MarcRecord.java @@ -56,7 +56,7 @@ public class MarcRecord extends LinkedHashMap { * @param marcFields the MARC field * @param lightweight true if MARC record fields should not be entered into the underlying hash map. */ - MarcRecord(String format, String type, RecordLabel recordLabel, + public MarcRecord(String format, String type, RecordLabel recordLabel, List marcFields, boolean lightweight) { super(); this.format = format; diff --git a/src/main/java/org/xbib/marc/label/RecordLabel.java b/src/main/java/org/xbib/marc/label/RecordLabel.java index 99a053e..8d137e6 100644 --- a/src/main/java/org/xbib/marc/label/RecordLabel.java +++ b/src/main/java/org/xbib/marc/label/RecordLabel.java @@ -481,6 +481,10 @@ public class RecordLabel { return this; } + public Builder from(String label) { + return from(label.toCharArray()); + } + /** * Parse given record label. * @param recordLabel the record label @@ -493,9 +497,7 @@ public class RecordLabel { } else if (label.length < LENGTH) { // fill with blanks char[] ch = new char[LENGTH - label.length]; - for (int i = 0; i < ch.length; i++) { - ch[i] = ' '; - } + Arrays.fill(ch, ' '); char[] newLabel = new char[LENGTH]; System.arraycopy(label, 0, newLabel, 0, label.length); System.arraycopy(ch, 0, newLabel, label.length, ch.length); diff --git a/src/main/java/org/xbib/marc/xml/MarcContentHandler.java b/src/main/java/org/xbib/marc/xml/MarcContentHandler.java index 73fc8da..c5af016 100644 --- a/src/main/java/org/xbib/marc/xml/MarcContentHandler.java +++ b/src/main/java/org/xbib/marc/xml/MarcContentHandler.java @@ -67,10 +67,14 @@ public class MarcContentHandler protected MarcListener marcListener; + protected MarcRecordListener marcRecordListener; + protected String format; protected String type; + protected String label; + protected MarcValueTransformers marcValueTransformers; protected boolean trim = false; @@ -79,9 +83,9 @@ public class MarcContentHandler private boolean isCollection = false; - private List marcFieldList = new LinkedList<>(); + private final List marcFieldList = new LinkedList<>(); - private Set validNamespaces = + private final Set validNamespaces = new HashSet<>(Arrays.asList(MARCXCHANGE_V1_NS_URI, MARCXCHANGE_V2_NS_URI, MARC21_SCHEMA_URI)); protected String getDefaultFormat() { @@ -113,6 +117,16 @@ public class MarcContentHandler return this; } + /** + * Set MARC record listener.. + * @param listener the MARC recordlistener + * @return this handler + */ + public MarcContentHandler setMarcRecordListener(MarcRecordListener listener) { + this.marcRecordListener = listener; + return this; + } + public MarcContentHandler addNamespace(String uri) { this.validNamespaces.add(uri); return this; @@ -151,6 +165,9 @@ public class MarcContentHandler if (marcListener != null) { marcListener.beginCollection(); } + if (marcRecordListener != null) { + marcRecordListener.beginCollection(); + } } @Override @@ -158,6 +175,9 @@ public class MarcContentHandler if (marcListener != null) { marcListener.endCollection(); } + if (marcRecordListener != null) { + marcRecordListener.endCollection(); + } } @Override @@ -170,6 +190,7 @@ public class MarcContentHandler @Override public void leader(String label) { + this.label = label; if (marcListener != null) { marcListener.leader(label); } @@ -177,16 +198,10 @@ public class MarcContentHandler @Override public void field(MarcField marcField) { - MarcField field = marcField; if (marcValueTransformers != null) { - field = marcValueTransformers.transformValue(field); - } - if (marcFieldTransformers != null) { - marcFieldList.add(marcField); + marcFieldList.add(marcValueTransformers.transformValue(marcField)); } else { - if (!marcField.isEmpty() && marcListener != null) { - marcListener.field(field); - } + marcFieldList.add(marcField); } } @@ -203,20 +218,38 @@ public class MarcContentHandler @Override public void endRecord() { try { - if (marcFieldTransformers != null) { - for (MarcField marcField : marcFieldTransformers.transform(marcFieldList)) { - if (!marcField.isEmpty() && marcListener != null) { - marcListener.field(marcField); + if (marcListener != null) { + if (marcFieldTransformers != null) { + for (MarcField marcField : marcFieldTransformers.transform(marcFieldList)) { + if (!marcField.isEmpty()) { + marcListener.field(marcField); + } + } + } else { + for (MarcField marcField : marcFieldList) { + if (!marcField.isEmpty()) { + marcListener.field(marcField); + } } } - marcFieldTransformers.reset(); - marcFieldList.clear(); - } - if (marcListener != null) { marcListener.endRecord(); } + if (marcRecordListener != null) { + if (label == null) { + logger.log(Level.WARNING, "label is null, skipping record"); + } else { + MarcRecord marcRecord = new MarcRecord(getFormat(), getType(), + RecordLabel.builder().from(label).build(), + marcFieldList, false); + marcRecordListener.record(marcRecord); + } + } } finally { recordCounter.incrementAndGet(); + if (marcFieldTransformers != null) { + marcFieldTransformers.reset(); + } + marcFieldList.clear(); } } diff --git a/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java b/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java index 96f116a..285e715 100644 --- a/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java +++ b/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java @@ -19,6 +19,7 @@ package org.xbib.marc.xml; import org.xbib.marc.MarcField; import org.xbib.marc.MarcListener; import org.xbib.marc.MarcRecord; +import org.xbib.marc.MarcRecordListener; import org.xbib.marc.transformer.value.MarcValueTransformers; import java.io.BufferedOutputStream; @@ -232,6 +233,11 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, return this; } + public MarcXchangeWriter setMarcRecordListener(MarcRecordListener recordListener) { + super.setMarcRecordListener(recordListener); + return this; + } + @Override public void startDocument() { if (exception != null) { diff --git a/src/test/java/org/xbib/marc/xml/MarcXMLTest.java b/src/test/java/org/xbib/marc/xml/DNBSRUMarcXMLTest.java similarity index 57% rename from src/test/java/org/xbib/marc/xml/MarcXMLTest.java rename to src/test/java/org/xbib/marc/xml/DNBSRUMarcXMLTest.java index 2b1ad53..eb8e2c1 100644 --- a/src/test/java/org/xbib/marc/xml/MarcXMLTest.java +++ b/src/test/java/org/xbib/marc/xml/DNBSRUMarcXMLTest.java @@ -2,18 +2,22 @@ package org.xbib.marc.xml; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.Test; import org.xbib.marc.Marc; +import org.xbib.marc.MarcRecord; +import org.xbib.marc.MarcRecordListener; import org.xbib.marc.MarcXchangeConstants; import org.xmlunit.matchers.CompareMatcher; import java.io.InputStream; import java.io.StringWriter; import java.nio.charset.StandardCharsets; +import java.util.concurrent.atomic.AtomicBoolean; /** * */ -public class MarcXMLTest { +public class DNBSRUMarcXMLTest { /** * Parsing MARC XML embedded in OAI response from DNB/ZDB. @@ -92,4 +96,71 @@ public class MarcXMLTest { assertThat(sw.toString(), CompareMatcher.isIdenticalTo(getClass().getResource(s + "-marcxchange.xml").openStream())); } + + @Test + public void testSRUMarcXmlPlus1() throws Exception { + String s = "zdb-sru-marcxmlplus1.xml"; + InputStream in = getClass().getResourceAsStream(s); + StringWriter sw = new StringWriter(); + //FileWriter sw = new FileWriter("zdb-sru-marcxmlplus1.xml-marcxchange.xml"); + try (MarcXchangeWriter writer = new MarcXchangeWriter(sw, true) + .setFormat(MarcXchangeConstants.MARCXCHANGE_FORMAT)) { + writer.startDocument(); + writer.startCustomElement("custom", "http://foobar", "root"); + Marc.builder() + .setInputStream(in) + .setCharset(StandardCharsets.UTF_8) + .setContentHandler(new MarcContentHandler() + .setFormat("MarcXML") + .setType(MarcXchangeConstants.BIBLIOGRAPHIC_TYPE) + .addNamespace("http://www.loc.gov/MARC21/slim") + .setMarcListener(MarcXchangeConstants.BIBLIOGRAPHIC_TYPE, writer) + .setMarcListener(MarcXchangeConstants.HOLDINGS_TYPE, writer)) + .build() + .xmlReader().parse(); + writer.endCustomElement("custom", "http://foobar", "root"); + writer.endDocument(); + assertNull(writer.getException()); + } + sw.close(); + assertThat(sw.toString(), + CompareMatcher.isIdenticalTo(getClass().getResource(s + "-marcxchange.xml").openStream())); + } + + @Test + public void testSRUMarcXmlPlus1RecordListener() throws Exception { + String s = "zdb-sru-marcxmlplus1.xml"; + InputStream in = getClass().getResourceAsStream(s); + AtomicBoolean found = new AtomicBoolean(); + MarcContentHandler marcListener = new MarcContentHandler(); + MarcRecordListener marcRecordListener = new MarcRecordListener() { + @Override + public void beginCollection() { + } + + @Override + public void record(MarcRecord marcRecord) { + found.set(true); + } + + @Override + public void endCollection() { + } + }; + // attach record listener + marcListener.setMarcRecordListener(marcRecordListener); + Marc.builder() + .setInputStream(in) + .setCharset(StandardCharsets.UTF_8) + .setContentHandler(new MarcContentHandler() + .setFormat("MarcXML") + .setType(MarcXchangeConstants.BIBLIOGRAPHIC_TYPE) + .addNamespace("http://www.loc.gov/MARC21/slim") + .setMarcListener(MarcXchangeConstants.BIBLIOGRAPHIC_TYPE, marcListener) + .setMarcListener(MarcXchangeConstants.HOLDINGS_TYPE,marcListener)) + .build() + .xmlReader() + .parse(); + assertTrue(found.get()); + } } diff --git a/src/test/resources/org/xbib/marc/xml/zdb-sru-marcxmlplus1.xml b/src/test/resources/org/xbib/marc/xml/zdb-sru-marcxmlplus1.xml new file mode 100644 index 0000000..00360ef --- /dev/null +++ b/src/test/resources/org/xbib/marc/xml/zdb-sru-marcxmlplus1.xml @@ -0,0 +1,5433 @@ + +1.11MARC21plus-1-xmlxml + 00000nas a2200000 c 4500 + 019080638 + DE-101 + 20200708222738.0 + cr|||||||||||| + 991122c18699999xxkw||n|o ||| 0||||1eng c + + 17,O07 + dnb + + + DE-101 + 019080638 + + + DE-600 + 1413423-8 + + + 1476-4687 + + + 0028-0836 + + + NATUA + + + (DE-599)ZDB1413423-8 + + + (OCoLC)1183392911 + + + (OCoLC)645265792 + + + 9001 + ger + DE-101 + 9999 + + + eng + + + XA-GB + + + 500 + DE-101 + 22sdnb + + + 500 + DE-600 + 22sdnb + + + 11 + ssgn + + + NAT 001z + stub + + + 700 + 720 + rpb + + + la + nl + ft + mg + + + Nature + + + Nature(London) + + + Nature,London,GB + + + Nature + international weekly journal of science + + + Nature <London> + + + Nature + + + London [u.a.] + Nature Publ. Group + 1869- + + + London + Macmillan + anfangs + + + Online-Ressource + + + Text + txt + rdacontent + + + Computermedien + c + rdamedia + + + Online-Ressource + cr + rdacarrier + + + 1.1869/70 - ; auch mit durchgehender Nr.-Zählung + + + 1.1\x + 1869/70 + + + Gesehen am 19.02.2019 + + + Periodizität: wöchentl. + + + Archivierung/Langzeitarchivierung gewährleistet + DE-101 + pdager + + + (üa/Z) + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + Naturwissenschaften + gnd + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + Zeitschrift + gnd + + + (DE-588)4511937-5 + https://d-nb.info/gnd/4511937-5 + (DE-101)954353331 + Online-Ressource + gnd + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + Naturwissenschaften + gnd + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + Zeitschrift + gnd + + + (DE-588)4067510-5 + https://d-nb.info/gnd/4067510-5 + (DE-101)040675106 + Zeitung + gnd-content + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + s + Naturwissenschaften + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + s + Zeitschrift + + + (DE-588)4511937-5 + https://d-nb.info/gnd/4511937-5 + (DE-101)954353331 + s + Online-Ressource + + + DE-600 + DE-600 + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + s + Naturwissenschaften + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + s + Zeitschrift + + + DE-600 + DE-600 + + + (DE-588)4074335-4 + https://d-nb.info/gnd/4074335-4 + (DE-101)040743357 + London + dbp + gnd + + + In + Nature.com + London : Nature Publishing Group, 2003- + Online-Ressource + (DE-600)2109534-6 + (DE-101)024688789 + + + Druckausg. + Nature <London> + London : Macmillan Publishers Limited, part of Springer Nature, 1869- + 0028-0836 + (DE-600)120714-3 + (DE-101)010679219 + + + DE-101a + DE-101b + + + https://www.nature.com/ + Verlag + + + https://www.nature.com/ + Verlag; 1.1869 - 462.2009 + Deutschlandweit zugänglich + + + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + EZB + + + ZDB-1-NTA + + + 101a + DE-101a + SAX + <Die einzelnen Ausgaben bzw. Artikel sind im Katalog recherchierbar> + + + 101b + DE-101b + HES + <Die einzelnen Ausgaben bzw. Artikel sind im Katalog recherchierbar> + + + 3 + (DE-3)240151402 + DE-3 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ULBH + + + 4 + DE-4 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMA + EZB + http://ezb.ur.de/ReadMe?bibid=UBMA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 4 + DE-4 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMA + EZB + http://ezb.ur.de/ReadMe?bibid=UBMA&owner=UBMA&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 387 + 1997 + - + 387 + 1997 + - + <387.1997 -> + + + 7 + DE-7 + NIE + b + EZ 2002-4 + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 7 + DE-7 + NIE + b + 385 + 1997 + - + <lizenziert: 385.1997,6611 -> + + + 8 + (DE-8)240151402 + DE-8 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBK + + + 9 + (DE-9)240151402 + DE-9 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBGRW + + + 11/10 + DE-11-10 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHUB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 11/10 + DE-11-10 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHUB + EZB + https://www.nature.com/nature/volumes + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 11/10 + DE-11-10 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHUB + EZB + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 12 + DE-12 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BSB + EZB + http://ezb.ur.de/ReadMe?bibid=BSB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 12 + DE-12 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BSB + EZB + http://ezb.ur.de/ReadMe?bibid=BSB&owner=BSB&anchor=nature&lang=de&lang=de#nature + Read me + + Volltext + 2014 + - + 2014 + - + <2014 -> + + + 14 + DE-14 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SLUB + EZB + http://ezb.ur.de/ReadMe?bibid=SLUB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 14 + DE-14 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SLUB + EZB + http://ezb.ur.de/ReadMe?bibid=SLUB&owner=SLUB&anchor=slub_nature&lang=de&lang=de#slub_nature + Read me + https://www.nature.com/ + Volltext + 463 + 2010 + - + 463 + 2010 + - + <463.2010 -> + + + 14 + DE-14 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SLUB + EZB + http://ezb.ur.de/ReadMe?bibid=SLUB&owner=EBSCO&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 15 + DE-15 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=UBL&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + 15 + DE-15 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 15/292 + DE-15-292 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=UBL&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + 15/292 + DE-15-292 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 15 + DE-15 + SAX + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 15/292 + DE-15-292 + SAX + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 16 + DE-16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHE + EZB + http://ezb.ur.de/ReadMe?bibid=UBHE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 16 + DE-16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHE + EZB + http://ezb.ur.de/ReadMe?bibid=UBHE&owner=UBHE&anchor=HD_Nature&lang=de&lang=de#HD_Nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 16 + DE-16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHE + EZB + http://ezb.ur.de/ReadMe?bibid=UBHE&owner=BWKEB&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://www.redi-bw.de/db/ebsco.php?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Ds 114 + DE-Ds114 + HES + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHDA + EZB + http://ezb.ur.de/ReadMe?bibid=FHDA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 18 + DE-18 + HAM + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 18 + DE-18 + HAM + b + 1 + 1869 + - + <lizenziert: 1.1869,1 -> + + + M 347 + DE-M347 + BAY + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHM + EZB + http://ezb.ur.de/ReadMe?bibid=FHM&owner=FHM&anchor=nature&lang=de&lang=de#nature + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + M 347 + DE-M347 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHM + EZB + http://ezb.ur.de/ReadMe?bibid=FHM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 210 + DE-210 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DM + EZB + http://ezb.ur.de/ReadMe?bibid=DM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 19 + DE-19 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBM + EZB + http://ezb.ur.de/ReadMe?bibid=UBM&owner=UBM&anchor=NPG&lang=de&lang=de#NPG + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 19 + DE-19 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBM + EZB + http://ezb.ur.de/ReadMe?bibid=UBM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + M 347 + DE-M347 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHM + EZB + http://ezb.ur.de/ReadMe?bibid=FHM&owner=EBSCO&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://search.ebscohost.com/direct.asp?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 19 + DE-19 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBM + EZB + http://ezb.ur.de/ReadMe?bibid=UBM&owner=EBSCO&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://search.ebscohost.com/direct.asp?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 20 + DE-20 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBW + EZB + http://ezb.ur.de/ReadMe?bibid=UBW&owner=UBW&anchor=fl_nature&lang=de&lang=de#fl_nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 20 + DE-20 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBW + EZB + http://ezb.ur.de/ReadMe?bibid=UBW&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 862 + DE-862 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBWS + EZB + http://ezb.ur.de/ReadMe?bibid=FHBWS&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 863 + DE-863 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBWS + EZB + http://ezb.ur.de/ReadMe?bibid=FHBWS&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 21 + DE-21 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTUE + EZB + http://ezb.ur.de/ReadMe?bibid=UBTUE&owner=UBTUE&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 21 + DE-21 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTUE + EZB + http://ezb.ur.de/ReadMe?bibid=UBTUE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 21 + DE-21 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTUE + EZB + http://ezb.ur.de/ReadMe?bibid=UBTUE&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 24 + DE-24 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 24 + DE-24 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=WLB&anchor=nature_lanli&lang=de&lang=de#nature_lanli + Read me + + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 24 + DE-24 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 24 + DE-24 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=CORON&anchor=corona_redi_ebsco_asn&lang=de&lang=de#corona_redi_ebsco_asn + Read me + + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Ofb 1 + DE-Ofb1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBOG + EZB + http://ezb.ur.de/ReadMe?bibid=FHBOG&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Ofb 1 + DE-Ofb1 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBOG + EZB + http://ezb.ur.de/ReadMe?bibid=FHBOG&owner=FHBOG&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + Fn 1 + DE-Fn1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFU + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 25 + DE-25 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBFRE + EZB + http://ezb.ur.de/ReadMe?bibid=UBFRE&owner=UBFRE&anchor=frub_nature&lang=de&lang=de#frub_nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 25 + DE-25 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBFRE + EZB + http://ezb.ur.de/ReadMe?bibid=UBFRE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 129 + DE-Frei129 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHBFR + EZB + http://ezb.ur.de/ReadMe?bibid=PHBFR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 68 + DE-Frei68 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BWL + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 129 + DE-Frei129 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHBFR + EZB + http://ezb.ur.de/ReadMe?bibid=PHBFR&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 25 + DE-25 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBFRE + EZB + http://ezb.ur.de/ReadMe?bibid=UBFRE&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Fn 1 + DE-Fn1 + BAW + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFU + EZB + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + 26 + DE-26 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBGIE + EZB + http://ezb.ur.de/ReadMe?bibid=UBGIE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 26 + DE-26 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBGIE + EZB + http://ezb.ur.de/ReadMe?bibid=UBGIE&owner=UBGIE&anchor=SprNat&lang=de&lang=de#SprNat + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 27 + (DE-27)240151402 + DE-27 + THU + d + http://rzblx1.uni-regensburg.de/ezeit/detail.phtml?bibid=THULB&colors=7&lang=de&jour_id=328 + + + 29 + DE-29 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBEN + EZB + http://ezb.ur.de/ReadMe?bibid=UBEN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 29 + DE-29 + BAY + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBEN + EZB + http://ezb.ur.de/ReadMe?bibid=UBEN&owner=UBEN&anchor=NPG&lang=de&lang=de#NPG + Read me + http://www.nature.com/nature/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 92 + DE-92 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHN + EZB + http://ezb.ur.de/ReadMe?bibid=FHN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1102 + DE-1102 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBAN + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 92 + DE-92 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHN + EZB + http://ezb.ur.de/ReadMe?bibid=FHN&owner=EBSCO&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 29 + DE-29 + BAY + b + n + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBEN + EZB + http://ezb.ur.de/ReadMe?bibid=UBEN&owner=EBSCO&anchor=ebsco_pbh&lang=de&lang=de#ebsco_pbh + Read me + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 946 + DE-946 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHF + EZB + http://ezb.ur.de/ReadMe?bibid=FHF&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 31 + DE-31 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BLB + EZB + http://ezb.ur.de/ReadMe?bibid=BLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 31 + DE-31 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BLB + EZB + http://ezb.ur.de/ReadMe?bibid=BLB&owner=BLB&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 31 + DE-31 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BLB + EZB + http://ezb.ur.de/ReadMe?bibid=BLB&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 33 + DE-33 + HAM + b + DB 9 + <Die Landesbibliothek MV hat für Sie die aktuellen 5 Jahrgänge lizensiert. Die E-Zeitschrift ist nur in den Räumen der Bibliothek zugänglich.> + + + 43 + DE-43 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HLB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 66 + DE-66 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFD + EZB + http://ezb.ur.de/ReadMe?bibid=FHFD&owner=FHFD&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + +005Y + <Die letzten 5 Jg. sind zugänglich> + + + 66 + DE-66 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFD + EZB + http://ezb.ur.de/ReadMe?bibid=FHFD&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 66 + DE-66 + HES + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFD + EZB + http://ezb.ur.de/ReadMe?bibid=FHFD&owner=EBSCO&anchor=ebsco_pbh&lang=de&lang=de#ebsco_pbh + Read me + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 83 + DE-83 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBB + EZB + http://ezb.ur.de/ReadMe?bibid=TUBB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 83 + DE-83 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBB + EZB + http://ezb.ur.de/ReadMe?bibid=TUBB&owner=TUBB&anchor=npg_lokal&lang=de&lang=de#npg_lokal + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 84 + (DE-84)240151402 + DE-84 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBS + <Campusweiter Volltext-Zugriff> + + + 89 + (DE-89)240151402 + DE-89 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTIB + <2003 -> + + + 90 + DE-90 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KIT + EZB + http://ezb.ur.de/ReadMe?bibid=KIT&owner=KIT&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 90 + DE-90 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KIT + EZB + http://ezb.ur.de/ReadMe?bibid=KIT&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 90/4 + DE-90-4 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FBHKA + EZB + http://ezb.ur.de/ReadMe?bibid=FBHKA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 90/4 + DE-90-4 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FBHKA + EZB + http://ezb.ur.de/ReadMe?bibid=FBHKA&owner=FBHKA&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 469 + 2011 + - + 469 + 2011 + - + <469.2011 -> + + + 90/8 + DE-90-8 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DHBW + EZB + http://ezb.ur.de/ReadMe?bibid=DHBW&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 90/4 + DE-90-4 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FBHKA + EZB + http://ezb.ur.de/ReadMe?bibid=FBHKA&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 90 + DE-90 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KIT + EZB + http://ezb.ur.de/ReadMe?bibid=KIT&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 1028 + DE-1028 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHWEI + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 91 + DE-91 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUM + EZB + http://ezb.ur.de/ReadMe?bibid=TUM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 91 + DE-91 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUM + EZB + http://ezb.ur.de/ReadMe?bibid=TUM&owner=TUM&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 1028 + DE-1028 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHWEI + EZB + https://search.ebscohost.com/direct.asp?db=fsr&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 91 + DE-91 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUM + EZB + http://ezb.ur.de/ReadMe?bibid=TUM&owner=AONE&anchor=AcademicOne&lang=de&lang=de#AcademicOne + Read me + http://link.galegroup.com/apps/pub/0359/AONE?sid=kbart + Volltext + 2000 + - + 2000 + - + -001Y + <2000 -> + <Der letzte Jg. ist nicht zugänglich> + + + 93 + DE-93 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBS + EZB + http://ezb.ur.de/ReadMe?bibid=UBS&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 93 + DE-93 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBS + EZB + http://ezb.ur.de/ReadMe?bibid=UBS&owner=UBS&anchor=nature_campus&lang=de&lang=de#nature_campus + Read me + http://www.nature.com/nature/archive + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 93 + DE-93 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBS + EZB + http://ezb.ur.de/ReadMe?bibid=UBS&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 100 + DE-100 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHOH + EZB + http://ezb.ur.de/ReadMe?bibid=UBHOH&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 100 + DE-100 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHOH + EZB + http://ezb.ur.de/ReadMe?bibid=UBHOH&owner=UBHOH&anchor=hoh_npg&lang=de&lang=de#hoh_npg + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 100 + DE-100 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHOH + EZB + http://ezb.ur.de/ReadMe?bibid=UBHOH&owner=BWKEB&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://www.redi-bw.de/db/ebsco.php?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 104 + DE-104 + NIE + d + Online-Abonnement + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBCL + <2003 -> + + + 105 + DE-105 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBFR + EZB + http://ezb.ur.de/ReadMe?bibid=TUBFR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 105 + DE-105 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBFR + EZB + http://ezb.ur.de/ReadMe?bibid=TUBFR&owner=TUBFR&anchor=Nature&lang=de&lang=de#Nature + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 451 + 2008 + - + 451 + 2008 + - + <451.2008 -> + + + 105 + DE-105 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBFR + EZB + http://ezb.ur.de/ReadMe?bibid=TUBFR&owner=PROQU&anchor=Materials_Science_and_Engineering_Database&lang=de&lang=de#Materials_Science_and_Engineering_Database + Read me + http://gateway.proquest.com/openurl?url_ver=Z39.88-2004&res_dat=xri:pqm&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&genre=journal&svc_dat=xri:pqil:context=title&rft_dat=xri:pqd:PMID=40569 + Volltext + 1990 + - + 1990 + - + -012M + <1990 -> + <Die letzten 12 Monate sind nicht zugänglich> + + + 109 + DE-109 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ZLB + EZB + http://ezb.ur.de/ReadMe?bibid=ZLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 180 + DE-180 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMAN + EZB + http://ezb.ur.de/ReadMe?bibid=UBMAN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 180 + DE-180 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMAN + EZB + http://ezb.ur.de/ReadMe?bibid=UBMAN&owner=UBMAN&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 953 + DE-953 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHMA + EZB + http://ezb.ur.de/ReadMe?bibid=FHMA&owner=FHMA&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 953 + DE-953 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHMA + EZB + http://ezb.ur.de/ReadMe?bibid=FHMA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Mh 39 + DE-Mh39 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IDS + EZB + http://ezb.ur.de/ReadMe?bibid=IDS&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 180 + DE-180 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMAN + EZB + http://ezb.ur.de/ReadMe?bibid=UBMAN&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 188/e + DE-188-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 188/e + DE-188-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=FUB&anchor=Nature&lang=de&lang=de#Nature + Read me + http://fu-berlin.hosted.exlibrisgroup.com/openurl/FUB/FUB?u.ignore_date_coverage=true&rfr_id=info%3Asid%2FEZB&ctx_ver=Z39.88-2004&rft.issn=0028-0836 + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + B 16 + DE-B16 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MFN + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 16 + DE-B16 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MFN + EZB + http://www.nature.com/nature + Volltext + 2010 + - + 2010 + - + <2010 -> + + + 188/e + DE-188-e + BER + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=AONE&anchor=AcademicOne&lang=de&lang=de#AcademicOne + Read me + http://link.galegroup.com/apps/pub/0359/AONE?sid=kbart + Volltext + 2000 + - + 2000 + - + -001Y + <2000 -> + <Der letzte Jg. ist nicht zugänglich> + + + 188/e + DE-188-e + BER + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=EBSCO&anchor=ebsco_asn&lang=de&lang=de#ebsco_asn + Read me + https://search.ebscohost.com/direct.asp?db=asn&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 289 + DE-289 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBU + EZB + http://ezb.ur.de/ReadMe?bibid=UBU&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 289 + DE-289 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBU + EZB + http://ezb.ur.de/ReadMe?bibid=UBU&owner=UBU&anchor=&lang=de&lang=de + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 943 + DE-943 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHUL + EZB + http://ezb.ur.de/ReadMe?bibid=FHUL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 943 + DE-943 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHUL + EZB + http://ezb.ur.de/ReadMe?bibid=FHUL&owner=BWKEB&anchor=ebsco_egs&lang=de&lang=de#ebsco_egs + Read me + https://www.redi-bw.de/db/ebsco.php?db=egs&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 291 + DE-291 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SULB + EZB + http://ezb.ur.de/ReadMe?bibid=SULB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 291 + DE-291 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SULB + EZB + http://ezb.ur.de/ReadMe?bibid=SULB&owner=SULB&anchor=nature&lang=de&lang=de#nature + Read me + http://www.nature.com/nature/archive/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 291/415 + DE-291-415 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=INM + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 291/415 + DE-291-415 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=INM + EZB + https://www.nature.com/ + Volltext + +004Y + <Die letzten 4 Jg. sind zugänglich> + + + Sa 16 + DE-Sa16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWS + EZB + http://ezb.ur.de/ReadMe?bibid=HTWS&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Sa 18 + DE-Sa18 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPII + EZB + http://ezb.ur.de/ReadMe?bibid=MPII&owner=MPG&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + Sa 18 + DE-Sa18 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPII + EZB + http://ezb.ur.de/ReadMe?bibid=MPII&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Sa 18 + DE-Sa18 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPII + EZB + http://ezb.ur.de/ReadMe?bibid=MPII&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 291 + DE-291 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SULB + EZB + http://ezb.ur.de/ReadMe?bibid=SULB&owner=EBSCO&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://search.ebscohost.com/direct.asp?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 352 + DE-352 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBKO + EZB + http://ezb.ur.de/ReadMe?bibid=UBKO&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 352 + DE-352 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBKO + EZB + http://ezb.ur.de/ReadMe?bibid=UBKO&owner=UBKO&anchor=nature_ubko&lang=de&lang=de#nature_ubko + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 352 + DE-352 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBKO + EZB + http://ezb.ur.de/ReadMe?bibid=UBKO&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 1050 + DE-1050 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHDEG + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 355 + DE-355 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBR + EZB + http://ezb.ur.de/ReadMe?bibid=UBR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 355 + DE-355 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBR + EZB + http://ezb.ur.de/ReadMe?bibid=UBR&owner=UBR&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 898 + DE-898 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBR + EZB + http://ezb.ur.de/ReadMe?bibid=FHBR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1046 + DE-1046 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBAW + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 155 + DE-155 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=STABI + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 384 + DE-384 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBA + EZB + http://ezb.ur.de/ReadMe?bibid=UBA&owner=UBA&anchor=sonstige&lang=de&lang=de#sonstige + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 859 + DE-859 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBKA + EZB + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Aug 4 + DE-Aug4 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 37 + DE-37 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SUSBA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 859 + DE-859 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBKA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 473 + DE-473 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBB + EZB + http://ezb.ur.de/ReadMe?bibid=UBB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 70 + DE-70 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=LBCO + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 517 + (DE-517)240151402 + DE-517 + BER + Z 11809 + 1960 + http://www.nature.com/ + 1997 + - + <1997 -> + + + 517 + (DE-517)240151402 + DE-517 + BER + b + 1960 + http://rzblx1.uni-regensburg.de/ezeit/detail.phtml?bibid=UBPO&colors=7&lang=de&jour_id=328 + <1869 -> + + + 517 + (DE-517)240151402 + DE-517 + BER + b + 1960 + http://rzblx1.uni-regensburg.de/ezeit/detail.phtml?bibid=UBPO&colors=7&lang=de&jour_id=31996 + <1996 - nicht die aktuellen 12 Monate> + + + 521 + DE-521 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=EUV + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 703 + DE-703 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBBAY + EZB + http://ezb.ur.de/ReadMe?bibid=UBBAY&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 703 + DE-703 + BAY + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBBAY + EZB + http://ezb.ur.de/ReadMe?bibid=UBBAY&owner=UBBAY&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + +005Y + <Die letzten 5 Jg. sind zugänglich> + + + 705 + DE-705 + HAM + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&amp;bibid=UBWH + <ACHTUNG: Eingeschränkter Online-Zugriff> + + + 739 + DE-739 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBPA + EZB + http://ezb.ur.de/ReadMe?bibid=UBPA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 860 + DE-860 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBLA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 573 + DE-573 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBIN + EZB + http://ezb.ur.de/ReadMe?bibid=FHBIN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 573 + DE-573 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBIN + EZB + http://ezb.ur.de/ReadMe?bibid=FHBIN&owner=EBSCO&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 824 + DE-824 + BAY + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBE + EZB + http://ezb.ur.de/ReadMe?bibid=UBE&owner=EBSCO&anchor=ebsco_pbh&lang=de&lang=de#ebsco_pbh + Read me + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 150 + DE-150 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SBND + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 830 + DE-830 + HAM + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 830 + DE-830 + HAM + b + <lizenziert: [die aktuellen 5 Jahre zugänglich]> + + + 929 + DE-929 + NRW + Online-Zugang + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + 1 + 1869/70 + - + <1.1869/70 -> + <Zugriff in allen Räumlichkeiten der LBZ-Bibliotheken> + + + B 1536 + DE-B1536 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ZUSE + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 2018 + DE-B2018 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KB + EZB + http://ezb.ur.de/ReadMe?bibid=KB&owner=KB&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + D 140 + DE-D140 + SAX + http://www.nature.com/nature/ + http://search.ebscohost.com/ + 1940 + - + <1940 -> + + + L 97 + DE-L97 + SAX + http://www.nature.com/nature + 2009 + - + <2009 -> + <Campuslizenz nur für die UFZ-Angehörigen> + + + D 115 + DE-D115 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=LFADD + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Hil 2 + (DE-Hil2)240151402 + DE-Hil2 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHI + + + Ma 9 + (DE-Ma9)240151402 + DE-Ma9 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMD + + + 551 + (DE-551)240151402 + DE-551 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBMST + + + 552 + (DE-552)240151402 + DE-552 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBMST + + + Lün 4 + (DE-Luen4)240151402 + DE-Luen4 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBLUE + + + Lün 4 + DE-Luen4 + NIE + + + Ch 1 + DE-Ch1 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCHE + EZB + http://ezb.ur.de/ReadMe?bibid=TUCHE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Ch 1 + DE-Ch1 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCHE + EZB + http://ezb.ur.de/ReadMe?bibid=TUCHE&owner=TUCHE&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + D 161 + DE-D161 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BADD + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + D 275 + DE-D275 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BADD + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Gla 1 + DE-Gla1 + SAX + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAG + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Bn 3 + DE-Bn3 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAKS + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Rs 1 + DE-Rs1 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BARIE + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + L 229 + DE-L229 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SSAL + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Ch 1 + DE-Ch1 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCHE + EZB + http://ezb.ur.de/ReadMe?bibid=TUCHE&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Gla 1 + DE-Gla1 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAG + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Ilm 1 + (DE-Ilm1)240151402 + DE-Ilm1 + THU + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBIL + <Campuslizenz TU Ilmenau> + + + B 1532 + (DE-B1532)240151402 + DE-B1532 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPIBF + + + B 1556 + DE-B1556 + BER + d + Online-Publikation + http://rzblx10.uni-regensburg.de/dbinfo/detail.php?bib_id=ehber&colors=&ocolors=&lett=fs&tid=0&titel_id=8242 + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + <lizenziert: 1.1869 - 462.2009> + <Elektronischer Volltext, Link anklicken> + + + Gr 61 + DE-Gr61 + HAM + d + Online-Ressource + FLI - Bundesforschungsinstitut für Tiergesundheit + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FLI + <1.1869/70 - 552.2017, Heft 7685> + <Der Volltextzugriff ist an allen FLI-Standorten möglich. Bitte Link nutzen> + + + Bst 1 + (DE-Bst1)240151402 + DE-Bst1 + HAM + b + online + 1 + 1869/70 + - + <1.1869/70 -> + + + Ki 95 + (DE-Ki95)240151402 + DE-Ki95 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHKI + <Zugang nur aus dem Rechnernetz der Fachhochschule Kiel> + + + Ki 130 + (DE-Ki130)240151402 + DE-Ki130 + HAM + b + + + Va 1 + (DE-Va1)240151402 + DE-Va1 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBVE + + + 916 + (DE-916)240151402 + DE-916 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHWF + + + Gö 116 + (DE-Goe116)240151402 + DE-Goe116 + NIE + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPIBP + + + Wa 1 + (DE-Wa1)240151402 + DE-Wa1 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IOW + <Link gilt nur für Nutzer im Institut für Ostseeforschung! Zugriffsmöglichkeiten prüfen!> + + + 542 + (DE-542)240151402 + DE-542 + SAA + d + E-Journal + Service-PC + http://www.nature.com/siteindex/index.html + <Zugriff "Nature" rückwirkend 4 Jahre!> + <"Nature Archives" bietet umfangreiches Publikations-Angebot aus den Bereichen Nature Biotechnologie, Nature Genetics, Nature Medicine und Nature Structural and Molecular Biology! ; Direktzugang über diesen Link!> + + + Kt 1 + (DE-Kt1)240151402 + DE-Kt1 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSB + + + Ma 54 + (DE-Ma54)240151402 + DE-Ma54 + SAA + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPIDS + + + Gat 1 + DE-Gat1 + SAA + b + IPK-Bibliothek + 450 + 2007 + - + <450.2007 - > + + + Ha 125 + (DE-Ha125)240151402 + DE-Ha125 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KDHAL + + + 546 + (DE-546)240151402 + DE-546 + THU + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHEF + + + Kn 41 + DE-Kn41 + NRW + b + n + p + 1 + 1869 + 462 + 2011 + <1.1869 - 480.2011=Nr.7378> + <Zugang nur im Hochschulnetz der Deutschen Sporthochschule; 1.1869 - 462.2009 als DFG-Nationallizenz, organisiert durch die Technische Informationsbibliothek (TIB), Hannover> + + + 752 + DE-752 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHGD + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Lg 1 + DE-Lg1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHLB + EZB + http://ezb.ur.de/ReadMe?bibid=PHLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 753 + DE-753 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 753 + DE-753 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com + Volltext + 427 + 2004 + - + 427 + 6969 + 2004 + - + <427.2004,6969 -> + + + 972 + DE-972 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 972 + DE-972 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com + Volltext + 427 + 2004 + - + 427 + 6969 + 2004 + - + <427.2004,6969 -> + + + 753 + DE-753 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 972 + DE-972 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 752 + DE-752 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHGD + EZB + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Lg 1 + DE-Lg1 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHLB + EZB + http://ezb.ur.de/ReadMe?bibid=PHLB&owner=BWKEB&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 634 + DE-634 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCB + EZB + http://ezb.ur.de/ReadMe?bibid=TUCB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 941 + DE-941 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAMOS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1033 + DE-1033 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFTS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 944 + DE-944 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHAA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Stg 265 + DE-Stg265 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SMNS + EZB + http://www.nature.com/nature/current_issue.html + Volltext + 1 + 1869 + 462 + 2009 + ; + 517 + 2015 + - + <1.1869 - 462.2009,7276; 517.2015 -> + + + Ess 5 + DE-Ess5 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=LDRS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Rt 2 + DE-Rt2 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHRT + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 950 + DE-950 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFWU + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1090 + DE-1090 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFWU + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 991 + DE-991 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSASI + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Kon 4 + DE-Kon4 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHKN + EZB + http://ezb.ur.de/ReadMe?bibid=FHKN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 747 + DE-747 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DHSBW%26owner%3DHSBW%26anchor%3D%26lang%3Den%3Flang%3Den + Read me + https://www.nature.com/ + Volltext + 451 + 2008 + - + 451 + 7174 + 2008 + - + <451.2008,7174 -> + + + 747 + DE-747 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DHSBW%26owner%3DNALIE%26anchor%3Dnatli_nature%26lang%3Den%3Flang%3Den%23natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 747 + DE-747 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBW + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 949 + DE-949 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBC + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 991 + DE-991 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSASI + EZB + https://www.redi-bw.de/db/ebsco.php?db=egs&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 944 + DE-944 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHAA + EZB + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 578/e + DE-578-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MBCB + EZB + http://ezb.ur.de/ReadMe?bibid=MBCB&owner=MBCB&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 578/e + DE-578-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MBCB + EZB + http://ezb.ur.de/ReadMe?bibid=MBCB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 578/e + DE-578-e + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MBCB + EZB + http://ezb.ur.de/ReadMe?bibid=MBCB&owner=EBSCO&anchor=ebsco_asn&lang=de&lang=de#ebsco_asn + Read me + https://search.ebscohost.com/direct.asp?db=asn&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 354 + DE-354 + NIE + b + 1 + 1869 + - + <lizenziert: 1.1869,1 -> + + + 354 + DE-354 + NIE + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 520 + DE-520 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWDD + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + B 1543 + DE-B1543 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WZB + EZB + http://ezb.ur.de/ReadMe?bibid=WZB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 520 + DE-520 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWDD + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Zwi 2 + DE-Zwi2 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WHZ + EZB + http://ezb.ur.de/ReadMe?bibid=WHZ&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + D 120 + DE-D120 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FZR + EZB + http://ezb.ur.de/ReadMe?bibid=FZR&owner=FZR&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1949 + - + 1949 + - + <1949 -> + + + D 120 + DE-D120 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FZR + EZB + http://ezb.ur.de/ReadMe?bibid=FZR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 768 + DE-B768 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 768 + DE-B768 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHB + EZB + http://www.nature.com/nature/index.html + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + Zwi 2 + DE-Zwi2 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WHZ + EZB + http://ezb.ur.de/ReadMe?bibid=WHZ&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + AT-UBMUG + AT-UBMUG + WEU + b + <Online> + + + M 124 + DE-M124 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BFHB + EZB + http://ezb.ur.de/ReadMe?bibid=BFHB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 706 + DE-706 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBWM + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DUBWM%26owner%3DNALIE%26anchor%3Dnatli_nature%26lang%3Den%3Flang%3Den%23natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 706 + DE-706 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBWM + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DUBWM%26owner%3DUBWM%26anchor%3Dnature%26lang%3Den%3Flang%3Den%23nature + Read me + https://www.nature.com/ + Volltext + 541 + 2017 + - + 541 + 2017 + - + <541.2017 -> + + + ZDB-1-NTA + ZDB-1-NTA + ANL + https://www.nature.com/nature/archive/index.html + Nationallizenz + 1 + 1869 + 462 + 2009 + <1.1869 - 462.2009> + <Der deutschlandweite Zugriff auf die Datenbank wird durch die Förderung der Deutschen Forschungsgemeinschaft (DFG) ermöglicht und durch die Niedersächsische Staats- und Universitätsbibliothek Göttingen organisiert> + + + M 382 + DE-M382 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IPMPG + EZB + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + M 382 + DE-M382 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IPMPG + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + M 382 + DE-M382 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IPMPG + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + L 189 + DE-L189 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWK + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 522 + DE-522 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBRB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + L 189 + DE-L189 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWK + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Mar 1 + DE-Mar1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Y 2 + DE-Y2 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + Y 2 + DE-Y2 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Y 2 + DE-Y2 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Y 2 + DE-Y2 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + http://gateway.proquest.com/openurl?url_ver=Z39.88-2004&res_dat=xri:pqm&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&genre=journal&svc_dat=xri:pqil:context=title&rft_dat=xri:pqd:PMID=40569 + Volltext + 1990 + - + 1990 + - + -012M + <1990 -> + <Die letzten 12 Monate sind nicht zugänglich> + + + Y 3 + DE-Y3 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KHIFI + EZB + http://ezb.ur.de/ReadMe?bibid=KHIFI&owner=MPG&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + Y 3 + DE-Y3 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KHIFI + EZB + http://ezb.ur.de/ReadMe?bibid=KHIFI&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Y 3 + DE-Y3 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KHIFI + EZB + http://ezb.ur.de/ReadMe?bibid=KHIFI&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Y 7 + DE-Y7 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DFK + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 201 + DE-201 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DPMA + EZB + http://ezb.ur.de/ReadMe?bibid=DPMA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 2138 + (DE-B2138)240151402 + DE-B2138 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ZMO + + + 960/1 + DE-960-1 + NIE + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 960/3 + DE-960-3 + NIE + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 526 + DE-526 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DTFHW%26owner%3DNALIE%26anchor%3Dnatli_nature%26lang%3Den%3Flang%3Den%23natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 526 + DE-526 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DTFHW%26owner%3DTFHW%26anchor%3Dnature%26lang%3Den%3Flang%3Den%23nature + Read me + http://www.nature.com/nature/index.html + Volltext + 463 + 2010 + - + 463 + 7277 + 2010 + - + <463.2010,7277 -> + + + Kn 182 + DE-Kn182 + NRW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLLR + EZB + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + Kn 182 + DE-Kn182 + NRW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLLR + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Kn 182 + DE-Kn182 + NRW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLLR + EZB + https://www.nature.com/ + Volltext + 1949 + - + 1949 + - + <1949 -> + + + Bv 2 + (DE-Bv2)240151402 + DE-Bv2 + HAM + b + Z 2068E + BV:Z + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + <Print Ausgabe vorhanden unter Z 2068 . Bestand siehe Bibliothekskatalog!> + + + 2491 + DE-2491 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DHIR + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 751 + DE-751 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBKA + EZB + http://ezb.ur.de/ReadMe?bibid=HSBKA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 751 + DE-751 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBKA + EZB + http://ezb.ur.de/ReadMe?bibid=HSBKA&owner=BWKEB&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 1866 + DE-1866 + NRW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFG + EZB + http://ezb.ur.de/ReadMe?bibid=HFG&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1871 + DE-1871 + NRW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSHL + EZB + http://ezb.ur.de/ReadMe?bibid=HSHL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1926 + DE-1926 + NRW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSHL + EZB + http://ezb.ur.de/ReadMe?bibid=HSHL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 106 + DE-B106 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=RKI + EZB + http://ezb.ur.de/ReadMe?bibid=RKI&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 106 + DE-B106 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=RKI + EZB + http://ezb.ur.de/ReadMe?bibid=RKI&owner=RKI&anchor=Nature&lang=de&lang=de#Nature + Read me + https://www.nature.com/ + Volltext + 463 + 2010 + - + 463 + 7277 + 2010 + - + <463.2010,7277 -> + + + Mh 35 + DE-Mh35 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAMA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 2083 + DE-2083 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBG + EZB + http://ezb.ur.de/ReadMe?bibid=HBG&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 3c + DE-Frei3c + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MFO + EZB + http://ezb.ur.de/ReadMe?bibid=MFO&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 2809 + DE-2809 + NRW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MWS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 840 + DE-840 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHHN + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 840 + DE-840 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHHN + EZB + https://www.redi-bw.de/db/ebsco.php?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 840 + DE-840 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHHN + EZB + https://www.redi-bw.de/db/ebsco.php?db=egs&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + ro + ra + + 121.1dnb.identifier = 14134238MARC21plus-1-xmlHBZ Köln \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/xml/zdb-sru-marcxmlplus1.xml-marcxchange.xml b/src/test/resources/org/xbib/marc/xml/zdb-sru-marcxmlplus1.xml-marcxchange.xml new file mode 100644 index 0000000..725debd --- /dev/null +++ b/src/test/resources/org/xbib/marc/xml/zdb-sru-marcxmlplus1.xml-marcxchange.xml @@ -0,0 +1,5435 @@ + + + + 00000nas a2200000 c 4500 + 019080638 + DE-101 + 20200708222738.0 + cr|||||||||||| + 991122c18699999xxkw||n|o ||| 0||||1eng c + + 17,O07 + dnb + + + DE-101 + 019080638 + + + DE-600 + 1413423-8 + + + 1476-4687 + + + 0028-0836 + + + NATUA + + + (DE-599)ZDB1413423-8 + + + (OCoLC)1183392911 + + + (OCoLC)645265792 + + + 9001 + ger + DE-101 + 9999 + + + eng + + + XA-GB + + + 500 + DE-101 + 22sdnb + + + 500 + DE-600 + 22sdnb + + + 11 + ssgn + + + NAT 001z + stub + + + 700 + 720 + rpb + + + la + nl + ft + mg + + + Nature + + + Nature(London) + + + Nature,London,GB + + + Nature + international weekly journal of science + + + Nature <London> + + + Nature + + + London [u.a.] + Nature Publ. Group + 1869- + + + London + Macmillan + anfangs + + + Online-Ressource + + + Text + txt + rdacontent + + + Computermedien + c + rdamedia + + + Online-Ressource + cr + rdacarrier + + + 1.1869/70 - ; auch mit durchgehender Nr.-Zählung + + + 1.1\x + 1869/70 + + + Gesehen am 19.02.2019 + + + Periodizität: wöchentl. + + + Archivierung/Langzeitarchivierung gewährleistet + DE-101 + pdager + + + (üa/Z) + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + Naturwissenschaften + gnd + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + Zeitschrift + gnd + + + (DE-588)4511937-5 + https://d-nb.info/gnd/4511937-5 + (DE-101)954353331 + Online-Ressource + gnd + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + Naturwissenschaften + gnd + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + Zeitschrift + gnd + + + (DE-588)4067510-5 + https://d-nb.info/gnd/4067510-5 + (DE-101)040675106 + Zeitung + gnd-content + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + s + Naturwissenschaften + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + s + Zeitschrift + + + (DE-588)4511937-5 + https://d-nb.info/gnd/4511937-5 + (DE-101)954353331 + s + Online-Ressource + + + DE-600 + DE-600 + + + (DE-588)4041421-8 + https://d-nb.info/gnd/4041421-8 + (DE-101)040414213 + s + Naturwissenschaften + + + (DE-588)4067488-5 + https://d-nb.info/gnd/4067488-5 + (DE-101)040674886 + s + Zeitschrift + + + DE-600 + DE-600 + + + (DE-588)4074335-4 + https://d-nb.info/gnd/4074335-4 + (DE-101)040743357 + London + dbp + gnd + + + In + Nature.com + London : Nature Publishing Group, 2003- + Online-Ressource + (DE-600)2109534-6 + (DE-101)024688789 + + + Druckausg. + Nature <London> + London : Macmillan Publishers Limited, part of Springer Nature, 1869- + 0028-0836 + (DE-600)120714-3 + (DE-101)010679219 + + + DE-101a + DE-101b + + + https://www.nature.com/ + Verlag + + + https://www.nature.com/ + Verlag; 1.1869 - 462.2009 + Deutschlandweit zugänglich + + + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + EZB + + + ZDB-1-NTA + + + 101a + DE-101a + SAX + <Die einzelnen Ausgaben bzw. Artikel sind im Katalog recherchierbar> + + + 101b + DE-101b + HES + <Die einzelnen Ausgaben bzw. Artikel sind im Katalog recherchierbar> + + + 3 + (DE-3)240151402 + DE-3 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ULBH + + + 4 + DE-4 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMA + EZB + http://ezb.ur.de/ReadMe?bibid=UBMA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 4 + DE-4 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMA + EZB + http://ezb.ur.de/ReadMe?bibid=UBMA&owner=UBMA&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 387 + 1997 + - + 387 + 1997 + - + <387.1997 -> + + + 7 + DE-7 + NIE + b + EZ 2002-4 + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 7 + DE-7 + NIE + b + 385 + 1997 + - + <lizenziert: 385.1997,6611 -> + + + 8 + (DE-8)240151402 + DE-8 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBK + + + 9 + (DE-9)240151402 + DE-9 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBGRW + + + 11/10 + DE-11-10 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHUB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 11/10 + DE-11-10 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHUB + EZB + https://www.nature.com/nature/volumes + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 11/10 + DE-11-10 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHUB + EZB + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 12 + DE-12 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BSB + EZB + http://ezb.ur.de/ReadMe?bibid=BSB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://emedia1.bsb-muenchen.de/ezb/start?ezbid=328&title=Nature&publisher=Springer+Nature&zdbid=1413423&eissn=1476-4687&subject=W%3BU%3BV%3BTA-TD%3BWW-YZ&l=1%3B0%3B1869%3B462%3B7276%3B2009%3B%3Bnatli_nature&url=http%3A%2F%2Fwww.nature.com%2Fnature&hash=dcf8315baca5cd32978de852e5d093b0 + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 12 + DE-12 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BSB + EZB + http://ezb.ur.de/ReadMe?bibid=BSB&owner=BSB&anchor=nature&lang=de&lang=de#nature + Read me + http://emedia1.bsb-muenchen.de/ezb/start?ezbid=328&title=Nature&publisher=Springer+Nature&zdbid=1413423&eissn=1476-4687&subject=W%3BU%3BV%3BTA-TD%3BWW-YZ&l=0%3B0%3B2014%3B0%3B0%3B%3B%3Bnature&url=http%3A%2F%2Fwww.nature.com%2Fnature%2Findex.html&hash=28a257d2d21b42c4d16326a2e9ddbc33 + Volltext + 2014 + - + 2014 + - + <2014 -> + + + 14 + DE-14 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SLUB + EZB + http://ezb.ur.de/ReadMe?bibid=SLUB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 14 + DE-14 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SLUB + EZB + http://ezb.ur.de/ReadMe?bibid=SLUB&owner=SLUB&anchor=slub_nature&lang=de&lang=de#slub_nature + Read me + https://www.nature.com/ + Volltext + 463 + 2010 + - + 463 + 2010 + - + <463.2010 -> + + + 14 + DE-14 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SLUB + EZB + http://ezb.ur.de/ReadMe?bibid=SLUB&owner=EBSCO&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 15 + DE-15 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=UBL&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + 15 + DE-15 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 15/292 + DE-15-292 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=UBL&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + 15/292 + DE-15-292 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 15 + DE-15 + SAX + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 15/292 + DE-15-292 + SAX + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBL + EZB + http://ezb.ur.de/ReadMe?bibid=UBL&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 16 + DE-16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHE + EZB + http://ezb.ur.de/ReadMe?bibid=UBHE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 16 + DE-16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHE + EZB + http://ezb.ur.de/ReadMe?bibid=UBHE&owner=UBHE&anchor=HD_Nature&lang=de&lang=de#HD_Nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 16 + DE-16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHE + EZB + http://ezb.ur.de/ReadMe?bibid=UBHE&owner=BWKEB&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://www.redi-bw.de/db/ebsco.php?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Ds 114 + DE-Ds114 + HES + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHDA + EZB + http://ezb.ur.de/ReadMe?bibid=FHDA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 18 + DE-18 + HAM + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 18 + DE-18 + HAM + b + 1 + 1869 + - + <lizenziert: 1.1869,1 -> + + + M 347 + DE-M347 + BAY + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHM + EZB + http://ezb.ur.de/ReadMe?bibid=FHM&owner=FHM&anchor=nature&lang=de&lang=de#nature + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + M 347 + DE-M347 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHM + EZB + http://ezb.ur.de/ReadMe?bibid=FHM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 210 + DE-210 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DM + EZB + http://ezb.ur.de/ReadMe?bibid=DM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 19 + DE-19 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBM + EZB + http://ezb.ur.de/ReadMe?bibid=UBM&owner=UBM&anchor=NPG&lang=de&lang=de#NPG + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 19 + DE-19 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBM + EZB + http://ezb.ur.de/ReadMe?bibid=UBM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + M 347 + DE-M347 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHM + EZB + http://ezb.ur.de/ReadMe?bibid=FHM&owner=EBSCO&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://search.ebscohost.com/direct.asp?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 19 + DE-19 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBM + EZB + http://ezb.ur.de/ReadMe?bibid=UBM&owner=EBSCO&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://search.ebscohost.com/direct.asp?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 20 + DE-20 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBW + EZB + http://ezb.ur.de/ReadMe?bibid=UBW&owner=UBW&anchor=fl_nature&lang=de&lang=de#fl_nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 20 + DE-20 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBW + EZB + http://ezb.ur.de/ReadMe?bibid=UBW&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 862 + DE-862 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBWS + EZB + http://ezb.ur.de/ReadMe?bibid=FHBWS&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 863 + DE-863 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBWS + EZB + http://ezb.ur.de/ReadMe?bibid=FHBWS&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 21 + DE-21 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTUE + EZB + http://ezb.ur.de/ReadMe?bibid=UBTUE&owner=UBTUE&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 21 + DE-21 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTUE + EZB + http://ezb.ur.de/ReadMe?bibid=UBTUE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 21 + DE-21 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTUE + EZB + http://ezb.ur.de/ReadMe?bibid=UBTUE&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 24 + DE-24 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://han.wlb-stuttgart.de/ezb/start?ezbid=328&title=Nature&publisher=Springer+Nature&zdbid=1413423&eissn=1476-4687&subject=W%3BU%3BV%3BTA-TD%3BWW-YZ&l=1%3B0%3B1869%3B462%3B7276%3B2009%3B%3Bnatli_nature&url=http%3A%2F%2Fwww.nature.com%2Fnature&hash=dcf8315baca5cd32978de852e5d093b0 + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 24 + DE-24 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=WLB&anchor=nature_lanli&lang=de&lang=de#nature_lanli + Read me + http://han.wlb-stuttgart.de/ezb/start?ezbid=328&title=Nature&publisher=Springer+Nature&zdbid=1413423&eissn=1476-4687&subject=W%3BU%3BV%3BTA-TD%3BWW-YZ&l=385%3B6611%3B1997%3B0%3B0%3B%3B%3Bnature_lanli&url=https%3A%2F%2Fwww.nature.com%2F&hash=5529a8f1a87353a47fe2e567a38cc6c0 + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 24 + DE-24 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + http://han.wlb-stuttgart.de/ezb/start?ezbid=31996&title=Nature+%28via+EBSCO+Host%29&publisher=via+EBSCO+Host&zdbid=1413423&eissn=1476-4687&subject=WW-YZ%3BW%3BTA-TD%3BU&l=0%3B0%3B1997%3B0%3B0%3B2015%3B%3Bebsco_aph&url=https%3A%2F%2Fwww.redi-bw.de%2Fdb%2Febsco.php%3Fdb%3Daph%26jid%3DNAE%26scope%3Dsite&hash=285dc8d22a385b7b7a1d0515979d3dc2 + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 24 + DE-24 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WLB + EZB + http://ezb.ur.de/ReadMe?bibid=WLB&owner=CORON&anchor=corona_redi_ebsco_asn&lang=de&lang=de#corona_redi_ebsco_asn + Read me + http://han.wlb-stuttgart.de/ezb/start?ezbid=31996&title=Nature+%28via+EBSCO+Host%29&publisher=via+EBSCO+Host&zdbid=1413423&eissn=1476-4687&subject=U%3BTA-TD%3BW%3BWW-YZ&l=0%3B0%3B1997%3B0%3B0%3B2015%3B%3Bcorona_redi_ebsco_asn&url=https%3A%2F%2Fwww.redi-bw.de%2Fdb%2Febsco.php%3Fdb%3Dasn%26jid%3DNAE%26scope%3Dsite&hash=1a7b879985f1eb334ec6a20e4783a3a5 + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Ofb 1 + DE-Ofb1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBOG + EZB + http://ezb.ur.de/ReadMe?bibid=FHBOG&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Ofb 1 + DE-Ofb1 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBOG + EZB + http://ezb.ur.de/ReadMe?bibid=FHBOG&owner=FHBOG&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + Fn 1 + DE-Fn1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFU + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 25 + DE-25 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBFRE + EZB + http://ezb.ur.de/ReadMe?bibid=UBFRE&owner=UBFRE&anchor=frub_nature&lang=de&lang=de#frub_nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 25 + DE-25 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBFRE + EZB + http://ezb.ur.de/ReadMe?bibid=UBFRE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 129 + DE-Frei129 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHBFR + EZB + http://ezb.ur.de/ReadMe?bibid=PHBFR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 68 + DE-Frei68 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BWL + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 129 + DE-Frei129 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHBFR + EZB + http://ezb.ur.de/ReadMe?bibid=PHBFR&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 25 + DE-25 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBFRE + EZB + http://ezb.ur.de/ReadMe?bibid=UBFRE&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Fn 1 + DE-Fn1 + BAW + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFU + EZB + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + 26 + DE-26 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBGIE + EZB + http://ezb.ur.de/ReadMe?bibid=UBGIE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 26 + DE-26 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBGIE + EZB + http://ezb.ur.de/ReadMe?bibid=UBGIE&owner=UBGIE&anchor=SprNat&lang=de&lang=de#SprNat + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 27 + (DE-27)240151402 + DE-27 + THU + d + http://rzblx1.uni-regensburg.de/ezeit/detail.phtml?bibid=THULB&colors=7&lang=de&jour_id=328 + + + 29 + DE-29 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBEN + EZB + http://ezb.ur.de/ReadMe?bibid=UBEN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 29 + DE-29 + BAY + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBEN + EZB + http://ezb.ur.de/ReadMe?bibid=UBEN&owner=UBEN&anchor=NPG&lang=de&lang=de#NPG + Read me + http://www.nature.com/nature/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 92 + DE-92 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHN + EZB + http://ezb.ur.de/ReadMe?bibid=FHN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1102 + DE-1102 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBAN + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 92 + DE-92 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHN + EZB + http://ezb.ur.de/ReadMe?bibid=FHN&owner=EBSCO&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 29 + DE-29 + BAY + b + n + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBEN + EZB + http://ezb.ur.de/ReadMe?bibid=UBEN&owner=EBSCO&anchor=ebsco_pbh&lang=de&lang=de#ebsco_pbh + Read me + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 946 + DE-946 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHF + EZB + http://ezb.ur.de/ReadMe?bibid=FHF&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 31 + DE-31 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BLB + EZB + http://ezb.ur.de/ReadMe?bibid=BLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 31 + DE-31 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BLB + EZB + http://ezb.ur.de/ReadMe?bibid=BLB&owner=BLB&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 31 + DE-31 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BLB + EZB + http://ezb.ur.de/ReadMe?bibid=BLB&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 33 + DE-33 + HAM + b + DB 9 + <Die Landesbibliothek MV hat für Sie die aktuellen 5 Jahrgänge lizensiert. Die E-Zeitschrift ist nur in den Räumen der Bibliothek zugänglich.> + + + 43 + DE-43 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HLB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 66 + DE-66 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFD + EZB + http://ezb.ur.de/ReadMe?bibid=FHFD&owner=FHFD&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + +005Y + <Die letzten 5 Jg. sind zugänglich> + + + 66 + DE-66 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFD + EZB + http://ezb.ur.de/ReadMe?bibid=FHFD&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 66 + DE-66 + HES + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHFD + EZB + http://ezb.ur.de/ReadMe?bibid=FHFD&owner=EBSCO&anchor=ebsco_pbh&lang=de&lang=de#ebsco_pbh + Read me + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 83 + DE-83 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBB + EZB + http://ezb.ur.de/ReadMe?bibid=TUBB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 83 + DE-83 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBB + EZB + http://ezb.ur.de/ReadMe?bibid=TUBB&owner=TUBB&anchor=npg_lokal&lang=de&lang=de#npg_lokal + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 84 + (DE-84)240151402 + DE-84 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBS + <Campusweiter Volltext-Zugriff> + + + 89 + (DE-89)240151402 + DE-89 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBTIB + <2003 -> + + + 90 + DE-90 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KIT + EZB + http://ezb.ur.de/ReadMe?bibid=KIT&owner=KIT&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 90 + DE-90 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KIT + EZB + http://ezb.ur.de/ReadMe?bibid=KIT&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 90/4 + DE-90-4 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FBHKA + EZB + http://ezb.ur.de/ReadMe?bibid=FBHKA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 90/4 + DE-90-4 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FBHKA + EZB + http://ezb.ur.de/ReadMe?bibid=FBHKA&owner=FBHKA&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 469 + 2011 + - + 469 + 2011 + - + <469.2011 -> + + + 90/8 + DE-90-8 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DHBW + EZB + http://ezb.ur.de/ReadMe?bibid=DHBW&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 90/4 + DE-90-4 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FBHKA + EZB + http://ezb.ur.de/ReadMe?bibid=FBHKA&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 90 + DE-90 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KIT + EZB + http://ezb.ur.de/ReadMe?bibid=KIT&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 1028 + DE-1028 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHWEI + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 91 + DE-91 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUM + EZB + http://ezb.ur.de/ReadMe?bibid=TUM&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 91 + DE-91 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUM + EZB + http://ezb.ur.de/ReadMe?bibid=TUM&owner=TUM&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 1028 + DE-1028 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHWEI + EZB + https://search.ebscohost.com/direct.asp?db=fsr&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 91 + DE-91 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUM + EZB + http://ezb.ur.de/ReadMe?bibid=TUM&owner=AONE&anchor=AcademicOne&lang=de&lang=de#AcademicOne + Read me + http://link.galegroup.com/apps/pub/0359/AONE?sid=kbart + Volltext + 2000 + - + 2000 + - + -001Y + <2000 -> + <Der letzte Jg. ist nicht zugänglich> + + + 93 + DE-93 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBS + EZB + http://ezb.ur.de/ReadMe?bibid=UBS&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 93 + DE-93 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBS + EZB + http://ezb.ur.de/ReadMe?bibid=UBS&owner=UBS&anchor=nature_campus&lang=de&lang=de#nature_campus + Read me + http://www.nature.com/nature/archive + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 93 + DE-93 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBS + EZB + http://ezb.ur.de/ReadMe?bibid=UBS&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 100 + DE-100 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHOH + EZB + http://ezb.ur.de/ReadMe?bibid=UBHOH&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 100 + DE-100 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHOH + EZB + http://ezb.ur.de/ReadMe?bibid=UBHOH&owner=UBHOH&anchor=hoh_npg&lang=de&lang=de#hoh_npg + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 100 + DE-100 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHOH + EZB + http://ezb.ur.de/ReadMe?bibid=UBHOH&owner=BWKEB&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://www.redi-bw.de/db/ebsco.php?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 104 + DE-104 + NIE + d + Online-Abonnement + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBCL + <2003 -> + + + 105 + DE-105 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBFR + EZB + http://ezb.ur.de/ReadMe?bibid=TUBFR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 105 + DE-105 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBFR + EZB + http://ezb.ur.de/ReadMe?bibid=TUBFR&owner=TUBFR&anchor=Nature&lang=de&lang=de#Nature + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 451 + 2008 + - + 451 + 2008 + - + <451.2008 -> + + + 105 + DE-105 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUBFR + EZB + http://ezb.ur.de/ReadMe?bibid=TUBFR&owner=PROQU&anchor=Materials_Science_and_Engineering_Database&lang=de&lang=de#Materials_Science_and_Engineering_Database + Read me + http://gateway.proquest.com/openurl?url_ver=Z39.88-2004&res_dat=xri:pqm&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&genre=journal&svc_dat=xri:pqil:context=title&rft_dat=xri:pqd:PMID=40569 + Volltext + 1990 + - + 1990 + - + -012M + <1990 -> + <Die letzten 12 Monate sind nicht zugänglich> + + + 109 + DE-109 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ZLB + EZB + http://ezb.ur.de/ReadMe?bibid=ZLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 180 + DE-180 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMAN + EZB + http://ezb.ur.de/ReadMe?bibid=UBMAN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 180 + DE-180 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMAN + EZB + http://ezb.ur.de/ReadMe?bibid=UBMAN&owner=UBMAN&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 953 + DE-953 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHMA + EZB + http://ezb.ur.de/ReadMe?bibid=FHMA&owner=FHMA&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 953 + DE-953 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHMA + EZB + http://ezb.ur.de/ReadMe?bibid=FHMA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Mh 39 + DE-Mh39 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IDS + EZB + http://ezb.ur.de/ReadMe?bibid=IDS&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 180 + DE-180 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMAN + EZB + http://ezb.ur.de/ReadMe?bibid=UBMAN&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 188/e + DE-188-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 188/e + DE-188-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=FUB&anchor=Nature&lang=de&lang=de#Nature + Read me + http://fu-berlin.hosted.exlibrisgroup.com/openurl/FUB/FUB?u.ignore_date_coverage=true&rfr_id=info%3Asid%2FEZB&ctx_ver=Z39.88-2004&rft.issn=0028-0836 + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + B 16 + DE-B16 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MFN + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 16 + DE-B16 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MFN + EZB + http://www.nature.com/nature + Volltext + 2010 + - + 2010 + - + <2010 -> + + + 188/e + DE-188-e + BER + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=AONE&anchor=AcademicOne&lang=de&lang=de#AcademicOne + Read me + http://link.galegroup.com/apps/pub/0359/AONE?sid=kbart + Volltext + 2000 + - + 2000 + - + -001Y + <2000 -> + <Der letzte Jg. ist nicht zugänglich> + + + 188/e + DE-188-e + BER + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FUB + EZB + http://ezb.ur.de/ReadMe?bibid=FUB&owner=EBSCO&anchor=ebsco_asn&lang=de&lang=de#ebsco_asn + Read me + https://search.ebscohost.com/direct.asp?db=asn&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 289 + DE-289 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBU + EZB + http://ezb.ur.de/ReadMe?bibid=UBU&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 289 + DE-289 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBU + EZB + http://ezb.ur.de/ReadMe?bibid=UBU&owner=UBU&anchor=&lang=de&lang=de + Read me + http://www.nature.com/nature/archive/index.html + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 943 + DE-943 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHUL + EZB + http://ezb.ur.de/ReadMe?bibid=FHUL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 943 + DE-943 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHUL + EZB + http://ezb.ur.de/ReadMe?bibid=FHUL&owner=BWKEB&anchor=ebsco_egs&lang=de&lang=de#ebsco_egs + Read me + https://www.redi-bw.de/db/ebsco.php?db=egs&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 291 + DE-291 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SULB + EZB + http://ezb.ur.de/ReadMe?bibid=SULB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 291 + DE-291 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SULB + EZB + http://ezb.ur.de/ReadMe?bibid=SULB&owner=SULB&anchor=nature&lang=de&lang=de#nature + Read me + http://www.nature.com/nature/archive/ + Volltext + 385 + 1997 + - + 385 + 1997 + - + <385.1997 -> + + + 291/415 + DE-291-415 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=INM + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 291/415 + DE-291-415 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=INM + EZB + https://www.nature.com/ + Volltext + +004Y + <Die letzten 4 Jg. sind zugänglich> + + + Sa 16 + DE-Sa16 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWS + EZB + http://ezb.ur.de/ReadMe?bibid=HTWS&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Sa 18 + DE-Sa18 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPII + EZB + http://ezb.ur.de/ReadMe?bibid=MPII&owner=MPG&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + Sa 18 + DE-Sa18 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPII + EZB + http://ezb.ur.de/ReadMe?bibid=MPII&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Sa 18 + DE-Sa18 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPII + EZB + http://ezb.ur.de/ReadMe?bibid=MPII&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 291 + DE-291 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SULB + EZB + http://ezb.ur.de/ReadMe?bibid=SULB&owner=EBSCO&anchor=ebsco_a9h&lang=de&lang=de#ebsco_a9h + Read me + https://search.ebscohost.com/direct.asp?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 352 + DE-352 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBKO + EZB + http://ezb.ur.de/ReadMe?bibid=UBKO&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 352 + DE-352 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBKO + EZB + http://ezb.ur.de/ReadMe?bibid=UBKO&owner=UBKO&anchor=nature_ubko&lang=de&lang=de#nature_ubko + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 352 + DE-352 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBKO + EZB + http://ezb.ur.de/ReadMe?bibid=UBKO&owner=BWKEB&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 1050 + DE-1050 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHDEG + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 355 + DE-355 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBR + EZB + http://ezb.ur.de/ReadMe?bibid=UBR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 355 + DE-355 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBR + EZB + http://ezb.ur.de/ReadMe?bibid=UBR&owner=UBR&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 385 + 1997 + - + 385 + 6611 + 1997 + - + <385.1997,6611 -> + + + 898 + DE-898 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBR + EZB + http://ezb.ur.de/ReadMe?bibid=FHBR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1046 + DE-1046 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBAW + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 155 + DE-155 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=STABI + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 384 + DE-384 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBA + EZB + http://ezb.ur.de/ReadMe?bibid=UBA&owner=UBA&anchor=sonstige&lang=de&lang=de#sonstige + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 859 + DE-859 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBKA + EZB + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Aug 4 + DE-Aug4 + BAY + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 37 + DE-37 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SUSBA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 859 + DE-859 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBKA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 473 + DE-473 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBB + EZB + http://ezb.ur.de/ReadMe?bibid=UBB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 70 + DE-70 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=LBCO + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 517 + (DE-517)240151402 + DE-517 + BER + Z 11809 + 1960 + http://www.nature.com/ + 1997 + - + <1997 -> + + + 517 + (DE-517)240151402 + DE-517 + BER + b + 1960 + http://rzblx1.uni-regensburg.de/ezeit/detail.phtml?bibid=UBPO&colors=7&lang=de&jour_id=328 + <1869 -> + + + 517 + (DE-517)240151402 + DE-517 + BER + b + 1960 + http://rzblx1.uni-regensburg.de/ezeit/detail.phtml?bibid=UBPO&colors=7&lang=de&jour_id=31996 + <1996 - nicht die aktuellen 12 Monate> + + + 521 + DE-521 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=EUV + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 703 + DE-703 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBBAY + EZB + http://ezb.ur.de/ReadMe?bibid=UBBAY&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 703 + DE-703 + BAY + b + x + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBBAY + EZB + http://ezb.ur.de/ReadMe?bibid=UBBAY&owner=UBBAY&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + +005Y + <Die letzten 5 Jg. sind zugänglich> + + + 705 + DE-705 + HAM + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&amp;bibid=UBWH + <ACHTUNG: Eingeschränkter Online-Zugriff> + + + 739 + DE-739 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBPA + EZB + http://ezb.ur.de/ReadMe?bibid=UBPA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 860 + DE-860 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBLA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 573 + DE-573 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBIN + EZB + http://ezb.ur.de/ReadMe?bibid=FHBIN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 573 + DE-573 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBIN + EZB + http://ezb.ur.de/ReadMe?bibid=FHBIN&owner=EBSCO&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://search.ebscohost.com/direct.asp?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 824 + DE-824 + BAY + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBE + EZB + http://ezb.ur.de/ReadMe?bibid=UBE&owner=EBSCO&anchor=ebsco_pbh&lang=de&lang=de#ebsco_pbh + Read me + https://search.ebscohost.com/direct.asp?db=pbh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 150 + DE-150 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SBND + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 830 + DE-830 + HAM + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 830 + DE-830 + HAM + b + <lizenziert: [die aktuellen 5 Jahre zugänglich]> + + + 929 + DE-929 + NRW + Online-Zugang + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + 1 + 1869/70 + - + <1.1869/70 -> + <Zugriff in allen Räumlichkeiten der LBZ-Bibliotheken> + + + B 1536 + DE-B1536 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ZUSE + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 2018 + DE-B2018 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KB + EZB + http://ezb.ur.de/ReadMe?bibid=KB&owner=KB&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + D 140 + DE-D140 + SAX + http://www.nature.com/nature/ + http://search.ebscohost.com/ + 1940 + - + <1940 -> + + + L 97 + DE-L97 + SAX + http://www.nature.com/nature + 2009 + - + <2009 -> + <Campuslizenz nur für die UFZ-Angehörigen> + + + D 115 + DE-D115 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=LFADD + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Hil 2 + (DE-Hil2)240151402 + DE-Hil2 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBHI + + + Ma 9 + (DE-Ma9)240151402 + DE-Ma9 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBMD + + + 551 + (DE-551)240151402 + DE-551 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBMST + + + 552 + (DE-552)240151402 + DE-552 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBMST + + + Lün 4 + (DE-Luen4)240151402 + DE-Luen4 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBLUE + + + Lün 4 + DE-Luen4 + NIE + + + Ch 1 + DE-Ch1 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCHE + EZB + http://ezb.ur.de/ReadMe?bibid=TUCHE&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Ch 1 + DE-Ch1 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCHE + EZB + http://ezb.ur.de/ReadMe?bibid=TUCHE&owner=TUCHE&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + D 161 + DE-D161 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BADD + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + D 275 + DE-D275 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BADD + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Gla 1 + DE-Gla1 + SAX + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAG + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Bn 3 + DE-Bn3 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAKS + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Rs 1 + DE-Rs1 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BARIE + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + L 229 + DE-L229 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SSAL + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Ch 1 + DE-Ch1 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCHE + EZB + http://ezb.ur.de/ReadMe?bibid=TUCHE&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Gla 1 + DE-Gla1 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAG + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Ilm 1 + (DE-Ilm1)240151402 + DE-Ilm1 + THU + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBIL + <Campuslizenz TU Ilmenau> + + + B 1532 + (DE-B1532)240151402 + DE-B1532 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPIBF + + + B 1556 + DE-B1556 + BER + d + Online-Publikation + http://rzblx10.uni-regensburg.de/dbinfo/detail.php?bib_id=ehber&colors=&ocolors=&lett=fs&tid=0&titel_id=8242 + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + <lizenziert: 1.1869 - 462.2009> + <Elektronischer Volltext, Link anklicken> + + + Gr 61 + DE-Gr61 + HAM + d + Online-Ressource + FLI - Bundesforschungsinstitut für Tiergesundheit + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FLI + <1.1869/70 - 552.2017, Heft 7685> + <Der Volltextzugriff ist an allen FLI-Standorten möglich. Bitte Link nutzen> + + + Bst 1 + (DE-Bst1)240151402 + DE-Bst1 + HAM + b + online + 1 + 1869/70 + - + <1.1869/70 -> + + + Ki 95 + (DE-Ki95)240151402 + DE-Ki95 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHKI + <Zugang nur aus dem Rechnernetz der Fachhochschule Kiel> + + + Ki 130 + (DE-Ki130)240151402 + DE-Ki130 + HAM + b + + + Va 1 + (DE-Va1)240151402 + DE-Va1 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBVE + + + 916 + (DE-916)240151402 + DE-916 + NIE + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHWF + + + Gö 116 + (DE-Goe116)240151402 + DE-Goe116 + NIE + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPIBP + + + Wa 1 + (DE-Wa1)240151402 + DE-Wa1 + HAM + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IOW + <Link gilt nur für Nutzer im Institut für Ostseeforschung! Zugriffsmöglichkeiten prüfen!> + + + 542 + (DE-542)240151402 + DE-542 + SAA + d + E-Journal + Service-PC + http://www.nature.com/siteindex/index.html + <Zugriff "Nature" rückwirkend 4 Jahre!> + <"Nature Archives" bietet umfangreiches Publikations-Angebot aus den Bereichen Nature Biotechnologie, Nature Genetics, Nature Medicine und Nature Structural and Molecular Biology! ; Direktzugang über diesen Link!> + + + Kt 1 + (DE-Kt1)240151402 + DE-Kt1 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSB + + + Ma 54 + (DE-Ma54)240151402 + DE-Ma54 + SAA + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MPIDS + + + Gat 1 + DE-Gat1 + SAA + b + IPK-Bibliothek + 450 + 2007 + - + <450.2007 - > + + + Ha 125 + (DE-Ha125)240151402 + DE-Ha125 + SAA + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KDHAL + + + 546 + (DE-546)240151402 + DE-546 + THU + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHEF + + + Kn 41 + DE-Kn41 + NRW + b + n + p + 1 + 1869 + 462 + 2011 + <1.1869 - 480.2011=Nr.7378> + <Zugang nur im Hochschulnetz der Deutschen Sporthochschule; 1.1869 - 462.2009 als DFG-Nationallizenz, organisiert durch die Technische Informationsbibliothek (TIB), Hannover> + + + 752 + DE-752 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHGD + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Lg 1 + DE-Lg1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHLB + EZB + http://ezb.ur.de/ReadMe?bibid=PHLB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 753 + DE-753 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 753 + DE-753 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com + Volltext + 427 + 2004 + - + 427 + 6969 + 2004 + - + <427.2004,6969 -> + + + 972 + DE-972 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 972 + DE-972 + BAW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + http://www.nature.com + Volltext + 427 + 2004 + - + 427 + 6969 + 2004 + - + <427.2004,6969 -> + + + 753 + DE-753 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 972 + DE-972 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBES + EZB + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 752 + DE-752 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHGD + EZB + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Lg 1 + DE-Lg1 + BAW + b + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=PHLB + EZB + http://ezb.ur.de/ReadMe?bibid=PHLB&owner=BWKEB&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 634 + DE-634 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TUCB + EZB + http://ezb.ur.de/ReadMe?bibid=TUCB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 941 + DE-941 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAMOS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1033 + DE-1033 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFTS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 944 + DE-944 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHAA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Stg 265 + DE-Stg265 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=SMNS + EZB + http://www.nature.com/nature/current_issue.html + Volltext + 1 + 1869 + 462 + 2009 + ; + 517 + 2015 + - + <1.1869 - 462.2009,7276; 517.2015 -> + + + Ess 5 + DE-Ess5 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=LDRS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Rt 2 + DE-Rt2 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHRT + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 950 + DE-950 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFWU + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1090 + DE-1090 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFWU + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 991 + DE-991 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSASI + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Kon 4 + DE-Kon4 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHKN + EZB + http://ezb.ur.de/ReadMe?bibid=FHKN&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 747 + DE-747 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DHSBW%26owner%3DHSBW%26anchor%3D%26lang%3Den%3Flang%3Den + Read me + https://www.nature.com/ + Volltext + 451 + 2008 + - + 451 + 7174 + 2008 + - + <451.2008,7174 -> + + + 747 + DE-747 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DHSBW%26owner%3DNALIE%26anchor%3Dnatli_nature%26lang%3Den%3Flang%3Den%23natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 747 + DE-747 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBW + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 949 + DE-949 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBC + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 991 + DE-991 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSASI + EZB + https://www.redi-bw.de/db/ebsco.php?db=egs&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 944 + DE-944 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHAA + EZB + https://www.redi-bw.de/db/ebsco.php?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 578/e + DE-578-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MBCB + EZB + http://ezb.ur.de/ReadMe?bibid=MBCB&owner=MBCB&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + 578/e + DE-578-e + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MBCB + EZB + http://ezb.ur.de/ReadMe?bibid=MBCB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 578/e + DE-578-e + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MBCB + EZB + http://ezb.ur.de/ReadMe?bibid=MBCB&owner=EBSCO&anchor=ebsco_asn&lang=de&lang=de#ebsco_asn + Read me + https://search.ebscohost.com/direct.asp?db=asn&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 354 + DE-354 + NIE + b + 1 + 1869 + - + <lizenziert: 1.1869,1 -> + + + 354 + DE-354 + NIE + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 520 + DE-520 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWDD + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + B 1543 + DE-B1543 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WZB + EZB + http://ezb.ur.de/ReadMe?bibid=WZB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 520 + DE-520 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWDD + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Zwi 2 + DE-Zwi2 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WHZ + EZB + http://ezb.ur.de/ReadMe?bibid=WHZ&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + D 120 + DE-D120 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FZR + EZB + http://ezb.ur.de/ReadMe?bibid=FZR&owner=FZR&anchor=&lang=de&lang=de + Read me + https://www.nature.com/ + Volltext + 1949 + - + 1949 + - + <1949 -> + + + D 120 + DE-D120 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FZR + EZB + http://ezb.ur.de/ReadMe?bibid=FZR&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 768 + DE-B768 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 768 + DE-B768 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHB + EZB + http://www.nature.com/nature/index.html + Volltext + 1 + 1869 + - + 1 + 1 + 1869 + - + <1.1869 -> + + + Zwi 2 + DE-Zwi2 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=WHZ + EZB + http://ezb.ur.de/ReadMe?bibid=WHZ&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + AT-UBMUG + AT-UBMUG + WEU + b + <Online> + + + M 124 + DE-M124 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BFHB + EZB + http://ezb.ur.de/ReadMe?bibid=BFHB&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 706 + DE-706 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBWM + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DUBWM%26owner%3DNALIE%26anchor%3Dnatli_nature%26lang%3Den%3Flang%3Den%23natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 706 + DE-706 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=UBWM + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DUBWM%26owner%3DUBWM%26anchor%3Dnature%26lang%3Den%3Flang%3Den%23nature + Read me + https://www.nature.com/ + Volltext + 541 + 2017 + - + 541 + 2017 + - + <541.2017 -> + + + ZDB-1-NTA + ZDB-1-NTA + ANL + https://www.nature.com/nature/archive/index.html + Nationallizenz + 1 + 1869 + 462 + 2009 + <1.1869 - 462.2009> + <Der deutschlandweite Zugriff auf die Datenbank wird durch die Förderung der Deutschen Forschungsgemeinschaft (DFG) ermöglicht und durch die Niedersächsische Staats- und Universitätsbibliothek Göttingen organisiert> + + + M 382 + DE-M382 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IPMPG + EZB + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + M 382 + DE-M382 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IPMPG + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + M 382 + DE-M382 + BAY + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=IPMPG + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + L 189 + DE-L189 + SAX + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWK + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 522 + DE-522 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHBRB + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + L 189 + DE-L189 + SAX + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HTWK + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Mar 1 + DE-Mar1 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Y 2 + DE-Y2 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + Y 2 + DE-Y2 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Y 2 + DE-Y2 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Y 2 + DE-Y2 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HERTZ + EZB + http://gateway.proquest.com/openurl?url_ver=Z39.88-2004&res_dat=xri:pqm&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&genre=journal&svc_dat=xri:pqil:context=title&rft_dat=xri:pqd:PMID=40569 + Volltext + 1990 + - + 1990 + - + -012M + <1990 -> + <Die letzten 12 Monate sind nicht zugänglich> + + + Y 3 + DE-Y3 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KHIFI + EZB + http://ezb.ur.de/ReadMe?bibid=KHIFI&owner=MPG&anchor=nature&lang=de&lang=de#nature + Read me + https://www.nature.com/ + Volltext + 165 + 1950 + - + 165 + 4184 + 1950 + - + <165.1950,4184 -> + + + Y 3 + DE-Y3 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KHIFI + EZB + http://ezb.ur.de/ReadMe?bibid=KHIFI&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Y 3 + DE-Y3 + WEU + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=KHIFI + EZB + http://ezb.ur.de/ReadMe?bibid=KHIFI&owner=EBSCO&anchor=ebsco_aph&lang=de&lang=de#ebsco_aph + Read me + https://search.ebscohost.com/direct.asp?db=aph&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + Y 7 + DE-Y7 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DFK + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 201 + DE-201 + BAY + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DPMA + EZB + http://ezb.ur.de/ReadMe?bibid=DPMA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 2138 + (DE-B2138)240151402 + DE-B2138 + BER + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=ZMO + + + 960/1 + DE-960-1 + NIE + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 960/3 + DE-960-3 + NIE + b + 1 + 1869 + 462 + 2009 + <lizenziert: 1.1869 - 462.2009,7276> + + + 526 + DE-526 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DTFHW%26owner%3DNALIE%26anchor%3Dnatli_nature%26lang%3Den%3Flang%3Den%23natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 526 + DE-526 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=TFHW + EZB + http%3A%2F%2Fezb.ur.de%2FReadMe%3Fbibid%3DTFHW%26owner%3DTFHW%26anchor%3Dnature%26lang%3Den%3Flang%3Den%23nature + Read me + http://www.nature.com/nature/index.html + Volltext + 463 + 2010 + - + 463 + 7277 + 2010 + - + <463.2010,7277 -> + + + Kn 182 + DE-Kn182 + NRW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLLR + EZB + https://www.nature.com/ + Volltext + 1 + 1869 + - + 1 + 1869 + - + <1.1869 -> + + + Kn 182 + DE-Kn182 + NRW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLLR + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Kn 182 + DE-Kn182 + NRW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DLLR + EZB + https://www.nature.com/ + Volltext + 1949 + - + 1949 + - + <1949 -> + + + Bv 2 + (DE-Bv2)240151402 + DE-Bv2 + HAM + b + Z 2068E + BV:Z + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423 + <Print Ausgabe vorhanden unter Z 2068 . Bestand siehe Bibliothekskatalog!> + + + 2491 + DE-2491 + WEU + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=DHIR + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 751 + DE-751 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBKA + EZB + http://ezb.ur.de/ReadMe?bibid=HSBKA&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 751 + DE-751 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSBKA + EZB + http://ezb.ur.de/ReadMe?bibid=HSBKA&owner=BWKEB&anchor=ebsco_afh&lang=de&lang=de#ebsco_afh + Read me + https://www.redi-bw.de/db/ebsco.php?db=afh&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 1866 + DE-1866 + NRW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HFG + EZB + http://ezb.ur.de/ReadMe?bibid=HFG&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1871 + DE-1871 + NRW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSHL + EZB + http://ezb.ur.de/ReadMe?bibid=HSHL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 1926 + DE-1926 + NRW + d + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HSHL + EZB + http://ezb.ur.de/ReadMe?bibid=HSHL&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 106 + DE-B106 + BER + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=RKI + EZB + http://ezb.ur.de/ReadMe?bibid=RKI&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + B 106 + DE-B106 + BER + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=RKI + EZB + http://ezb.ur.de/ReadMe?bibid=RKI&owner=RKI&anchor=Nature&lang=de&lang=de#Nature + Read me + https://www.nature.com/ + Volltext + 463 + 2010 + - + 463 + 7277 + 2010 + - + <463.2010,7277 -> + + + Mh 35 + DE-Mh35 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=BAMA + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 2083 + DE-2083 + HES + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=HBG + EZB + http://ezb.ur.de/ReadMe?bibid=HBG&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + Frei 3c + DE-Frei3c + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MFO + EZB + http://ezb.ur.de/ReadMe?bibid=MFO&owner=NALIE&anchor=natli_nature&lang=de&lang=de#natli_nature + Read me + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 2809 + DE-2809 + NRW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=MWS + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 840 + DE-840 + BAW + b + n + p + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHHN + EZB + http://www.nature.com/nature + Volltext + 1 + 1869 + 462 + 2009 + 1 + 1869 + 462 + 7276 + 2009 + <1.1869 - 462.2009,7276> + + + 840 + DE-840 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHHN + EZB + https://www.redi-bw.de/db/ebsco.php?db=a9h&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + 840 + DE-840 + BAW + http://www.bibliothek.uni-regensburg.de/ezeit/?1413423&bibid=FHHN + EZB + https://www.redi-bw.de/db/ebsco.php?db=egs&jid=NAE&scope=site + Volltext + 1997 + 2015 + 1997 + 2015 + <1997 - 2015> + + + ro + ra + + + \ No newline at end of file